diff --git a/.gitignore b/.gitignore index 79998f1..e10b2c8 100644 --- a/.gitignore +++ b/.gitignore @@ -38,7 +38,7 @@ ocr_demo _build/ -output/ +results/ **/temp.py # coverage file diff --git a/README.md b/README.md index 5542cda..c77fd68 100644 --- a/README.md +++ b/README.md @@ -292,6 +292,105 @@ python scripts/statics.py data/sample_dataset.jsonl --output data/analyzed_datas ✅ 成功写入 1,827 条数据 ``` +### 语言分类工具 + +WebMainBench 提供了语言分类工具 `scripts/language_classify.py`,用于为数据集中的文本内容自动添加符合 ISO 639-1 标准的语言标签。 + +#### 主要特性 + +- **多种检测方式**:支持基于规则的快速检测和基于LLM的高精度检测 +- **ISO 639-1 标准**:返回标准的两字母语言代码(如 en, zh, es) +- **广泛语言支持**:支持80+种主要语言的检测 +- **批量处理**:高效处理大规模数据集 +- **智能回退**:多字段检测,自动处理缺失数据 + +#### 使用方法 + +```bash +# 基于规则的快速检测(推荐用于大规模数据) +python scripts/language_classify.py data/input.jsonl --output data/output.jsonl + +# 使用LLM进行高精度检测 +python scripts/language_classify.py data/input.jsonl --output data/output.jsonl \ + --use-llm --api-key YOUR_OPENAI_API_KEY + +# 自定义批处理大小 +python scripts/language_classify.py data/input.jsonl --output data/output.jsonl \ + --batch-size 50 +``` + +#### Prompt设计建议 + +如果你使用LLM进行语言检测,工具内置了优化的prompt模板: + +**核心设计原则:** +1. **明确输出格式**:只返回ISO 639-1两字母代码 +2. **处理边界情况**:空文本、多语言文本、符号等 +3. **语言映射规则**:中文统一返回"zh",未支持语言返回最接近的 +4. **文本截断**:只分析前2000字符,提高效率 + +**示例Prompt结构:** +``` +Please identify the primary language of the following text and return ONLY the ISO 639-1 two-letter language code. + +SUPPORTED LANGUAGES: en (English), zh (Chinese), es (Spanish), ... + +RULES: +1. Return ONLY the two-letter code +2. For mixed languages, return the DOMINANT language +3. Empty text defaults to "en" +4. Chinese variants all return "zh" + +TEXT TO ANALYZE: [your text here] + +LANGUAGE CODE: +``` + +#### 输出结果 + +工具会在数据的 `meta.language` 字段中添加语言标签: + +```json +{ + "convert_main_content": "Hello, this is sample content.", + "meta": { + "language": "en" + } +} +``` + +#### 运行示例 + +```bash +# 处理示例 +python scripts/language_classify.py data/sample.jsonl --output data/sample_with_lang.jsonl + +# 输出: +🔄 开始处理语言分类... +📄 输入文件: data/sample.jsonl +📄 输出文件: data/sample_with_lang.jsonl +🧠 检测方法: 基于规则 + 📊 已处理 100 条数据... + 📊 已处理 200 条数据... + +✅ 处理完成! +📊 总计处理: 1,000 条数据 +📊 语言分布: + en (English): 650 (65.0%) + zh (Chinese): 200 (20.0%) + es (Spanish): 80 (8.0%) + fr (French): 40 (4.0%) + de (German): 30 (3.0%) +``` + +#### 支持的语言 + +工具支持80+种主要语言,包括: +- **欧洲语言**:英语(en)、西班牙语(es)、法语(fr)、德语(de)、意大利语(it)等 +- **亚洲语言**:中文(zh)、日语(ja)、韩语(ko)、泰语(th)、越南语(vi)等 +- **其他语言**:阿拉伯语(ar)、俄语(ru)、葡萄牙语(pt)、印地语(hi)等 + +完整列表请运行:`python examples/language_classify_demo.py` ## 项目架构 diff --git a/examples/multi_extractor_compare.py b/examples/multi_extractor_compare.py index 301bc2d..4affe52 100644 --- a/examples/multi_extractor_compare.py +++ b/examples/multi_extractor_compare.py @@ -8,7 +8,7 @@ def all_extractor_comparison(): print("\n=== 多抽取器对比演示 ===\n") # 创建数据集 - dataset_path = Path("/home/lulindong/Pycharm_projects/cc/1827_split_jsonl/1-200.jsonl") + dataset_path = Path("data/sample_dataset.jsonl") dataset = DataLoader.load_jsonl(dataset_path) # 创建webkit抽取器 @@ -27,6 +27,8 @@ def all_extractor_comparison(): # 运行对比 evaluator = Evaluator() extractors = [webkit_extractor, magic_extractor, trafilatura_extractor, resiliparse_extractor] + # extractors = [webkit_extractor] + results = evaluator.compare_extractors( dataset=dataset, diff --git a/results/dataset_with_results.jsonl b/results/dataset_with_results.jsonl index 8028113..af956b3 100644 --- a/results/dataset_with_results.jsonl +++ b/results/dataset_with_results.jsonl @@ -1,4 +1,4 @@ -{"id": "7cdb7231-9337-4104-a562-9b8f285add7d", "html": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNumPy 简介\n\n\n
\n
\nw3school 在线教程\n
\n\n\n
\n\n
\n
\n
\n\n
\n
\n

Python 教程

\n\n

文件处理

\n\n

Python NumPy

\n\n

机器学习

\n\n

Python MySQL

\n\n

Python MongoDB

\n\n

Python 参考手册

\n\n

模块参考手册

\n\n

Python How To

\n\n

Python 实例

\n\n
\n
\n
\n

NumPy 简介

\n\n
\n

创建 NumPy ndarray 对象

\n

NumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray

\n

我们可以使用 array() 函数创建一个 NumPy ndarray 对象。

\n

实例

\n
import numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n
\n

运行实例

\n

type(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。

\n

要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray

\n

实例

\n

使用元组创建 NumPy 数组:

\n
import numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n
\n

运行实例

\n
\n
\n

数组中的维

\n

数组中的维是数组深度(嵌套数组)的一个级别。

\n

嵌套数组:指的是将数组作为元素的数组。

\n
\n
\n

0-D 数组

\n

0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。

\n

实例

\n

用值 61 创建 0-D 数组:

\n
import numpy as np\n\narr = np.array(61)\n\nprint(arr)\n
\n

运行实例

\n
\n
\n

1-D 数组

\n

其元素为 0-D 数组的数组,称为一维或 1-D 数组。

\n

这是最常见和基础的数组。

\n

实例

\n

创建包含值 1、2、3、4、5、6 的 1-D 数组:

\n
import numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n
\n

运行实例

\n
\n
\n

2-D 数组

\n

其元素为 1-D 数组的数组,称为 2-D 数组。

\n

它们通常用于表示矩阵或二阶张量。

\n

NumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat

\n

实例

\n

创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:

\n
import numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n
\n

运行实例

\n
\n
\n

3-D 数组

\n

其元素为 2-D 数组的数组,称为 3-D 数组。

\n

实例

\n

用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:

\n
import numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n
\n

运行实例

\n
\n
\n

检查维数?

\n

NumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。

\n

实例

\n

检查数组有多少维:

\n
import numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n
\n

运行实例

\n
\n
\n

更高维的数组

\n

数组可以拥有任意数量的维。

\n

在创建数组时,可以使用 ndmin 参数定义维数。

\n

实例

\n

创建一个有 5 个维度的数组,并验证它拥有 5 个维度:

\n
import numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n
\n

运行实例

\n

在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。

\n
\n
\n\n\n
\n\n
\n
\n\n
\n\n
\n
\n\n\n
\n\n
\n
\n
\n
\n

\nW3School 简体中文版提供的内容仅用于培训和测试,不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。版权所有,保留一切权利。\n

\n

\n关于 W3School\n帮助 W3School\n使用条款\n隐私条款\n技术支持:赢科\n蒙ICP备06004630号\n

\n
\n
\n\n
", "groundtruth_content": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "groundtruth_content_list": [[{"type": "title", "raw_content": "

NumPy 简介

", "content": {"title_content": "NumPy 简介", "level": "1"}}, {"type": "title", "raw_content": "

创建 NumPy ndarray 对象

", "content": {"title_content": "创建 NumPy ndarray 对象", "level": "2"}}, {"type": "paragraph", "raw_content": "

NumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray

", "content": [{"c": "NumPy 用于处理数组。 NumPy 中的数组对象称为", "t": "text"}, {"c": "ndarray", "t": "code-inline"}, {"c": "。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

我们可以使用 array() 函数创建一个 NumPy ndarray 对象。

", "content": [{"c": "我们可以使用", "t": "text"}, {"c": "array()", "t": "code-inline"}, {"c": "函数创建一个 NumPy", "t": "text"}, {"c": "ndarray", "t": "code-inline"}, {"c": "对象。", "t": "text"}]}, {"type": "title", "raw_content": "

实例

", "content": {"title_content": "实例", "level": "3"}}, {"type": "code", "raw_content": "
import numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n
\n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))", "language": "python", "by": "tag_pre"}}, {"type": "paragraph", "raw_content": "

type(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。

", "content": [{"c": "type(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明", "t": "text"}, {"c": "arr", "t": "code-inline"}, {"c": "是", "t": "text"}, {"c": "numpy.ndarray", "t": "code-inline"}, {"c": "类型。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray

", "content": [{"c": "要创建", "t": "text"}, {"c": "ndarray", "t": "code-inline"}, {"c": ",我们可以将列表、元组或任何类似数组的对象传递给", "t": "text"}, {"c": "array()", "t": "code-inline"}, {"c": "方法,然后它将被转换为", "t": "text"}, {"c": "ndarray", "t": "code-inline"}, {"c": ":", "t": "text"}]}, {"type": "title", "raw_content": "

实例

", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

使用元组创建 NumPy 数组:

", "content": [{"c": "使用元组创建 NumPy 数组:", "t": "text"}]}, {"type": "code", "raw_content": "
import numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n
\n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

数组中的维

", "content": {"title_content": "数组中的维", "level": "2"}}, {"type": "paragraph", "raw_content": "

数组中的维是数组深度(嵌套数组)的一个级别。

", "content": [{"c": "数组中的维是数组深度(嵌套数组)的一个级别。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

嵌套数组:指的是将数组作为元素的数组。

", "content": [{"c": "嵌套数组: 指的是将数组作为元素的数组。", "t": "text"}]}, {"type": "title", "raw_content": "

0-D 数组

", "content": {"title_content": "0-D 数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。

", "content": [{"c": "0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。", "t": "text"}]}, {"type": "title", "raw_content": "

实例

", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

用值 61 创建 0-D 数组:

", "content": [{"c": "用值 61 创建 0-D 数组:", "t": "text"}]}, {"type": "code", "raw_content": "
import numpy as np\n\narr = np.array(61)\n\nprint(arr)\n
\n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array(61)\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

1-D 数组

", "content": {"title_content": "1-D 数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

其元素为 0-D 数组的数组,称为一维或 1-D 数组。

", "content": [{"c": "其元素为 0-D 数组的数组,称为一维或 1-D 数组。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

这是最常见和基础的数组。

", "content": [{"c": "这是最常见和基础的数组。", "t": "text"}]}, {"type": "title", "raw_content": "

实例

", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

创建包含值 1、2、3、4、5、6 的 1-D 数组:

", "content": [{"c": "创建包含值 1、2、3、4、5、6 的 1-D 数组:", "t": "text"}]}, {"type": "code", "raw_content": "
import numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n
\n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

2-D 数组

", "content": {"title_content": "2-D 数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

其元素为 1-D 数组的数组,称为 2-D 数组。

", "content": [{"c": "其元素为 1-D 数组的数组,称为 2-D 数组。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

它们通常用于表示矩阵或二阶张量。

", "content": [{"c": "它们通常用于表示矩阵或二阶张量。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

NumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat

", "content": [{"c": "NumPy 有一个专门用于矩阵运算的完整子模块", "t": "text"}, {"c": "numpy.mat", "t": "code-inline"}, {"c": "。", "t": "text"}]}, {"type": "title", "raw_content": "

实例

", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:

", "content": [{"c": "创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:", "t": "text"}]}, {"type": "code", "raw_content": "
import numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n
\n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

3-D 数组

", "content": {"title_content": "3-D 数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

其元素为 2-D 数组的数组,称为 3-D 数组。

", "content": [{"c": "其元素为 2-D 数组的数组,称为 3-D 数组。", "t": "text"}]}, {"type": "title", "raw_content": "

实例

", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:

", "content": [{"c": "用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:", "t": "text"}]}, {"type": "code", "raw_content": "
import numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n
\n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

检查维数?

", "content": {"title_content": "检查维数?", "level": "2"}}, {"type": "paragraph", "raw_content": "

NumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。

", "content": [{"c": "NumPy 数组提供了", "t": "text"}, {"c": "ndim", "t": "code-inline"}, {"c": "属性,该属性返回一个整数,该整数会告诉我们数组有多少维。", "t": "text"}]}, {"type": "title", "raw_content": "

实例

", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

检查数组有多少维:

", "content": [{"c": "检查数组有多少维:", "t": "text"}]}, {"type": "code", "raw_content": "
import numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n
\n", "inline": false, "content": {"code_content": "import numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

更高维的数组

", "content": {"title_content": "更高维的数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

数组可以拥有任意数量的维。

", "content": [{"c": "数组可以拥有任意数量的维。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

在创建数组时,可以使用 ndmin 参数定义维数。

", "content": [{"c": "在创建数组时,可以使用", "t": "text"}, {"c": "ndmin", "t": "code-inline"}, {"c": "参数定义维数。", "t": "text"}]}, {"type": "title", "raw_content": "

实例

", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

创建一个有 5 个维度的数组,并验证它拥有 5 个维度:

", "content": [{"c": "创建一个有 5 个维度的数组,并验证它拥有 5 个维度:", "t": "text"}]}, {"type": "code", "raw_content": "
import numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n
\n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)", "language": "python", "by": "tag_pre"}}, {"type": "paragraph", "raw_content": "

在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。

", "content": [{"c": "在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "t": "text"}]}]], "content_list": null, "content": null, "llm_webkit_md": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "llm_webkit_html": "\n\n
\n
\n

NumPy 简介

\n
\n

创建 NumPy ndarray 对象

\n

NumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray

\n

我们可以使用 array() 函数创建一个 NumPy ndarray 对象。

\n

实例

\n
import numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n
\n

type(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。

\n

要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray

\n

实例

\n

使用元组创建 NumPy 数组:

\n
import numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n
\n
\n
\n

数组中的维

\n

数组中的维是数组深度(嵌套数组)的一个级别。

\n

嵌套数组:指的是将数组作为元素的数组。

\n
\n
\n

0-D 数组

\n

0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。

\n

实例

\n

用值 61 创建 0-D 数组:

\n
import numpy as np\n\narr = np.array(61)\n\nprint(arr)\n
\n
\n
\n

1-D 数组

\n

其元素为 0-D 数组的数组,称为一维或 1-D 数组。

\n

这是最常见和基础的数组。

\n

实例

\n

创建包含值 1、2、3、4、5、6 的 1-D 数组:

\n
import numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n
\n
\n
\n

2-D 数组

\n

其元素为 1-D 数组的数组,称为 2-D 数组。

\n

它们通常用于表示矩阵或二阶张量。

\n

NumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat

\n

实例

\n

创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:

\n
import numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n
\n
\n
\n

3-D 数组

\n

其元素为 2-D 数组的数组,称为 3-D 数组。

\n

实例

\n

用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:

\n
import numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n
\n
\n
\n

检查维数?

\n

NumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。

\n

实例

\n

检查数组有多少维:

\n
import numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n
\n
\n
\n

更高维的数组

\n

数组可以拥有任意数量的维。

\n

在创建数组时,可以使用 ndmin 参数定义维数。

\n

实例

\n

创建一个有 5 个维度的数组,并验证它拥有 5 个维度:

\n
import numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n
\n

在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。

\n
\n
\n
\n\n", "url": "https://www.w3school.com.cn/python/numpy_creating_arrays.asp", "domain": null, "language": null, "content_type": null, "difficulty": null, "tags": null, "extracted_results": null, "llm-webkit_content": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "llm-webkit_content_list": [], "llm-webkit_success": true, "llm-webkit_time": 0.7293002605438232, "llm-webkit_code_edit_score": 1.0, "llm-webkit_text_edit_score": 0.9994941831057157, "llm-webkit_overall_score": 0.9997470915528579, "llm-webkit_predicted_code": "ndarray\narray()\nndarray\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\narr\nnumpy.ndarray\nndarray\narray()\nndarray\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\nnumpy.mat\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\nndim\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\nndmin\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)", "llm-webkit_predicted_formula": "", "llm-webkit_predicted_table": "", "llm-webkit_predicted_text": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "magic-html_content": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray`。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n \n \n import numpy as np \n \n arr = np.array([1, 2, 3, 4, 5])\n \n print(arr)\n \n print(type(arr))\n \n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray`,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray`:\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n \n \n import numpy as np \n \n arr = np.array((1, 2, 3, 4, 5))\n \n print(arr)\n \n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n \n \n import numpy as np\n \n arr = np.array(61)\n \n print(arr)\n \n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n \n \n import numpy as np\n \n arr = np.array([1, 2, 3, 4, 5, 6])\n \n print(arr)\n \n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat`。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n \n \n import numpy as np\n \n arr = np.array([[1, 2, 3], [4, 5, 6]])\n \n print(arr)\n \n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n \n \n import numpy as np\n \n arr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n \n print(arr)\n \n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n \n \n import numpy as np\n \n a = np.array(42)\n b = np.array([1, 2, 3, 4, 5])\n c = np.array([[1, 2, 3], [4, 5, 6]])\n d = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n \n print(a.ndim) \n print(b.ndim) \n print(c.ndim) \n print(d.ndim)\n \n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n \n \n import numpy as np\n \n arr = np.array([1, 2, 3, 4], ndmin=5)\n \n print(arr)\n print('number of dimensions :', arr.ndim)\n \n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1\n个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n\n", "magic-html_content_list": [], "magic-html_success": true, "magic-html_time": 0.0339200496673584, "magic-html_code_edit_score": 0.10070257611241218, "magic-html_text_edit_score": 0.8570119156736938, "magic-html_overall_score": 0.478857245893053, "magic-html_predicted_code": "ndarray\narray()\nndarray\narr\nnumpy.ndarray\nndarray\narray()\nndarray\nnumpy.mat\nndim\nndmin", "magic-html_predicted_formula": "", "magic-html_predicted_table": "", "magic-html_predicted_text": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray`。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n \n \n import numpy as np \n \n arr = np.array([1, 2, 3, 4, 5])\n \n print(arr)\n \n print(type(arr))\n \n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray`,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray`:\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n \n \n import numpy as np \n \n arr = np.array((1, 2, 3, 4, 5))\n \n print(arr)\n \n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n \n \n import numpy as np\n \n arr = np.array(61)\n \n print(arr)\n \n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n \n \n import numpy as np\n \n arr = np.array([1, 2, 3, 4, 5, 6])\n \n print(arr)\n \n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat`。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n \n \n import numpy as np\n \n arr = np.array([[1, 2, 3], [4, 5, 6]])\n \n print(arr)\n \n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n \n \n import numpy as np\n \n arr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n \n print(arr)\n \n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n \n \n import numpy as np\n \n a = np.array(42)\n b = np.array([1, 2, 3, 4, 5])\n c = np.array([[1, 2, 3], [4, 5, 6]])\n d = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n \n print(a.ndim) \n print(b.ndim) \n print(c.ndim) \n print(d.ndim)\n \n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n \n \n import numpy as np\n \n arr = np.array([1, 2, 3, 4], ndmin=5)\n \n print(arr)\n print('number of dimensions :', arr.ndim)\n \n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1\n个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n\n", "trafilatura_content": "# NumPy 简介\n## 创建 NumPy ndarray 对象\n`ndarray`\n`array()`\n`ndarray`\n### 实例\nimportnumpy asnp arr =np .array ([1, 2, 3, 4, 5]) print(arr ) print(type(arr ))\ntype():`arr`\n`numpy.ndarray`\n\n`ndarray`\n`array()`\n`ndarray`\n### 实例\n使用元组创建 NumPy 数组:\n\nimportnumpy asnp arr =np .array ((1, 2, 3, 4, 5)) print(arr )\n## 数组中的维\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:\n\n## 0-D 数组\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n用值 61 创建 0-D 数组:\n\nimportnumpy asnp arr =np .array (61) print(arr )\n## 1-D 数组\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\nimportnumpy asnp arr =np .array ([1, 2, 3, 4, 5, 6]) print(arr )\n## 2-D 数组\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\n`numpy.mat`\n### 实例\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\nimportnumpy asnp arr =np .array ([[1, 2, 3], [4, 5, 6]]) print(arr )\n## 3-D 数组\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\nimportnumpy asnp arr =np .array ([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]]) print(arr )\n## 检查维数?\n`ndim`\n### 实例\n检查数组有多少维:\n\nimportnumpy asnp a =np .array (42)b =np .array ([1, 2, 3, 4, 5])c =np .array ([[1, 2, 3], [4, 5, 6]])d =np .array ([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]]) print(a .ndim ) print(b .ndim ) print(c .ndim ) print(d .ndim )\n## 更高维的数组\n数组可以拥有任意数量的维。\n\n`ndmin`\n### 实例\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\nimportnumpy asnp arr =np .array ([1, 2, 3, 4],ndmin =5) print(arr ) print('number of dimensions :',arr .ndim )\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "trafilatura_content_list": [], "trafilatura_success": true, "trafilatura_time": 0.030450820922851562, "trafilatura_code_edit_score": 0.10070257611241218, "trafilatura_text_edit_score": 0.7430450177035913, "trafilatura_overall_score": 0.42187379690800175, "trafilatura_predicted_code": "ndarray\narray()\nndarray\narr\nnumpy.ndarray\nndarray\narray()\nndarray\nnumpy.mat\nndim\nndmin", "trafilatura_predicted_formula": "", "trafilatura_predicted_table": "", "trafilatura_predicted_text": "# NumPy 简介\n## 创建 NumPy ndarray 对象\n`ndarray`\n`array()`\n`ndarray`\n### 实例\nimportnumpy asnp arr =np .array ([1, 2, 3, 4, 5]) print(arr ) print(type(arr ))\ntype():`arr`\n`numpy.ndarray`\n\n`ndarray`\n`array()`\n`ndarray`\n### 实例\n使用元组创建 NumPy 数组:\n\nimportnumpy asnp arr =np .array ((1, 2, 3, 4, 5)) print(arr )\n## 数组中的维\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:\n\n## 0-D 数组\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n用值 61 创建 0-D 数组:\n\nimportnumpy asnp arr =np .array (61) print(arr )\n## 1-D 数组\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\nimportnumpy asnp arr =np .array ([1, 2, 3, 4, 5, 6]) print(arr )\n## 2-D 数组\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\n`numpy.mat`\n### 实例\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\nimportnumpy asnp arr =np .array ([[1, 2, 3], [4, 5, 6]]) print(arr )\n## 3-D 数组\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\nimportnumpy asnp arr =np .array ([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]]) print(arr )\n## 检查维数?\n`ndim`\n### 实例\n检查数组有多少维:\n\nimportnumpy asnp a =np .array (42)b =np .array ([1, 2, 3, 4, 5])c =np .array ([[1, 2, 3], [4, 5, 6]])d =np .array ([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]]) print(a .ndim ) print(b .ndim ) print(c .ndim ) print(d .ndim )\n## 更高维的数组\n数组可以拥有任意数量的维。\n\n`ndmin`\n### 实例\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\nimportnumpy asnp arr =np .array ([1, 2, 3, 4],ndmin =5) print(arr ) print('number of dimensions :',arr .ndim )\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "resiliparse_content": "NumPy 简介\n\n创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray\n\n我们可以使用 array() 函数创建一个 NumPy ndarray 对象。\n\n实例\n\nimport numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n\n运行实例\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。\n\n要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray\n\n实例\n\n使用元组创建 NumPy 数组:\n\nimport numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n\n运行实例\n\n数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:指的是将数组作为元素的数组。\n\n0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n实例\n\n用值 61 创建 0-D 数组:\n\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n\n运行实例\n\n1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n\n运行实例\n\n2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat\n\n实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n\n运行实例\n\n3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n\n运行实例\n\n检查维数?\n\nNumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n实例\n\n检查数组有多少维:\n\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n\n运行实例\n\n更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 ndmin 参数定义维数。\n\n实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n\n运行实例\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "resiliparse_content_list": [], "resiliparse_success": true, "resiliparse_time": 0.0033152103424072266, "resiliparse_code_edit_score": 0.0, "resiliparse_text_edit_score": 0.8902377339403136, "resiliparse_overall_score": 0.4451188669701568, "resiliparse_predicted_code": "", "resiliparse_predicted_formula": "", "resiliparse_predicted_table": "", "resiliparse_predicted_text": "NumPy 简介\n\n创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray\n\n我们可以使用 array() 函数创建一个 NumPy ndarray 对象。\n\n实例\n\nimport numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n\n运行实例\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。\n\n要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray\n\n实例\n\n使用元组创建 NumPy 数组:\n\nimport numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n\n运行实例\n\n数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:指的是将数组作为元素的数组。\n\n0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n实例\n\n用值 61 创建 0-D 数组:\n\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n\n运行实例\n\n1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n\n运行实例\n\n2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat\n\n实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n\n运行实例\n\n3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n\n运行实例\n\n检查维数?\n\nNumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n实例\n\n检查数组有多少维:\n\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n\n运行实例\n\n更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 ndmin 参数定义维数。\n\n实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n\n运行实例\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "groundtruth_groundtruth_code": "ndarray\narray()\nndarray\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\narr\nnumpy.ndarray\nndarray\narray()\nndarray\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\nnumpy.mat\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\nndim\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\nndmin\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)", "groundtruth_groundtruth_formula": "", "groundtruth_groundtruth_table": "", "groundtruth_groundtruth_text": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n"} -{"id": "3026972b-8a26-48c3-bc00-c181138702f2", "html": "\n\n\n\n\n\n\n\n\nTerms Of Use - Triumph\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSkip to content\n
\n
\n
\n\n
\n
\n
\n
\n
\n
\n
\n
\nTerms Of UseTriumph Team2018-12-12T05:24:24+00:00
\n
\n
\n

Terms Of Use

Version 1.0

\n

Effective Date: 08-01-2016

\n

Last Updated Date: 12-07-2018

\n

RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.

\n

IF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.

\n

THE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.

\n

Your use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”

\n

Company knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.

\n

PLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.

\n

Background: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.

\n

Use of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.

\n

Application License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.

\n

Company Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.

\n

Updates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.

\n

Certain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.

\n

Acceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.

\n

Third-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.

\n

Registration

\n

Registering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).

\n

Registration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.

\n

Necessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.

\n

Responsibility for Content

\n

Types of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).

\n

No Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.

\n

Storage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.

\n

Ownership

\n

Company Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.

\n

Trademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.

\n

Other Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.

\n

Your Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.

\n

License to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.

\n

Username: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.

\n

Your Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.

\n

Your Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.

\n

Feedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.

\n

Investigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.

\n

Interactions with Other Users

\n

User Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.

\n

Content Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.

\n

Third-Party Services

\n

Third-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.

\n

App Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.

\n

Fees and Purchase Terms

\n

General Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.

\n

Payment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.

\n

Service Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.

\n

Taxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.

\n

Withholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.

\n

Automatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).

\n

Free Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.

\n

Other Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.

\n

Gifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.

\n

Disputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com

\n

Indemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.

\n

Disclaimer of Warranties.

\n

As Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.

\n

THE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.

\n

ANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.

\n

THE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.

\n

NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.

\n

From time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.

\n

No Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.

\n

No Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.

\n

Limitation of Liability.

\n

Disclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.

\n

Cap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).

\n

User Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.

\n

Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.

\n

EXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.

\n

Procedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com

\n

Term and Termination.

\n

Term: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.

\n

Prior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.

\n

Termination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.

\n

Termination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.

\n

Effect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.

\n

Remedies

\n

Violations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.

\n

Breach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:

\n

– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;

\n

– Delete any of Your Content provided by you or your agent(s) to the Company Properties;

\n

– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;

\n

– Discontinue your subscription to any Services;

\n

– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or

\n

– Pursue any other action which the Company deems to be appropriate.

\n

No Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.

\n

International Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.

\n

General Provisions

\n

Electronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.

\n

Release: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”

\n

Assignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.

\n

Force Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.

\n

Compliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.

\n

Limitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.

\n

Dispute Resolution

\n

Any claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.

\n

Any other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).

\n

You are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.

\n

You and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.

\n

The arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.

\n

Notwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.

\n

With the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.

\n

For more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.

\n

Governing Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.

\n

Choice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.

\n

Notice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.

\n

Waiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.

\n

Severability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.

\n

Export Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.

\n

Accessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):

\n

You acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.

\n

You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.

\n

In the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.

\n

You and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.

\n

You and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.

\n

You and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.

\n

Without limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.

\n

Entire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.

\n

International Provisions: The following provisions shall apply only if you are located in the countries listed below.

\n
    \n
  • United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.
  • \n
  • Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).
  • \n
\n

ACCEPTABLE USE POLICY

\n

Last Updated: [04-21-2017]

\n

Welcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.

\n

You will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:

\n

Illegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.

\n

Harmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.

\n

Infringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.

\n

Offensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.

\n

Harmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.

\n

Fraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.

\n

Inappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);

\n

You will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:

\n

Unauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.

\n

Interception: Monitoring of data or traffic on a System without permission.

\n

Falsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.

\n

You will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:

\n

Unauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.

\n

Monitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.

\n

Denial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.

\n

Intentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.

\n

Operation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.

\n

Avoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.

\n

You will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;

\n

You will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.

\n
\n
\n
\n
\n
\n
\n
\n
\n
\n \n
\n
\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", "groundtruth_content": "RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:** We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\n**Use of the Services and Company Properties:** The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\n**Application License:** Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\n**Company Software:** Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\n**Updates:** You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\n**Certain Restrictions:** The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\n**Acceptable Use:** It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\n**Third-Party Materials:** As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\n**Registering Your Account:** In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\n**Registration Data:** In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\n**Necessary Equipment and Software:** You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\n**Types of Content:** You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\n**Storage:** Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\n**Company Properties:** Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\n**Trademarks:** Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\n**Other Content:** Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\n**Your Content:** The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\n**License to Your Content:** Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\n**Username:** Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile**: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\n**Feedback:** You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\n**Investigations:** The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\n**User Responsibility:** You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\n**Content Provided by Other Users:** The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\n**Third-Party Websites & Ads:** The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\n**App Stores:** You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\n**General Purpose of Terms: Sale of Service, not Software:** The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\n**Payment:** You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\n**Service Subscription Fees:** You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\n**Taxes:** The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\n**Withholding Taxes:** You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\n**Automatic Renewal.** Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\n**Free Trials:** Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\n**Other Promotions:** We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\n**Gifting:**“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\n**Disputes:** You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\n**Indemnification:** You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:** UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\n**Term:** The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\n**Violations:** If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\n**Electronic Communications:** The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:** The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\n**Choice of Language:** It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\n**Notice:** Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\n**Waiver.** Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\n**Export Control:** You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\n**Accessing and Download the Application from iTunes:** The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:** The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\n**International Provisions:** The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:** Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\n**Harmful or Fraudulent Activities:** Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\n**Infringing Content:** Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\n**Offensive Content:** Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\n**Harmful Content:** Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\n**Fraud or Impersonation:** Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\n**Inappropriate Content:** Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:** Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\n**Interception:**\nMonitoring of data or traffic on a System without permission.\n\n**Falsification of Origin:** Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:** Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\n**Monitoring or Crawling:** Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\n**Denial of Service (DoS):** Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\n**Intentional Interference:** Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\n**Operation of Certain Network Services.** Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\n**Avoiding System Restrictions:** Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n\n\n\n\n", "groundtruth_content_list": [[{"type": "paragraph", "raw_content": "

RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.

", "content": [{"c": "RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

IF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.

", "content": [{"c": "IF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

THE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.

", "content": [{"c": "THE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Your use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”

", "content": [{"c": "Your use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Company knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.

", "content": [{"c": "Company knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

PLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.

", "content": [{"c": "PLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Background: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.

", "content": [{"c": "Background: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Use of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.

", "content": [{"c": "Use of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Application License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.

", "content": [{"c": "Application License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Company Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.

", "content": [{"c": "Company Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Updates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.

", "content": [{"c": "Updates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Certain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.

", "content": [{"c": "Certain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Acceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.

", "content": [{"c": "Acceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Third-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.

", "content": [{"c": "Third-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.", "t": "text"}]}, {"type": "title", "raw_content": "

Registration

", "content": {"title_content": "Registration", "level": "2"}}, {"type": "paragraph", "raw_content": "

Registering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).

", "content": [{"c": "Registering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Registration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.

", "content": [{"c": "Registration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Necessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.

", "content": [{"c": "Necessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.", "t": "text"}]}, {"type": "title", "raw_content": "

Responsibility for Content

", "content": {"title_content": "Responsibility for Content", "level": "2"}}, {"type": "paragraph", "raw_content": "

Types of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).

", "content": [{"c": "Types of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

No Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.

", "content": [{"c": "No Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Storage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.

", "content": [{"c": "Storage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.", "t": "text"}]}, {"type": "title", "raw_content": "

Ownership

", "content": {"title_content": "Ownership", "level": "2"}}, {"type": "paragraph", "raw_content": "

Company Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.

", "content": [{"c": "Company Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Trademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.

", "content": [{"c": "Trademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Other Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.

", "content": [{"c": "Other Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Your Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.

", "content": [{"c": "Your Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

License to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.

", "content": [{"c": "License to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Username: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.

", "content": [{"c": "Username: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Your Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.

", "content": [{"c": "Your Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Your Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.

", "content": [{"c": "Your Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Feedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.

", "content": [{"c": "Feedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Investigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.

", "content": [{"c": "Investigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.", "t": "text"}]}, {"type": "title", "raw_content": "

Interactions with Other Users

", "content": {"title_content": "Interactions with Other Users", "level": "2"}}, {"type": "paragraph", "raw_content": "

User Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.

", "content": [{"c": "User Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Content Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.

", "content": [{"c": "Content Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.", "t": "text"}]}, {"type": "title", "raw_content": "

Third-Party Services

", "content": {"title_content": "Third-Party Services", "level": "2"}}, {"type": "paragraph", "raw_content": "

Third-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.

", "content": [{"c": "Third-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

App Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.

", "content": [{"c": "App Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.", "t": "text"}]}, {"type": "title", "raw_content": "

Fees and Purchase Terms

", "content": {"title_content": "Fees and Purchase Terms", "level": "2"}}, {"type": "paragraph", "raw_content": "

General Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.

", "content": [{"c": "General Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Payment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.

", "content": [{"c": "Payment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Service Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.

", "content": [{"c": "Service Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Taxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.

", "content": [{"c": "Taxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Withholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.

", "content": [{"c": "Withholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Automatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).

", "content": [{"c": "Automatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Free Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.

", "content": [{"c": "Free Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Other Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.

", "content": [{"c": "Other Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Gifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.

", "content": [{"c": "Gifting:“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Disputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com

", "content": [{"c": "Disputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Indemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.

", "content": [{"c": "Indemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.", "t": "text"}]}, {"type": "title", "raw_content": "

Disclaimer of Warranties.

", "content": {"title_content": "Disclaimer of Warranties.", "level": "2"}}, {"type": "paragraph", "raw_content": "

As Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.

", "content": [{"c": "As Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

THE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.

", "content": [{"c": "THE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

ANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.

", "content": [{"c": "ANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

THE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.

", "content": [{"c": "THE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.

", "content": [{"c": "NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

From time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.

", "content": [{"c": "From time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

No Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.

", "content": [{"c": "No Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

No Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.

", "content": [{"c": "No Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.", "t": "text"}]}, {"type": "title", "raw_content": "

Limitation of Liability.

", "content": {"title_content": "Limitation of Liability.", "level": "2"}}, {"type": "paragraph", "raw_content": "

Disclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.

", "content": [{"c": "Disclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Cap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).

", "content": [{"c": "Cap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

User Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.

", "content": [{"c": "User Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.

", "content": [{"c": "Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

EXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.

", "content": [{"c": "EXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Procedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com

", "content": [{"c": "Procedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com", "t": "text"}]}, {"type": "title", "raw_content": "

Term and Termination.

", "content": {"title_content": "Term and Termination.", "level": "2"}}, {"type": "paragraph", "raw_content": "

Term: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.

", "content": [{"c": "Term: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Prior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.

", "content": [{"c": "Prior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Termination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.

", "content": [{"c": "Termination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Termination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.

", "content": [{"c": "Termination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Effect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.

", "content": [{"c": "Effect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.", "t": "text"}]}, {"type": "title", "raw_content": "

Remedies

", "content": {"title_content": "Remedies", "level": "2"}}, {"type": "paragraph", "raw_content": "

Violations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.

", "content": [{"c": "Violations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Breach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:

", "content": [{"c": "Breach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:", "t": "text"}]}, {"type": "paragraph", "raw_content": "

– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;

", "content": [{"c": "– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

– Delete any of Your Content provided by you or your agent(s) to the Company Properties;

", "content": [{"c": "– Delete any of Your Content provided by you or your agent(s) to the Company Properties;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;

", "content": [{"c": "– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

– Discontinue your subscription to any Services;

", "content": [{"c": "– Discontinue your subscription to any Services;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or

", "content": [{"c": "– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or", "t": "text"}]}, {"type": "paragraph", "raw_content": "

– Pursue any other action which the Company deems to be appropriate.

", "content": [{"c": "– Pursue any other action which the Company deems to be appropriate.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

No Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.

", "content": [{"c": "No Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

International Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.

", "content": [{"c": "International Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.", "t": "text"}]}, {"type": "title", "raw_content": "

General Provisions

", "content": {"title_content": "General Provisions", "level": "2"}}, {"type": "paragraph", "raw_content": "

Electronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.

", "content": [{"c": "Electronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Release: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”

", "content": [{"c": "Release: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Assignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.

", "content": [{"c": "Assignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Force Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.

", "content": [{"c": "Force Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Compliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.

", "content": [{"c": "Compliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Limitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.

", "content": [{"c": "Limitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.", "t": "text"}]}, {"type": "title", "raw_content": "

Dispute Resolution

", "content": {"title_content": "Dispute Resolution", "level": "2"}}, {"type": "paragraph", "raw_content": "

Any claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.

", "content": [{"c": "Any claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Any other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).

", "content": [{"c": "Any other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.

", "content": [{"c": "You are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.

", "content": [{"c": "You and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

The arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.

", "content": [{"c": "The arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Notwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.

", "content": [{"c": "Notwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

With the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.

", "content": [{"c": "With the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

For more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.

", "content": [{"c": "For more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Governing Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.

", "content": [{"c": "Governing Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Choice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.

", "content": [{"c": "Choice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Notice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.

", "content": [{"c": "Notice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Waiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.

", "content": [{"c": "Waiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Severability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.

", "content": [{"c": "Severability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Export Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.

", "content": [{"c": "Export Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Accessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):

", "content": [{"c": "Accessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.

", "content": [{"c": "You acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.

", "content": [{"c": "You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

In the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.

", "content": [{"c": "In the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.

", "content": [{"c": "You and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.

", "content": [{"c": "You and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.

", "content": [{"c": "You and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Without limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.

", "content": [{"c": "Without limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Entire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.

", "content": [{"c": "Entire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

International Provisions: The following provisions shall apply only if you are located in the countries listed below.

", "content": [{"c": "International Provisions: The following provisions shall apply only if you are located in the countries listed below.", "t": "text"}]}, {"type": "list", "raw_content": "", "content": {"items": [{"c": "United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act."}, {"c": "Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten)."}], "list_attribute": "unordered", "list_nest_level": "1"}}, {"type": "title", "raw_content": "

ACCEPTABLE USE POLICY

", "content": {"title_content": "ACCEPTABLE USE POLICY", "level": "2"}}, {"type": "paragraph", "raw_content": "

Welcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.

", "content": [{"c": "Welcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:

", "content": [{"c": "You will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Illegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.

", "content": [{"c": "Illegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Harmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.

", "content": [{"c": "Harmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Infringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.

", "content": [{"c": "Infringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Offensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.

", "content": [{"c": "Offensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Harmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.

", "content": [{"c": "Harmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Fraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.

", "content": [{"c": "Fraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Inappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);

", "content": [{"c": "Inappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:

", "content": [{"c": "You will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Unauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.

", "content": [{"c": "Unauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Interception: Monitoring of data or traffic on a System without permission.

", "content": [{"c": "Interception: Monitoring of data or traffic on a System without permission.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Falsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.

", "content": [{"c": "Falsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:

", "content": [{"c": "You will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Unauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.

", "content": [{"c": "Unauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Monitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.

", "content": [{"c": "Monitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Denial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.

", "content": [{"c": "Denial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Intentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.

", "content": [{"c": "Intentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Operation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.

", "content": [{"c": "Operation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

Avoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.

", "content": [{"c": "Avoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;

", "content": [{"c": "You will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

You will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.

", "content": [{"c": "You will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "t": "text"}]}]], "content_list": null, "content": null, "llm_webkit_md": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting:“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n", "llm_webkit_html": "\n\n
\n
\n
\n
\n
\n\n
\n
\n
\n
\n

Terms Of Use

\n
\n
\n

Version 1.0

\n

Effective Date: 08-01-2016

\n

Last Updated Date: 12-07-2018

\n

RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.

\n

IF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.

\n

THE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.

\n

Your use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”

\n

Company knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.

\n

PLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.

\n

Background: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.

\n

Use of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.

\n

Application License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.

\n

Company Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.

\n

Updates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.

\n

Certain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.

\n

Acceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.

\n

Third-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.

\n

Registration

\n

Registering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).

\n

Registration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.

\n

Necessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.

\n

Responsibility for Content

\n

Types of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).

\n

No Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.

\n

Storage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.

\n

Ownership

\n

Company Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.

\n

Trademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.

\n

Other Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.

\n

Your Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.

\n

License to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.

\n

Username: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.

\n

Your Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.

\n

Your Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.

\n

Feedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.

\n

Investigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.

\n

Interactions with Other Users

\n

User Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.

\n

Content Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.

\n

Third-Party Services

\n

Third-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.

\n

App Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.

\n

Fees and Purchase Terms

\n

General Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.

\n

Payment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.

\n

Service Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.

\n

Taxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.

\n

Withholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.

\n

Automatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).

\n

Free Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.

\n

Other Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.

\n

Gifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.

\n

Disputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com

\n

Indemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.

\n

Disclaimer of Warranties.

\n

As Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.

\n

THE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.

\n

ANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.

\n

THE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.

\n

NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.

\n

From time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.

\n

No Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.

\n

No Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.

\n

Limitation of Liability.

\n

Disclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.

\n

Cap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).

\n

User Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.

\n

Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.

\n

EXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.

\n

Procedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com

\n

Term and Termination.

\n

Term: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.

\n

Prior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.

\n

Termination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.

\n

Termination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.

\n

Effect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.

\n

Remedies

\n

Violations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.

\n

Breach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:

\n

– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;

\n

– Delete any of Your Content provided by you or your agent(s) to the Company Properties;

\n

– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;

\n

– Discontinue your subscription to any Services;

\n

– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or

\n

– Pursue any other action which the Company deems to be appropriate.

\n

No Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.

\n

International Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.

\n

General Provisions

\n

Electronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.

\n

Release: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”

\n

Assignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.

\n

Force Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.

\n

Compliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.

\n

Limitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.

\n

Dispute Resolution

\n

Any claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.

\n

Any other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).

\n

You are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.

\n

You and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.

\n

The arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.

\n

Notwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.

\n

With the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.

\n

For more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.

\n

Governing Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.

\n

Choice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.

\n

Notice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.

\n

Waiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.

\n

Severability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.

\n

Export Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.

\n

Accessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):

\n

You acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.

\n

You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.

\n

In the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.

\n

You and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.

\n

You and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.

\n

You and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.

\n

Without limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.

\n

Entire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.

\n

International Provisions: The following provisions shall apply only if you are located in the countries listed below.

\n
    \n
  • United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.
  • \n
  • Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).
  • \n
\n

ACCEPTABLE USE POLICY

\n

Last Updated: [04-21-2017]

\n

Welcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.

\n

You will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:

\n

Illegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.

\n

Harmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.

\n

Infringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.

\n

Offensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.

\n

Harmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.

\n

Fraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.

\n

Inappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);

\n

You will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:

\n

Unauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.

\n

Interception: Monitoring of data or traffic on a System without permission.

\n

Falsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.

\n

You will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:

\n

Unauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.

\n

Monitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.

\n

Denial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.

\n

Intentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.

\n

Operation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.

\n

Avoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.

\n

You will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;

\n

You will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.

\n
\n
\n
\n
\n
\n
\n
\n
\n
\n\n", "url": "https://www.triumphhq.com/terms-of-use/", "domain": null, "language": "en", "content_type": null, "difficulty": null, "tags": null, "extracted_results": null, "llm-webkit_content": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax. If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes. Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting:“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "llm-webkit_content_list": [], "llm-webkit_success": true, "llm-webkit_time": 0.06506109237670898, "llm-webkit_text_edit_score": 0.9938773844186236, "llm-webkit_overall_score": 0.9938773844186236, "llm-webkit_predicted_code": "", "llm-webkit_predicted_formula": "", "llm-webkit_predicted_table": "", "llm-webkit_predicted_text": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax. If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes. Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting:“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "magic-html_content": "Version 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF\nAPPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g.\nwww.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE\n(COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE\nOR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY,\nTHE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”)\nCAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S),\nCLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR\nBROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT\n(1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2)\nYOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU\nHAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF\nTHE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS\nOF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS\nAPPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU\nDO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS\nWEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE\nTERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME\nDURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES\nUNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6\nBELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO\nRESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE\nREMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to\nadditional terms (“Supplemental Terms”) and such Supplemental Terms will\neither be listed in the Terms of Use or will be presented to you for your\nacceptance when you sign up to use the supplemental Service. If the Terms of\nUse are inconsistent with the Supplemental Terms, the Supplemental Terms shall\ncontrol with respect to such Service. The Terms of Use and any applicable\nSupplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created\na [Privacy Policy](http://www.triumphhq.com/privacy-policy/) that describes\nour collection, use and disclosure practices regarding any personal\ninformation that you provide to us. The security of your personal information\nis important to us. While there is no such thing as “perfect security” on the\nInternet, we will take reasonable steps to help ensure the safety of your\npersonal information. However, you understand and agree that such steps do not\nguarantee that the Services are invulnerable to all security breaches or\nimmune from viruses, security threats or other vulnerabilities. We reserve the\nright to cooperate with local, state, provincial and national authorities in\ninvestigations of improper or unlawful activities and this may require the\ndisclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole\ndiscretion at any time. When changes are made, the Company will make a new\ncopy of the Terms of Use available at the Website and/or within the\nApplication and any new Supplemental Terms will be made available from within,\nor through, the affected Service on the Website or within the Application. We\nwill also update the “Last Updated” date at the top of the Terms of Use. If we\nmake any material changes, and you have registered with us to create an\nAccount (as defined in Section 3.1 below), we will also send an e-mail to you\nat the last e-mail address you provided to us pursuant to the Terms. Any\nchanges to the Terms will be effective immediately for new Users of the\nWebsite, the Application and/ or Services and will be effective thirty (30)\ndays after posting notice of such changes on the Website for existing Users,\nprovided that any material changes shall be effective for Users who have an\nAccount with us upon the earlier of thirty (30) days after posting notice of\nsuch changes on the Website or thirty (30) days after dispatch of an e-mail\nnotice of such changes to Registered Users (defined in Section 3.1 below). The\nCompany may require you to provide consent to the updated Terms in a specified\nmanner before further use of the Website, the Application and/ or the Services\nis permitted. If you do not agree to any change(s) after receiving a notice of\nsuch change(s), you shall stop using the Website, the Application and/or the\nServices. Otherwise, your continued use of the Website, the Application and/or\nServices constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK\nTHE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:** We offer you a platform to actualize your potential and live\njoyously. Your use of our platform may involve recording your memories and\nother notes and information, and, if you wish, sharing them. Pretty simple,\nright? You’ll need to access the Website and/or download our Application(s)\nand become a Registered User (see Section 2) to start your own self-\ndevelopment journey, and then you start “writing” and/or “recording”. Based on\nyour subscription level, certain features and functions will be made available\nto you, including the ability to “publish” your entries. Read on and we will\ntell you how this works. Please remember that the following Terms of Use can\nfeel like a legal document because, well, it is a legal document. If you’re\ngoing to invest lots of time in using our Services we recommend you read it,\nmaybe even twice, because we want you to gain comfort and confidence in the\nagreement.\n\n**Use of the Services and Company Properties:** The Application, the Software,\nthe Website, the Services, and the information and content available on the\nWebsite and in the Application and the Services (as these terms are defined\nbelow) (collectively, the “Company Properties”) are protected by copyright\nlaws throughout the world. Subject to the Terms, the Company grants you a\nlimited license to reproduce portions of the Company Properties for the sole\npurpose of using the Services for your personal or internal business purposes.\nUnless otherwise specified by the Company in a separate license, your right to\nuse any Company Properties is subject to the Terms.\n\n**Application License:** Subject to your compliance with the Terms, the\nCompany grants you a limited non-exclusive, non-transferable, non-\nsublicensable, revocable license to download, install and use a copy of the\nApplication on a single mobile device or computer that you own or control and\nto run such copy of the Application solely for your own personal or internal\nbusiness purposes. Furthermore, with respect to any Application accessed\nthrough or downloaded from the Apple App Store (an “App Store Sourced\nApplication”), you will only use the App Store Sourced Application (i) on an\nApple-branded product that runs the iOS (Apple’s proprietary operating system)\nand (ii) as permitted by the “Usage Rules” set forth in the Apple App Store\nTerms of Service.\n\n**Company Software:** Use of any software and associated documentation, other\nthan the Application, that is made available via the Website or the Services\n(“Software”) is governed by the terms of the license agreement that\naccompanies or is included with the Software, or by the license agreement\nexpressly stated on the Website page(s) accompanying the Software. These\nlicense terms may be posted with the Software downloads or at the Website page\nwhere the Software can be accessed. You shall not use, download or install any\nSoftware that is accompanied by or includes a license agreement unless you\nagree to the terms of such license agreement. At no time will the Company\nprovide you with any tangible copy of our Software. The Company shall deliver\naccess to the Software via electronic transfer or download and shall not use\nor deliver any tangible media in connection with the (a) delivery,\ninstallation, updating or problem resolution of any Software (including any\nnew releases); or (b) delivery, correction or updating of documentation. For\nthe purposes of this section tangible media shall include, but not be limited\nto, any tape disk, compact disk, card, flash drive, or any other comparable\nphysical medium. Unless the accompanying license agreement expressly allows\notherwise, any copying or redistribution of the Software is prohibited,\nincluding any copying or redistribution of the Software to any other server or\nlocation, or redistribution or use on a service bureau basis. If there is any\nconflict between the Terms and the license agreement, the license agreement\nshall take precedence in relation to that Software (except as provided in the\nfollowing sentence). If the Software is a pre-release version, then,\nnotwithstanding anything to the contrary included within an accompanying\nlicense agreement, you are not permitted to use or otherwise rely on the\nSoftware for any commercial or production purposes. If no license agreement\naccompanies use of the Software, use of the Software will be governed by the\nTerms. Subject to your compliance with the Terms, the Company grants you a\nnon-assignable, non-transferable, non-sublicensable, revocable non-exclusive\nlicense to use the Software for the sole purpose of enabling you to use the\nServices in the manner permitted by the Terms. Some Software may be offered\nunder an open source license that we will make available to you. There may be\nprovisions in the open source license that expressly override some of these\nterms.\n\n**Updates:** You understand that the Company Properties are evolving. As a\nresult, the Company may require you to accept updates to the Company\nProperties that you have installed on your computer or mobile device. You\nacknowledge and agree that the Company may update the Company Properties with\nor without notifying you. You may need to update third-party software from\ntime to time in order to use the Company Properties.\n\n**Certain Restrictions:** The rights granted to you in the Terms are subject\nto the following restrictions: (a) you shall not license, sell, rent, lease,\ntransfer, assign, reproduce, distribute, host or otherwise commercially\nexploit the Company Properties or any portion of the Company Properties,\nincluding the Website, (b) you shall not frame or utilize framing techniques\nto enclose any trademark, logo, or other Company Properties (including images,\ntext, page layout or form) of the Company; (c) you shall not use any metatags\nor other “hidden text” using Company’s name or trademarks; (d) you shall not\nmodify, translate, adapt, merge, make derivative works of, disassemble,\ndecompile, reverse compile or reverse engineer any part of the Company\nProperties except to the extent the foregoing restrictions are expressly\nprohibited by applicable law; (e) you shall not use any manual or automated\nsoftware, devices or other processes (including but not limited to spiders,\nrobots, scrapers, crawlers, avatars, data mining tools or the like) to\n“scrape” or download data from any web pages contained in the Website (except\nthat we grant the operators of public search engines revocable permission to\nuse spiders to copy materials from the Website for the sole purpose of and\nsolely to the extent necessary for creating publicly available searchable\nindices of the materials, but not caches or archives of such materials); (f)\naccess the Company Properties in order to build a similar or competitive\nwebsite, application or service; (g) except as expressly stated herein, no\npart of the Company Properties may be copied, reproduced, distributed,\nrepublished, downloaded, displayed, posted or transmitted in any form or by\nany means; and (h) you shall not remove or destroy any copyright notices or\nother proprietary markings contained on or in the Company Properties. Any\nfuture release, update or other addition to the Company Properties shall be\nsubject to the Terms. The Company, its suppliers and service providers reserve\nall rights not granted in the Terms. Any unauthorized use of the Company\nProperties terminates the licenses granted by the Company pursuant to the\nTerms.\n\n**Acceptable Use:** It is our goal to provide an enjoyable experience for all\nusers. As a result, when you use the Company Properties, you must follow our\nAcceptable Use Policy, which is incorporated by reference herein. You also may\nnot advocate, encourage or assist any third party in violating our Acceptable\nUse Policy. We may amend this policy from time to time.\n\n**Third-Party Materials:** As a part of the Company Properties, you may have\naccess to materials that are hosted by another party. You agree that it is\nimpossible for the Company to monitor such materials and that you access these\nmaterials at your own risk.\n\n## **Registration**\n\n**Registering Your Account:** In order to access certain features of the\nCompany Properties you may be required to become a Registered User. For\npurposes of the Terms, a “Registered User” is a User who has registered an\naccount on the Website and/or Application(s) (“Account”).\n\n**Registration Data:** In registering for the Services, you agree to (1)\nprovide true, accurate, current and complete information about yourself as\nprompted by the Services’ registration form (the “Registration Data”); and (2)\nmaintain and promptly update the Registration Data to keep it true, accurate,\ncurrent and complete. You represent that you are (1) at least thirteen (13)\nyears old; (2) of legal age to form a binding contract; and (3) not a person\nbarred from using the Company Properties under the laws of the United States,\nyour place of residence or any other applicable jurisdiction. You are\nresponsible for all activities that occur under your Account. You agree that\nyou shall monitor your Account to restrict use by minors, and you will accept\nfull responsibility for any unauthorized use of the Company Properties by\nminors. You may not share your Account or password with anyone, and you agree\nto (1) notify the Company immediately of any unauthorized use of your password\nor any other breach of security; and (2) exit from your Account at the end of\neach session. If you provide any information that is untrue, inaccurate, not\ncurrent or incomplete, or the Company has reasonable grounds to suspect that\nsuch information is untrue, inaccurate, not current or incomplete, the Company\nhas the right to suspend or terminate your Account and refuse any and all\ncurrent or future use of the Company Properties (or any portion thereof). You\nagree not to create an Account using a false identity or information, or on\nbehalf of someone other than yourself. You agree that you shall not have more\nthan one Account at any given time. The Company reserves the right to remove\nor reclaim any usernames at any time and for any reason, including but not\nlimited to, claims by a third party that a username violates the third party’s\nrights. You agree not to create an Account or use the Company Properties if\nyou have been previously removed by the Company, or if you have been\npreviously banned from any of the Company Properties.\n\n**Necessary Equipment and Software:** You must provide all equipment and\nsoftware necessary to connect to the Company Properties, including but not\nlimited to, a mobile device that is suitable to connect with and use the\nCompany Properties, in cases where the Services offer a mobile component. You\nare solely responsible for any fees, including Internet connection or mobile\nfees, that you incur when accessing the Company Properties.\n\n## **Responsibility for Content**\n\n**Types of Content:** You acknowledge that all Content, including the Company\nProperties, is the sole responsibility of the party from whom such Content\noriginated. This means that you, and not the Company, are entirely responsible\nfor all Content that you upload, post, e-mail, transmit or otherwise make\navailable (“Make Available”) through the Company Properties (“Your Content”),\nand other Users of the Company Properties, and not the Company, are similarly\nresponsible for all Content they Make Available through the Company Properties\n(“User Content”).\n\n**No Obligation to Pre-Screen Content:** You acknowledge that the Company has\nno obligation to pre-screen Content (including, but not limited to, Your\nContent and User Content), although the Company reserves the right in its sole\ndiscretion to pre-screen, refuse or remove any Content. By entering into the\nTerms, you hereby provide your irrevocable consent to such monitoring. You\nacknowledge and agree that you have no expectation of privacy concerning the\ntransmission of Your Content, including without limitation chat, text, or\nvoice communications. In the event that the Company pre-screens, refuses or\nremoves any Content, you acknowledge that the Company will do so for the\nCompany’s benefit, not yours. Without limiting the foregoing, the Company\nshall have the right to remove any Content that violates the Terms or is\notherwise objectionable.\n\n**Storage:** Unless expressly agreed to by the Company in writing elsewhere,\nthe Company has no obligation to store any of Your Content that you Make\nAvailable on the Company Properties. The Company has no responsibility or\nliability for the deletion or accuracy of any Content, including Your Content;\nthe failure to store, transmit or receive transmission of Content; or the\nsecurity, privacy, storage, or transmission of other communications\noriginating with or involving use of the Company Properties. Certain Services\nmay enable you to specify the level at which such Services restrict access to\nYour Content. You are solely responsible for applying the appropriate level of\naccess to Your Content. You agree that the Company retains the right to create\nreasonable limits on the Company’s use and storage of the Content, including\nYour Content, such as limits on file size, storage space, processing capacity,\nand similar limits described in the web pages accompanying the Services and as\notherwise determined by the Company in its sole discretion.\n\n## **Ownership**\n\n**Company Properties:** Except with respect to Your Content and User Content,\nyou agree that the Company and its suppliers own all rights, title and\ninterest in the Company Properties. You will not remove, alter or obscure any\ncopyright, trademark, service mark or other proprietary rights notices\nincorporated in or accompanying the Website, the Services, or the Company\nProperties.\n\n**Trademarks:** Company’s stylized name and other related graphics, logos,\nservice marks and trade names used on or in connection with the Company\nProperties or in connection with the Services are the trademarks of the\nCompany and may not be used without permission in connection with any third-\nparty products or services. Other trademarks, service marks and trade names\nthat may appear on or in the Company Properties are the property of their\nrespective owners.\n\n**Other Content:** Except with respect to Your Content, you agree that you\nhave no right or title in or to any Content that appears on or in the Company\nProperties.\n\n**Your Content:** The Company does not claim ownership of Your Content.\nHowever, when you as a User post or publish Your Content on or in the Company\nProperties, you represent that you own and/or have the rights to grant the\nlicense below in “License to Your Content” Section for Your Content.\n\n**License to Your Content:** Subject to any applicable account settings that\nyou select, you grant the Company a fully paid, royalty-free, perpetual,\nirrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable\nright (including any moral rights) and license to use, license, distribute,\nreproduce, modify, adapt, publicly perform, and publicly display, Your Content\n(in whole or in part) and/or to incorporate it in other works in any form,\nmedia or technology now known or later developed, for the purposes of\noperating and providing the Company Properties to you and to our other Users.\nBefore that scares you off, keep reading. We know these rights seem broad, but\nwe are trying to cover all of the use cases for Your Content in one sentence –\notherwise, this Agreement would be even longer. Don’t worry – this does not\nmean that all Content you provide us will be made publicly available. We will\nuse Your Content in accordance with the settings in which you submitted such\nContent, as detailed under our Privacy Policy . To be clear, if Your Content\nis a journal entry or page, the default is private to you. Please remember\nthat other Users may search for, see, use, and reproduce any of Your Content\nthat you “publish” on the Company Properties. You warrant that the holder of\nany worldwide intellectual property right, including moral rights, in Your\nContent, has completely and effectively waived all such rights and validly and\nirrevocably granted to you the right to grant the license stated above. You\nagree that you, not the Company, are responsible for all of Your Content that\nyou Make Available on or in the Company Properties.\n\n**Username:** Notwithstanding anything contained herein to the contrary, by\nsubmitting Your Content to any forums, comments or any other area on the\nCompany Properties, you hereby expressly permit the Company to identify you by\nyour username (which may be a pseudonym) as the contributor of Your Content in\nany publication in any form, media or technology now known or later developed\nin connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge\nand agree that you shall have no ownership or other property interest in your\nAccount, and you further acknowledge and agree that all rights in and to your\nAccount are and shall forever be owned by and inure to the benefit of the\nCompany.\n\n**Your Profile:** Any Content posted by you in your profile may not contain\nnudity, violence, sexually explicit, or offensive subject matter. You may not\npost or submit for print services a photograph of another person without that\nperson’s permission.\n\n**Feedback:** You agree that submission of any ideas, suggestions, documents,\nand/or proposals to the Company through its suggestion, feedback, wiki, forum\nor similar pages (“Feedback”) is at your own risk and that the Company has no\nobligations (including without limitation obligations of confidentiality) with\nrespect to such Feedback. You represent and warrant that you have all rights\nnecessary to submit the Feedback. You hereby grant to the Company a fully\npaid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and\nfully sublicensable right and license to use, reproduce, perform, display,\ndistribute, adapt, modify, re-format, create derivative works of, and\notherwise commercially or non-commercially exploit in any manner, any and all\nFeedback, and to sublicense the foregoing rights, in connection with the\noperation and maintenance of the Company Properties.\n\n**Investigations:** The Company may, but is not obligated to, monitor or\nreview the Company Properties and Content at any time. Without limiting the\nforegoing, the Company shall have the right, in its sole discretion, to remove\nany of Your Content for any reason (or no reason), including if such Content\nviolates the Terms or any applicable law. Although the Company does not\ngenerally monitor user activity occurring in connection with the Company\nProperties or Content, if the Company becomes aware of any possible violations\nby you of any provision of the Terms, the Company reserves the right to\ninvestigate such violations, and the Company may, at its sole discretion,\nimmediately terminate your license to use the Company Properties, or change,\nalter or remove Your Content, in whole or in part, without prior notice to\nyou.\n\n## **Interactions with Other Users**\n\n**User Responsibility:** You are solely responsible for your interactions with\nother Users of the Services and any other parties with whom you interact\nthrough the Services; provided, however, that the Company reserves the right,\nbut has no obligation, to intercede in such disputes. You agree that the\nCompany will not be responsible for any liability incurred as the result of\nsuch interactions.\n\n**Content Provided by Other Users:** The Company Properties may contain User\nContent provided by other Users. The Company is not responsible for and does\nnot control User Content. The Company has no obligation to review or monitor,\nand does not approve, endorse or make any representations or warranties with\nrespect to User Content. You use all User Content and interact with other\nUsers at your own risk.\n\n## **Third-Party Services**\n\n**Third-Party Websites & Ads:** The Company Properties may contain links to\nthird-party websites (“Third-Party Websites”) and advertisements for third\nparties (collectively, “Third-Party Websites & Ads”). When you click on a link\nto a Third-Party Website or Ad, we will not warn you that you have left the\nCompany Properties and are subject to the terms and conditions (including\nprivacy policies) of another website or destination. Such Third-Party Websites\nare not under the control of the Company. The Company is not responsible for\nany Third-Party Websites & Ads. The Company provides these Third-Party\nWebsites & Ads only as a convenience and does not review, approve, monitor,\nendorse, warrant, or make any representations with respect to Third-Party\nWebsites & Ads, or their products or services. You use all links in Third-\nParty Websites & Ads at your own risk. When you leave our Website, our Terms\nand policies no longer govern. You should review applicable terms and\npolicies, including privacy and data gathering practices, of any Third-Party\nWebsites, and should make whatever investigation you feel necessary or\nappropriate before proceeding with any transaction with any third party.\n\n**App Stores:** You acknowledge and agree that the availability of the\nApplication and the Services is dependent on the third party from which you\nreceived the Application license, e.g., the Apple iPhone or Android app stores\n(“App Store”). You acknowledge that the Terms are between you and the Company\nand not with the App Store. The Company, not the App Store, is solely\nresponsible for the Company Properties, including the Application, the content\nthereof, maintenance, support services, and warranty therefor, and addressing\nany claims relating thereto (e.g., product liability, legal compliance or\nintellectual property infringement). In order to use the Application, you must\nhave access to a wireless network, and you agree to pay all fees associated\nwith such access. You also agree to pay all fees (if any) charged by the App\nStore in connection with the Company Properties, including the Application.\nYou agree to comply with, and your license to use the Application is\nconditioned upon your compliance with, all applicable third-party terms of\nagreement (e.g., the App Store’s terms and policies) when using the Company\nProperties, including the Application. You acknowledge that the App Store (and\nits subsidiaries) are third-party beneficiaries of the Terms and will have the\nright to enforce them.\n\n## **Fees and Purchase Terms**\n\n**General Purpose of Terms: Sale of Service, not Software:** The purpose of\nthe Terms is for you to secure access to the Services. All fees set forth\nwithin and paid by you under the Terms shall be considered solely in\nfurtherance of this purpose. In no way are these fees paid considered payment\nfor the sale, license, or use of the Company’s Software, and, furthermore, any\nuse of the Company’s Software by you in furtherance of the Terms will be\nconsidered merely in support of the purpose of the Terms.\n\n**Payment:** You agree to pay all fees or charges to your Account in\naccordance with the fees, charges and billing terms in effect at the time a\nfee or charge is due and payable. Currently, all payments are made through the\nApplication and/or the Website. You may be required to provide the Company\nwith a valid credit card (Visa, MasterCard, or any other issuer accepted by\nus) or PayPal account (“Payment Provider”). Your Payment Provider agreement\ngoverns your use of the designated credit card or PayPal account, and you must\nrefer to that agreement and not the Terms to determine your rights and\nliabilities. By providing the Company with your credit card number or PayPal\naccount and associated payment information, you agree that the Company is\nauthorized to immediately invoice your Account for all fees and charges due\nand payable to the Company hereunder and that no additional notice or consent\nis required. You agree to immediately notify the Company of any change in your\nbilling address or the credit card or PayPal account used for payment\nhereunder. The Company reserves the right at any time to change its prices and\nbilling methods, either immediately upon posting on the Company Properties or\nby e-mail delivery to you. In the course of your use of the Company’s\nSoftware, the Company and its third party payment service provider may receive\nand implement updated credit card information from your credit card issuer in\norder to prevent your subscription from being interrupted by an outdated or\ninvalid card. This disbursement of the updated credit card information is\nprovided to the Company and the Company’s third party payment service provider\nat the sole election of your credit card issuer. Your credit card issuer may\ngive you the right to opt-out of the update service. Should you desire to do\nso, please contact your credit card issuer.\n\n**Service Subscription Fees:** You will be responsible for payment of the\napplicable fee for any Services (each, a “Service Subscription Fee”) at the\ntime you upgrade to a premium subscription and/or purchase access to a paid\nService (each, a “Service Commencement Date”). Except as set forth in the\nTerms, all fees for the Services are non-refundable. No contract will exist\nbetween you and the Company for the Services until the Company accepts your\norder by a confirmatory e-mail or other appropriate means of communication.\n\n**Taxes:** The Company’s fees are net of any applicable Sales Tax. If any\nServices, or payments for any Services, under the Terms are subject to Sales\nTax in any jurisdiction and you have not remitted the applicable Sales Tax to\nthe Company, you will be responsible for the payment of such Sales Tax and any\nrelated penalties or interest to the relevant tax authority, and you will\nindemnify the Company for any liability or expense we may incur in connection\nwith such Sales Taxes. Upon our request, you will provide us with official\nreceipts issued by the appropriate taxing authority, or other such evidence\nthat you have paid all applicable taxes. For purposes of this section, “Sales\nTax” shall mean any sales or use tax, and any other tax measured by sales\nproceeds, that the Company is permitted to pass to its customers, that is the\nfunctional equivalent of a sales tax where the applicable taxing jurisdiction\ndoes not otherwise impose a sales or use tax.\n\n**Withholding Taxes:** You agree to make all payments of fees to the Company\nfree and clear of, and without reduction for, any withholding taxes. Any such\ntaxes imposed on payments of fees to the Company will be your sole\nresponsibility, and you will provide the Company with official receipts issued\nby the appropriate taxing authority, or such other evidence as we may\nreasonably request, to establish that such taxes have been paid.\n\n**Automatic Renewal.** Unless otherwise specified by the Company, your\nsubscription will continue indefinitely until terminated in accordance with\nthe Terms. After your initial subscription period, and again after any\nsubsequent subscription period, your subscription will automatically commence\non the first day following the end of such period (each a “Renewal\nCommencement Date”) and continue for an additional equivalent period, at the\nCompany’s then-current price for such subscription. You agree that your\nAccount will be subject to this automatic renewal feature unless you cancel\nyour subscription at any time prior to the Renewal Commencement Date. If you\ncancel your subscription, you may use your subscription until the end of your\nthen-current subscription term; your subscription will not be renewed after\nyour then-current term expires. However, you will not be eligible for a\nprorated refund of any portion of the subscription fee paid for the then-\ncurrent subscription period. By subscribing, you authorize the Company to\ncharge your Payment Provider now, and again at the beginning of any subsequent\nsubscription period. Upon renewal of your subscription, if the Company does\nnot receive payment from your Payment Provider, (i) you agree to pay all\namounts due on your Account upon demand, and/or (ii) you agree that the\nCompany may either terminate or suspend your subscription and continue to\nattempt to charge your Payment Provider until payment is received (upon\nreceipt of payment, your Account will be activated and for purposes of\nautomatic renewal, your new subscription commitment period will begin as of\nthe day payment was received).\n\n**Free Trials:** Any free trial or other promotion that provides Registered\nUser level access to the Services must be used within the specified time of\nthe trial. At the end of the trial period, your use of that Service will\nexpire and any further use of the Service is prohibited unless you pay the\napplicable subscription fee. If indicated accordingly, the free trial may be\nfollowed by Automatic Renewal as defined in the previous section.\n\n**Other Promotions:** We may run promotional offers from time to time on the\nWebsite. The terms of any such promotion will be posted on the Website. Unless\notherwise indicated, we may establish and modify, in our sole discretion, the\nterms of such offer and end such offer at any point.\n\n**Gifting:** “Gift Subscriptions” are pre-paid memberships to any Company\nProperties. A person who purchases the gift is referred to in these Terms as\nthe “Giftor”. A person who receives and redeems a Gift Subscription to the\nCompany Properties is referred to in these terms as the “Recipient”. Gift\nSubscriptions are paid for as a one-off upfront payment. Once bought, the\nGiftor will receive an Order confirmation and receipt. Unless otherwise\nspecified by the Company, the Giftor will be responsible for sending the Gift\nSubscription to the Recipient. Only if so specified by the Company at the time\nof purchase, the Company Gift Subscription will be sent to the Recipient on\nthe Giftor’s specified date. Gifting codes can only be used once in the\ncountry for which they were purchased and cannot be redeemed for cash, resold\nor combined with any other offers, including free trial. Please note that\ngifting codes cannot be redeemed if the Recipient has already purchased a\nsubscription through the Apple iTunes Store or our iPhone application, or the\nGoogle Play Store or our Android application. We will automatically bill the\nPayment Method you provided for any purchased Gift Subscriptions at the time\nof purchase, not delivery. There are no refunds or other credits for Gift\nSubscription that are not redeemed. Company may notify the Recipient prior to\nthe end of the Gift Subscription that the gift period is about to expire.\nCompany is not responsible if a Gift Subscription is lost, stolen or used\nwithout permission.\n\n**Disputes:** You must notify us in writing within seven (7) days after\nreceiving your credit card statement, if you dispute any of our charges on\nthat statement or such dispute will be deemed waived. Billing disputes should\nbe notified to the following email address: hello@triumphhq.com\n\n**Indemnification:** You agree to indemnify and hold the Company, its parents,\nsubsidiaries, affiliates, officers, employees, agents, partners and licensors\n(collectively, the “Company Parties”) harmless from any losses, costs,\nliabilities and expenses (including reasonable attorneys’ fees) relating to or\narising out of: (a) Your Content; (b) your use of, or inability to use, the\nCompany Properties; (c) your violation of the Terms; (d) your violation of any\nrights of another party, including any Users; or (e) your violation of any\napplicable laws, rules or regulations. The Company reserves the right, at its\nown cost, to assume the exclusive defense and control of any matter otherwise\nsubject to indemnification by you, in which event you will fully cooperate\nwith the Company in asserting any available defenses. You agree that the\nprovisions in this section will survive any termination of your Account, the\nTerms or your access to the Company Properties.\n\n## **Disclaimer of Warranties.**\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND\nTHE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS,\nWITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES,\nREPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1)\nTHE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE\nCOMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3)\nTHE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE\nACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE\nCORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY\nPROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE\nFOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR\nCOMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR\nANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS.\nCOMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO\nSERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION\nAND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR\nTHROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE\nHEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with\nwhich its users may experiment. Such features or tools are offered solely for\nexperimental purposes and without any warranty of any kind, and may be\nmodified or discontinued at THE Company’s sole discretion. The provisions of\nthis section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE\nCOMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY\nPARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF\nEXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS\nENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF\nYOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY\nPROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY\nTHE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## **Limitation of Liability.**\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL\nCOMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY\nPROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF\nUSE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY\nOR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM\nANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY\nPROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR\nINABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR\nSERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED\nINTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION\nOF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON\nTHE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY\nPROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING\nNEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:** UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE\nLIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF\nYOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU\nFIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE\nSUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S\nSOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE\nTIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING,\nBUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR\nPERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE\nFUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE\nABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE\nADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s\npolicy to terminate membership privileges of any User who repeatedly infringes\ncopyright upon prompt notification to the Company by the copyright owner or\nthe copyright owner’s legal agent. Without limiting the foregoing, if you\nbelieve that your work has been copied and posted on the Company Properties in\na way that constitutes copyright infringement, please provide our Copyright\nAgent with the following information: (1) an electronic or physical signature\nof the person authorized to act on behalf of the owner of the copyright\ninterest; (2) a description of the copyrighted work that you claim has been\ninfringed; (3) a description of the location on the Company Properties of the\nmaterial that you claim is infringing; (4) your address, telephone number and\ne-mail address; (5) a written statement by you that you have a good faith\nbelief that the disputed use is not authorized by the copyright owner, its\nagent or the law; and (6) a statement by you, made under penalty of perjury,\nthat the above information in your notice is accurate and that you are the\ncopyright owner or authorized to act on the copyright owner’s behalf. Contact\ninformation for the Company’s Copyright Agent for notice of claims of\ncopyright infringement is as follows: hello@triumphhq.com\n\n## **Term and Termination.**\n\n**Term:** The Terms commence on the date when you accept them (as described in\nthe preamble above) and remain in full force and effect while you use the\nCompany Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company\nProperties prior to the date you accepted the Terms, you hereby acknowledge\nand agree that the Terms commenced on the date you first used the Company\nProperties (whichever is earlier) and will remain in full force and effect\nwhile you use the Company Properties, unless earlier terminated in accordance\nwith the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for\nthe Company Properties, we may suspend, modify or terminate any of the\nServices or Company Properties at any time. If you become a paid user, you\nwill have thirty (30) days from the Service Commencement Date, or any Renewal\nCommencement Date, for any Services hereunder, to cancel such Service, in\nwhich case the Company will refund your Service Subscription Fee, if already\npaid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set\nforth above, the Service Subscription Fee for any Service shall be non-\nrefundable. If timely payment cannot be charged to your Payment Provider for\nany reason, if you have materially breached any provision of the Terms, or if\nthe Company is required to do so by law (e.g., where the provision of the\nWebsite, the Application, the Software or the Services is, or becomes,\nunlawful), the Company has the right to suspend or terminate any Services\nprovided to you. You agree that all terminations for cause shall be made in\nthe Company’s sole discretion and that the Company shall not be liable to you\nor any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services\nprovided by the Company, you may do so by (a) notifying the Company at any\ntime and (b) closing your Account for all of the Services that you use. Your\nnotice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of\naccess to such Service and barring of further use of the Service. Termination\nof all Services may also include deletion of your password and all related\ninformation, files and Content associated with or inside your Account (or any\npart thereof), including Your Content. Upon termination of any Service, your\nright to use such Service will automatically terminate immediately. You\nunderstand that any termination of Services may involve deletion of Your\nContent associated therewith from our live databases. The Company will not\nhave any liability whatsoever to you for any suspension or termination,\nincluding for deletion of Your Content. All provisions of the Terms which by\ntheir nature should survive, shall survive termination of Services, including\nwithout limitation, ownership provisions, warranty disclaimers, and limitation\nof liability.\n\n## **Remedies**\n\n**Violations:** If the Company becomes aware of any possible violations by you\nof the Terms, the Company reserves the right to investigate such violations.\nIf, as a result of the investigation, the Company believes that criminal\nactivity has occurred, the Company reserves the right to refer the matter to,\nand to cooperate with, any and all applicable legal authorities. The Company\nis entitled, except to the extent prohibited by applicable law, to disclose\nany information or materials on or in the Company Properties, including Your\nContent, in the Company’s possession in connection with your use of the\nCompany Properties, to (1) comply with applicable laws, legal process or\ngovernmental request; (2) enforce the Terms, (3) respond to any claims that\nYour Content violates the rights of third parties, (4) respond to your\nrequests for customer service, or (5) protect the rights, property or personal\nsafety of the Company, its Users or the public, and all enforcement or other\ngovernment officials, as the Company in its sole discretion believes to be\nnecessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion,\nthat you have breached any portion of the Terms, or have otherwise\ndemonstrated conduct inappropriate for the Company Properties, the Company\nreserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company)\nthat you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company\nProperties;\n\n– Discontinue your registration(s) with the any of the Company Properties,\nincluding any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law\nenforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to\naccess the Company Properties, or any other Company community is discontinued\nby the Company due to your violation of any portion of the Terms or for\nconduct otherwise inappropriate for the community, then you agree that you\nshall not attempt to re-register with or access the Company Properties or any\nCompany community through use of a different member name or otherwise, and you\nacknowledge that you will not be entitled to receive a refund for fees related\nto those Company Properties to which your access has been terminated. In the\nevent that you violate the immediately preceding sentence, the Company\nreserves the right, in its sole discretion, to immediately take any or all of\nthe actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries\naround the world and may contain references to Services and Content that are\nnot available in your country. These references do not imply that the Company\nintends to announce such Services or Content in your country. The Company\nProperties are controlled and offered by the Company from its facilities in\nthe United States of America. The Company makes no representations that the\nCompany Properties are appropriate or available for use in other locations.\nThose who access or use the Company Properties from other jurisdictions do so\nat their own volition and are responsible for compliance with local law.\n\n## **General Provisions**\n\n**Electronic Communications:** The communications between you and the Company\nuse electronic means, whether you visit the Company Properties or send the\nCompany e-mails, or whether the Company posts notices on the Company\nProperties or communicates with you via e-mail. For contractual purposes, you\n(1) consent to receive communications from the Company in an electronic form;\nand (2) agree that all terms and conditions, agreements, notices, disclosures,\nand other communications that the Company provides to you electronically\nsatisfy any legal requirement that such communications would satisfy if it\nwere to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from\nclaims, demands, any and all losses, damages, rights, and actions of any kind,\nincluding personal injuries, death, and property damage, that is either\ndirectly or indirectly related to or arises from your use of the Company\nProperties, including but not limited to, any interactions with or conduct of\nother Users or third-party websites of any kind arising in connection with or\nas a result of the Terms or your use of the Company Properties. If you are a\nCalifornia resident, you hereby waive California Civil Code Section 1542,\nwhich states, “A general release does not extend to claims which the creditor\ndoes not know or suspect to exist in his favor at the time of executing the\nrelease, which, if known by him must have materially affected his settlement\nwith the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not\nbe assigned, subcontracted, delegated or otherwise transferred by you without\nthe Company’s prior written consent, and any attempted assignment,\nsubcontract, delegation, or transfer in violation of the foregoing will be\nnull and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to\nperform resulting from causes outside its reasonable control, including, but\nnot limited to, acts of God, war, terrorism, riots, embargos, acts of civil or\nmilitary authorities, fire, floods, accidents, strikes or shortages of\ntransportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms,\nplease contact the Company by emailing us at hello@triumphhq.com. We will do\nour best to address your concerns. If you feel that your complaint has been\naddressed incompletely, we invite you to let us know for further\ninvestigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION\nARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT\nMUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES.\nOTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## **Dispute Resolution**\n\nAny claim or dispute (excluding claims for injunctive or other equitable\nrelief as set forth below) in connection with the Terms where the total amount\nof the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may\nbe resolved in a cost effective manner through binding non-appearance-based\narbitration, at the option of the party seeking relief. Such arbitration shall\nbe initiated through an established alternative dispute resolution provider\n(“ADR Provider”) that offers arbitration as set forth in this section and\nunder the rules of such ADR Provider, except to the extent such rules are in\nconflict with the Terms. The party demanding arbitration will propose an ADR\nProvider and the other party shall not unreasonably withhold consent to use\nsuch ADR Provider. The ADR Provider and the parties must comply with the\nfollowing rules: (1) the arbitration shall be conducted by telephone, online\nand/or be solely based on written submissions, the specific manner shall be\nchosen by the party initiating the arbitration; (2) all arbitration\nproceedings shall be held in English; (3) the arbitration shall not involve\nany personal appearance by the parties or witnesses unless otherwise mutually\nagreed to by the parties; and (4) any judgment on the award rendered by the\narbitrator may be entered in any court of competent jurisdiction. Each party\nshall bear its own costs (including attorney fees) and disbursements arising\nout of the arbitration, and shall pay an equal share of the fees and costs of\nthe ADR Provider. Notwithstanding the foregoing, the Company may seek\ninjunctive or other equitable relief to protect its intellectual property\nrights in any court of competent jurisdiction. Please note that the laws of\nthe jurisdiction where you are located may be different from California law,\nincluding the laws governing what can legally be sold, bought, exported,\noffered or imported. You shall always comply with all the international and\ndomestic laws, ordinances, regulations and statutes that are applicable to\nyour use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall\nbe referred to and finally determined by binding and confidential arbitration.\nArbitration shall be subject to the Federal Arbitration Act and not any state\narbitration law. The arbitration shall be conducted before one commercial\narbitrator with substantial experience in resolving commercial contract\ndisputes from the American Arbitration Association (“AAA”). As modified by the\nTerms, and unless otherwise agreed upon by the parties in writing, the\narbitration will be governed by the AAA’s Commercial Arbitration Rules and, if\nthe arbitrator deems them applicable, the Supplementary Procedures for\nConsumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your\nrights EXCEPT for matters that may be taken to small claims court. Your rights\nwill be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are\nentitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND\nMORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as\nenforceable as any court order and are subject to VERY LIMITED REVIEW BY A\nCOURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT\nBY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND\nNOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE\nPROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S\nCLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS\nPROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you\nare able to demonstrate that the costs of arbitration will be prohibitive as\ncompared to costs of litigation, the Company will pay as much of your filing\nand hearing fees in connection with the arbitration as the arbitrator deems\nnecessary to prevent the arbitration from being cost-prohibitive as compared\nto the cost of litigation; (iv) the Company also reserves the right in its\nsole and exclusive discretion to assume responsibility for all of the costs of\nthe arbitration; (v) the arbitrator shall honor claims of privilege and\nprivacy recognized at law; (vi) the arbitration shall be confidential, and\nneither you nor we may disclose the existence, content or results of any\narbitration, except as may be required by law or for the purposes of\nenforcement of the arbitration award; (vii) the arbitrator may award any\nindividual relief or individual remedies that are permitted by applicable law;\nand (viii) each side pays its own attorneys’ fees and expenses unless there is\na statutory provision that requires the prevailing party to be paid its fees\nand litigation expenses, and then in such instance, the fees and costs awarded\nshall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in\nthe English language. Any written evidence originally in a language other than\nEnglish will be submitted in English translation accompanied by the original\nor true copy thereof. The English language version will control. The\narbitrator shall issue a written award and statement of decision describing\nthe essential findings and conclusions on which the award is based, including\nthe calculation of any damages awarded. The arbitrator will not have authority\nto award damages in excess of the amount, or other than the types, allowed by\nSection 12 of the Terms. Judgment on the award of the arbitrator may be\nentered by any court of competent jurisdiction. The arbitrator also shall be\nauthorized to grant any temporary, preliminary or permanent equitable remedy\nor relief it deems just and equitable and within the scope of the Terms,\nincluding, without limitation, an injunction or order for specific\nperformance. The arbitration award shall be final and binding upon the parties\nwithout appeal or review except as permitted by California law or United\nStates federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an\nindividual action in small claims court. Further, claims of defamation,\nviolation of the Computer Fraud and Abuse Act, and infringement or\nmisappropriation of the other party’s patent, copyright, trademark, or trade\nsecret shall not be subject to this arbitration agreement. Such claims shall\nbe exclusively brought in the state or federal courts located in Los Angeles\nCounty, California. Additionally, notwithstanding this agreement to arbitrate,\neither party may seek emergency equitable relief before the state or federal\ncourts located in Los Angeles County, California, in order to maintain the\nstatus quo pending arbitration, and hereby agree to submit to the exclusive\npersonal jurisdiction of the courts located within Los Angeles County,\nCalifornia for such purpose. A request for interim measures shall not be\ndeemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a\nclass or collective basis), if any part of this arbitration provision is\ndeemed to be invalid, unenforceable, or illegal, or otherwise conflicts with\nthe Rules and Procedures, then the balance of this arbitration provision shall\nremain in effect and shall be construed in accordance with its terms as if the\ninvalid, unenforceable, illegal or conflicting provision were not contained\nherein. If, however, either (d)(i) or (ii) is found to be invalid,\nunenforceable or illegal, then the entirety of this arbitration provision\nshall be null and void, and neither you nor the Company shall be entitled to\narbitration. If for any reason, a claim proceeds in court rather than in\narbitration, the dispute shall be exclusively brought in state or federal\ncourt in Los Angeles County, California. By using the Company Properties in\nany manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an\narbitration claim, you may call AAA at 800-778-7879 or visit the AAA website\nat http://www.adr.org.\n\n**Governing Law:** The Terms and any action related thereto will be governed\nand interpreted by and under the laws of the State of California, USA,\nconsistent with the Federal Arbitration Act, without giving effect to any\nprinciples that provide for the application of the law of another\njurisdiction. The United Nations Convention on Contracts for the International\nSale of Goods does not apply to these Terms.\n\n**Choice of Language:** It is the express wish of the parties that the Terms\nand all related documents have been drawn up in English. C’est law volone\nexpresse des parties que la presente convention ainsi que les documents qui\ns’y rattacent soient rediges en anglais.\n\n**Notice:** Where the Company requires that you provide an e-mail address, you\nare responsible for providing the Company with your most current e-mail\naddress. In the event that the last e-mail address you provided to the Company\nis not valid, or for any reason is not capable of delivering to you any\nnotices required/ permitted by the Terms, the Company’s dispatch of the e-mail\ncontaining such notice will nonetheless constitute effective notice. You may\ngive notice to the Company at the following address: RCCI Group, Inc., 7011\nSemrad Rd, West Hills, CA 91307. Such notice shall be deemed given when\nreceived by the Company by letter delivered by nationally recognized overnight\ndelivery service or first class postage prepaid mail at the above address.\n\n**Waiver.** Any waiver or failure to enforce any provision of the Terms on one\noccasion will not be deemed a waiver of any other provision or of such\nprovision on any other occasion.\n\n**Severability:** If any provision of the Terms is, for any reason, held to be\ninvalid or unenforceable, the other provisions of the Terms will remain\nenforceable, and the invalid or unenforceable provision will be deemed\nmodified so that it is valid and enforceable to the maximum extent permitted\nby law.\n\n**Export Control:** You may not use, export, import, or transfer the Company\nProperties except as authorized by U.S. law, the laws of the jurisdiction in\nwhich you obtained the Company Properties, and any other applicable laws. In\nparticular, but without limitation, the Company Properties may not be exported\nor re-exported (a) into any United States embargoed countries, or (b) to\nanyone on the U.S. Treasury Department’s list of Specially Designated\nNationals or the U.S. Department of Commerce’s Denied Person’s List or Entity\nList. By using the Company Properties, you represent and warrant that (i) you\nare not located in a country that is subject to a U.S. Government embargo, or\nthat has been designated by the U.S. Government as a “terrorist supporting”\ncountry and (ii) you are not listed on any U.S. Government list of prohibited\nor restricted parties. You also will not use the Company Properties for any\npurpose prohibited by U.S. law, including the development, design, manufacture\nor production of missiles, nuclear, chemical or biological weapons. You\nacknowledge and agree that products, services or technology provided by\nCompany are subject to the export control laws and regulations of the United\nStates. You shall comply with these laws and regulations and shall not,\nwithout prior U.S. government authorization, export, re-export, or transfer\nthe Company products, services or technology, either directly or indirectly,\nto any country in violation of such laws and regulations.\n\n**Accessing and Download the Application from iTunes:** The following applies\nto any Application accessed through or downloaded from the Apple App Store\n(“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the\nCompany only, and not Apple, and (ii) the Company, not Apple, is solely\nresponsible for the App Store Sourced Application and content thereof. Your\nuse of the App Store Sourced Application must comply with the App Store Terms\nof Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any\nmaintenance and support services with respect to the App Store Sourced\nApplication.\n\nIn the event of any failure of the App Store Sourced Application to conform to\nany applicable warranty, you may notify Apple, and Apple will refund the\npurchase price for the App Store Sourced Application to you and to the maximum\nextent permitted by applicable law, Apple will have no other warranty\nobligation whatsoever with respect to the App Store Sourced Application. As\nbetween the Company and Apple, any other claims, losses, liabilities, damages,\ncosts or expenses attributable to any failure to conform to any warranty will\nbe the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple\nis not responsible for addressing any claims you have or any claims of any\nthird party relating to the App Store Sourced Application or your possession\nand use of the App Store Sourced Application, including, but not limited to:\n(i) product liability claims; (ii) any claim that the App Store Sourced\nApplication fails to conform to any applicable legal or regulatory\nrequirement; and (iii) claims arising under consumer protection or similar\nlegislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim\nthat the App Store Sourced Application or your possession and use of that App\nStore Sourced Application infringes that third party’s intellectual property\nrights, as between the Company and Apple, the Company, not Apple, will be\nsolely responsible for the investigation, defense, settlement and discharge of\nany such intellectual property infringement claim to the extent required by\nthe Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s\nsubsidiaries, are third-party beneficiaries of the Terms as related to your\nlicense of the App Store Sourced Application, and that, upon your acceptance\nof the terms and conditions of the Terms, Apple will have the right (and will\nbe deemed to have accepted the right) to enforce the Terms as related to your\nlicense of the App Store Sourced Application against you as a third-party\nbeneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all\napplicable third-party terms of agreement when using the App Store Sourced\nApplication.\n\n**Entire Agreement:** The Terms are the final, complete and exclusive\nagreement of the parties with respect to the subject matter hereof and\nsupersedes and merges all prior discussions between the parties with respect\nto such subject matter.\n\n**International Provisions:** The following provisions shall apply only if you\nare located in the countries listed below.\n\n * United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n * Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## **ACCEPTABLE USE POLICY**\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines\napplicable to your use of the services provided by RCCI Group, Inc. for the\nTriumph series of mobile applications, website and related services\n(“Services”). You are responsible for ensuring that your use of the Services,\nincluding any content that you provide, upload, or otherwise make available to\nthe Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any\nillegal, harmful, or offensive use or to transmit, store, display, distribute\nor otherwise make available User Content that is illegal, harmful, or\noffensive. Examples of prohibited use or content include:\n\n**Illegal Activities:** Any activities that violate applicable law, rule, or\nregulation, including advertising, transmitting, or making available gambling\nsites or services or distributing, uploading, downloading, enabling, or\npromoting child pornography.\n\n**Harmful or Fraudulent Activities:** Activities that may be harmful to others\nor our operations, business, or reputation, including offering fraudulent\ngoods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi\nand pyramid schemes, phishing, or pharming), or engaging in other deceptive\npractices.\n\n**Infringing Content:** Content that may infringe, misappropriate, or violate\nthe rights of any third party, such as, but not limited to, copyrights,\ntrademarks, and rights of privacy or publicity.\n\n**Offensive Content:** Obscene, vulgar, or offensive content; defamatory\ncontent; content that harasses, threatens, or abuses other persons or groups;\nsexual content or nudity involving persons under the age of 18; and content\ndepicting non-consensual sex acts.\n\n**Harmful Content:** Content or technology that may damage, interfere with,\nintercept, or expropriate any data, information, program, or systems,\nincluding viruses, malware, Trojan horses, worms, time bombs, corrupted files,\nor cancelbots.\n\n**Fraud or Impersonation:** Impersonate any person or entity, including, but\nnot limited to, the Company personnel, or falsely state or otherwise\nmisrepresent your affiliation with a person or entity.\n\n**Inappropriate Content:** Make available any content that you do not have a\nright to Make Available under any law or under contractual or fiduciary\nrelationships (such as inside information, proprietary and confidential\ninformation learned or disclosed as part of employment relationships or under\nnon-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any\nnetwork, computer or communications system, software application, or network\nor computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:** Accessing or using any System without permission,\nincluding attempting to probe, scan, or test the vulnerability of a System or\nto breach any security, access control or authentication measures used by a\nSystem.\n\n**Interception:** Monitoring of data or traffic on a System without\npermission.\n\n**Falsification of Origin:** Forging TCP-IP packet headers, e-mail headers, or\nany part of a message describing its origin or route. This prohibition does\nnot include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or\ndisrupt the functioning of any of the Services or the servers and networks\nused to provide any Services, including, but not limited to:\n\n**Unauthorized communication:** Making network connections to any users,\nhosts, or networks unless you have permission to communicate with them.\n\n**Monitoring or Crawling:** Monitoring or crawling of a System that impairs or\ndisrupts the System being monitored or crawled.\n\n**Denial of Service (DoS):** Sending a target communications requests in a\nmanner such that the target either cannot respond to legitimate traffic or\nresponds so slowly that it becomes ineffective.\n\n**Intentional Interference:** Interfering with the proper functioning of any\nSystem, including any deliberate attempt to overload a system by mail bombing,\nnews bombing, broadcast attacks, or flooding techniques.\n\n**Operation of Certain Network Services.** Operating network services like\nopen proxies, open mail relays, or open recursive domain name servers.\n\n**Avoiding System Restrictions:** Using physical or electronic means to avoid\nany use limitations placed on any System, such as access and storage\nrestrictions.\n\nYou will not use the Services for or any part thereof for any commercial\npurpose, including, but not limited to communicating or facilitating any\ncommercial advertisement or solicitation. In addition, you may not market any\ngoods or services for any business purposes, nor may you reproduce, duplicate,\ncopy, sell, trade, resell or exploit for any commercial purpose any portion of\nthe Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of\nunsolicited commercial or mass e-mail or other messages, promotions,\nadvertising, or solicitations (e.g., “spam”), including commercial advertising\nand informational announcements. You will not alter or obscure mail headers or\nassume a sender’s identity without the sender’s explicit permission. You will\nnot collect replies to messages sent from another internet service provider if\nthose messages violate this Acceptable Use Policy or the policies of that\nprovider.\n\n", "magic-html_content_list": [], "magic-html_success": true, "magic-html_time": 0.06366896629333496, "magic-html_formula_edit_score": 0.0, "magic-html_text_edit_score": 0.9848316283613274, "magic-html_overall_score": 0.4924158141806637, "magic-html_predicted_code": "", "magic-html_predicted_formula": "50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE\nTIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING,\nBUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR\nPERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE\nFUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE\nABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE\nADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s\npolicy to terminate membership privileges of any User who repeatedly infringes\ncopyright upon prompt notification to the Company by the copyright owner or\nthe copyright owner’s legal agent. Without limiting the foregoing, if you\nbelieve that your work has been copied and posted on the Company Properties in\na way that constitutes copyright infringement, please provide our Copyright\nAgent with the following information: (1) an electronic or physical signature\nof the person authorized to act on behalf of the owner of the copyright\ninterest; (2) a description of the copyrighted work that you claim has been\ninfringed; (3) a description of the location on the Company Properties of the\nmaterial that you claim is infringing; (4) your address, telephone number and\ne-mail address; (5) a written statement by you that you have a good faith\nbelief that the disputed use is not authorized by the copyright owner, its\nagent or the law; and (6) a statement by you, made under penalty of perjury,\nthat the above information in your notice is accurate and that you are the\ncopyright owner or authorized to act on the copyright owner’s behalf. Contact\ninformation for the Company’s Copyright Agent for notice of claims of\ncopyright infringement is as follows: hello@triumphhq.com\n\n## **Term and Termination.**\n\n**Term:** The Terms commence on the date when you accept them (as described in\nthe preamble above) and remain in full force and effect while you use the\nCompany Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company\nProperties prior to the date you accepted the Terms, you hereby acknowledge\nand agree that the Terms commenced on the date you first used the Company\nProperties (whichever is earlier) and will remain in full force and effect\nwhile you use the Company Properties, unless earlier terminated in accordance\nwith the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for\nthe Company Properties, we may suspend, modify or terminate any of the\nServices or Company Properties at any time. If you become a paid user, you\nwill have thirty (30) days from the Service Commencement Date, or any Renewal\nCommencement Date, for any Services hereunder, to cancel such Service, in\nwhich case the Company will refund your Service Subscription Fee, if already\npaid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set\nforth above, the Service Subscription Fee for any Service shall be non-\nrefundable. If timely payment cannot be charged to your Payment Provider for\nany reason, if you have materially breached any provision of the Terms, or if\nthe Company is required to do so by law (e.g., where the provision of the\nWebsite, the Application, the Software or the Services is, or becomes,\nunlawful), the Company has the right to suspend or terminate any Services\nprovided to you. You agree that all terminations for cause shall be made in\nthe Company’s sole discretion and that the Company shall not be liable to you\nor any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services\nprovided by the Company, you may do so by (a) notifying the Company at any\ntime and (b) closing your Account for all of the Services that you use. Your\nnotice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of\naccess to such Service and barring of further use of the Service. Termination\nof all Services may also include deletion of your password and all related\ninformation, files and Content associated with or inside your Account (or any\npart thereof), including Your Content. Upon termination of any Service, your\nright to use such Service will automatically terminate immediately. You\nunderstand that any termination of Services may involve deletion of Your\nContent associated therewith from our live databases. The Company will not\nhave any liability whatsoever to you for any suspension or termination,\nincluding for deletion of Your Content. All provisions of the Terms which by\ntheir nature should survive, shall survive termination of Services, including\nwithout limitation, ownership provisions, warranty disclaimers, and limitation\nof liability.\n\n## **Remedies**\n\n**Violations:** If the Company becomes aware of any possible violations by you\nof the Terms, the Company reserves the right to investigate such violations.\nIf, as a result of the investigation, the Company believes that criminal\nactivity has occurred, the Company reserves the right to refer the matter to,\nand to cooperate with, any and all applicable legal authorities. The Company\nis entitled, except to the extent prohibited by applicable law, to disclose\nany information or materials on or in the Company Properties, including Your\nContent, in the Company’s possession in connection with your use of the\nCompany Properties, to (1) comply with applicable laws, legal process or\ngovernmental request; (2) enforce the Terms, (3) respond to any claims that\nYour Content violates the rights of third parties, (4) respond to your\nrequests for customer service, or (5) protect the rights, property or personal\nsafety of the Company, its Users or the public, and all enforcement or other\ngovernment officials, as the Company in its sole discretion believes to be\nnecessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion,\nthat you have breached any portion of the Terms, or have otherwise\ndemonstrated conduct inappropriate for the Company Properties, the Company\nreserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company)\nthat you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company\nProperties;\n\n– Discontinue your registration(s) with the any of the Company Properties,\nincluding any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law\nenforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to\naccess the Company Properties, or any other Company community is discontinued\nby the Company due to your violation of any portion of the Terms or for\nconduct otherwise inappropriate for the community, then you agree that you\nshall not attempt to re-register with or access the Company Properties or any\nCompany community through use of a different member name or otherwise, and you\nacknowledge that you will not be entitled to receive a refund for fees related\nto those Company Properties to which your access has been terminated. In the\nevent that you violate the immediately preceding sentence, the Company\nreserves the right, in its sole discretion, to immediately take any or all of\nthe actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries\naround the world and may contain references to Services and Content that are\nnot available in your country. These references do not imply that the Company\nintends to announce such Services or Content in your country. The Company\nProperties are controlled and offered by the Company from its facilities in\nthe United States of America. The Company makes no representations that the\nCompany Properties are appropriate or available for use in other locations.\nThose who access or use the Company Properties from other jurisdictions do so\nat their own volition and are responsible for compliance with local law.\n\n## **General Provisions**\n\n**Electronic Communications:** The communications between you and the Company\nuse electronic means, whether you visit the Company Properties or send the\nCompany e-mails, or whether the Company posts notices on the Company\nProperties or communicates with you via e-mail. For contractual purposes, you\n(1) consent to receive communications from the Company in an electronic form;\nand (2) agree that all terms and conditions, agreements, notices, disclosures,\nand other communications that the Company provides to you electronically\nsatisfy any legal requirement that such communications would satisfy if it\nwere to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from\nclaims, demands, any and all losses, damages, rights, and actions of any kind,\nincluding personal injuries, death, and property damage, that is either\ndirectly or indirectly related to or arises from your use of the Company\nProperties, including but not limited to, any interactions with or conduct of\nother Users or third-party websites of any kind arising in connection with or\nas a result of the Terms or your use of the Company Properties. If you are a\nCalifornia resident, you hereby waive California Civil Code Section 1542,\nwhich states, “A general release does not extend to claims which the creditor\ndoes not know or suspect to exist in his favor at the time of executing the\nrelease, which, if known by him must have materially affected his settlement\nwith the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not\nbe assigned, subcontracted, delegated or otherwise transferred by you without\nthe Company’s prior written consent, and any attempted assignment,\nsubcontract, delegation, or transfer in violation of the foregoing will be\nnull and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to\nperform resulting from causes outside its reasonable control, including, but\nnot limited to, acts of God, war, terrorism, riots, embargos, acts of civil or\nmilitary authorities, fire, floods, accidents, strikes or shortages of\ntransportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms,\nplease contact the Company by emailing us at hello@triumphhq.com. We will do\nour best to address your concerns. If you feel that your complaint has been\naddressed incompletely, we invite you to let us know for further\ninvestigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION\nARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT\nMUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES.\nOTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## **Dispute Resolution**\n\nAny claim or dispute (excluding claims for injunctive or other equitable\nrelief as set forth below) in connection with the Terms where the total amount\nof the award sought is less than Five Thousand U.S. Dollars (US", "magic-html_predicted_table": "", "magic-html_predicted_text": "Version 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF\nAPPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g.\nwww.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE\n(COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE\nOR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY,\nTHE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”)\nCAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S),\nCLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR\nBROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT\n(1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2)\nYOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU\nHAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF\nTHE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS\nOF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS\nAPPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU\nDO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS\nWEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE\nTERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME\nDURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES\nUNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6\nBELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO\nRESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE\nREMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to\nadditional terms (“Supplemental Terms”) and such Supplemental Terms will\neither be listed in the Terms of Use or will be presented to you for your\nacceptance when you sign up to use the supplemental Service. If the Terms of\nUse are inconsistent with the Supplemental Terms, the Supplemental Terms shall\ncontrol with respect to such Service. The Terms of Use and any applicable\nSupplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created\na [Privacy Policy](http://www.triumphhq.com/privacy-policy/) that describes\nour collection, use and disclosure practices regarding any personal\ninformation that you provide to us. The security of your personal information\nis important to us. While there is no such thing as “perfect security” on the\nInternet, we will take reasonable steps to help ensure the safety of your\npersonal information. However, you understand and agree that such steps do not\nguarantee that the Services are invulnerable to all security breaches or\nimmune from viruses, security threats or other vulnerabilities. We reserve the\nright to cooperate with local, state, provincial and national authorities in\ninvestigations of improper or unlawful activities and this may require the\ndisclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole\ndiscretion at any time. When changes are made, the Company will make a new\ncopy of the Terms of Use available at the Website and/or within the\nApplication and any new Supplemental Terms will be made available from within,\nor through, the affected Service on the Website or within the Application. We\nwill also update the “Last Updated” date at the top of the Terms of Use. If we\nmake any material changes, and you have registered with us to create an\nAccount (as defined in Section 3.1 below), we will also send an e-mail to you\nat the last e-mail address you provided to us pursuant to the Terms. Any\nchanges to the Terms will be effective immediately for new Users of the\nWebsite, the Application and/ or Services and will be effective thirty (30)\ndays after posting notice of such changes on the Website for existing Users,\nprovided that any material changes shall be effective for Users who have an\nAccount with us upon the earlier of thirty (30) days after posting notice of\nsuch changes on the Website or thirty (30) days after dispatch of an e-mail\nnotice of such changes to Registered Users (defined in Section 3.1 below). The\nCompany may require you to provide consent to the updated Terms in a specified\nmanner before further use of the Website, the Application and/ or the Services\nis permitted. If you do not agree to any change(s) after receiving a notice of\nsuch change(s), you shall stop using the Website, the Application and/or the\nServices. Otherwise, your continued use of the Website, the Application and/or\nServices constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK\nTHE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:** We offer you a platform to actualize your potential and live\njoyously. Your use of our platform may involve recording your memories and\nother notes and information, and, if you wish, sharing them. Pretty simple,\nright? You’ll need to access the Website and/or download our Application(s)\nand become a Registered User (see Section 2) to start your own self-\ndevelopment journey, and then you start “writing” and/or “recording”. Based on\nyour subscription level, certain features and functions will be made available\nto you, including the ability to “publish” your entries. Read on and we will\ntell you how this works. Please remember that the following Terms of Use can\nfeel like a legal document because, well, it is a legal document. If you’re\ngoing to invest lots of time in using our Services we recommend you read it,\nmaybe even twice, because we want you to gain comfort and confidence in the\nagreement.\n\n**Use of the Services and Company Properties:** The Application, the Software,\nthe Website, the Services, and the information and content available on the\nWebsite and in the Application and the Services (as these terms are defined\nbelow) (collectively, the “Company Properties”) are protected by copyright\nlaws throughout the world. Subject to the Terms, the Company grants you a\nlimited license to reproduce portions of the Company Properties for the sole\npurpose of using the Services for your personal or internal business purposes.\nUnless otherwise specified by the Company in a separate license, your right to\nuse any Company Properties is subject to the Terms.\n\n**Application License:** Subject to your compliance with the Terms, the\nCompany grants you a limited non-exclusive, non-transferable, non-\nsublicensable, revocable license to download, install and use a copy of the\nApplication on a single mobile device or computer that you own or control and\nto run such copy of the Application solely for your own personal or internal\nbusiness purposes. Furthermore, with respect to any Application accessed\nthrough or downloaded from the Apple App Store (an “App Store Sourced\nApplication”), you will only use the App Store Sourced Application (i) on an\nApple-branded product that runs the iOS (Apple’s proprietary operating system)\nand (ii) as permitted by the “Usage Rules” set forth in the Apple App Store\nTerms of Service.\n\n**Company Software:** Use of any software and associated documentation, other\nthan the Application, that is made available via the Website or the Services\n(“Software”) is governed by the terms of the license agreement that\naccompanies or is included with the Software, or by the license agreement\nexpressly stated on the Website page(s) accompanying the Software. These\nlicense terms may be posted with the Software downloads or at the Website page\nwhere the Software can be accessed. You shall not use, download or install any\nSoftware that is accompanied by or includes a license agreement unless you\nagree to the terms of such license agreement. At no time will the Company\nprovide you with any tangible copy of our Software. The Company shall deliver\naccess to the Software via electronic transfer or download and shall not use\nor deliver any tangible media in connection with the (a) delivery,\ninstallation, updating or problem resolution of any Software (including any\nnew releases); or (b) delivery, correction or updating of documentation. For\nthe purposes of this section tangible media shall include, but not be limited\nto, any tape disk, compact disk, card, flash drive, or any other comparable\nphysical medium. Unless the accompanying license agreement expressly allows\notherwise, any copying or redistribution of the Software is prohibited,\nincluding any copying or redistribution of the Software to any other server or\nlocation, or redistribution or use on a service bureau basis. If there is any\nconflict between the Terms and the license agreement, the license agreement\nshall take precedence in relation to that Software (except as provided in the\nfollowing sentence). If the Software is a pre-release version, then,\nnotwithstanding anything to the contrary included within an accompanying\nlicense agreement, you are not permitted to use or otherwise rely on the\nSoftware for any commercial or production purposes. If no license agreement\naccompanies use of the Software, use of the Software will be governed by the\nTerms. Subject to your compliance with the Terms, the Company grants you a\nnon-assignable, non-transferable, non-sublicensable, revocable non-exclusive\nlicense to use the Software for the sole purpose of enabling you to use the\nServices in the manner permitted by the Terms. Some Software may be offered\nunder an open source license that we will make available to you. There may be\nprovisions in the open source license that expressly override some of these\nterms.\n\n**Updates:** You understand that the Company Properties are evolving. As a\nresult, the Company may require you to accept updates to the Company\nProperties that you have installed on your computer or mobile device. You\nacknowledge and agree that the Company may update the Company Properties with\nor without notifying you. You may need to update third-party software from\ntime to time in order to use the Company Properties.\n\n**Certain Restrictions:** The rights granted to you in the Terms are subject\nto the following restrictions: (a) you shall not license, sell, rent, lease,\ntransfer, assign, reproduce, distribute, host or otherwise commercially\nexploit the Company Properties or any portion of the Company Properties,\nincluding the Website, (b) you shall not frame or utilize framing techniques\nto enclose any trademark, logo, or other Company Properties (including images,\ntext, page layout or form) of the Company; (c) you shall not use any metatags\nor other “hidden text” using Company’s name or trademarks; (d) you shall not\nmodify, translate, adapt, merge, make derivative works of, disassemble,\ndecompile, reverse compile or reverse engineer any part of the Company\nProperties except to the extent the foregoing restrictions are expressly\nprohibited by applicable law; (e) you shall not use any manual or automated\nsoftware, devices or other processes (including but not limited to spiders,\nrobots, scrapers, crawlers, avatars, data mining tools or the like) to\n“scrape” or download data from any web pages contained in the Website (except\nthat we grant the operators of public search engines revocable permission to\nuse spiders to copy materials from the Website for the sole purpose of and\nsolely to the extent necessary for creating publicly available searchable\nindices of the materials, but not caches or archives of such materials); (f)\naccess the Company Properties in order to build a similar or competitive\nwebsite, application or service; (g) except as expressly stated herein, no\npart of the Company Properties may be copied, reproduced, distributed,\nrepublished, downloaded, displayed, posted or transmitted in any form or by\nany means; and (h) you shall not remove or destroy any copyright notices or\nother proprietary markings contained on or in the Company Properties. Any\nfuture release, update or other addition to the Company Properties shall be\nsubject to the Terms. The Company, its suppliers and service providers reserve\nall rights not granted in the Terms. Any unauthorized use of the Company\nProperties terminates the licenses granted by the Company pursuant to the\nTerms.\n\n**Acceptable Use:** It is our goal to provide an enjoyable experience for all\nusers. As a result, when you use the Company Properties, you must follow our\nAcceptable Use Policy, which is incorporated by reference herein. You also may\nnot advocate, encourage or assist any third party in violating our Acceptable\nUse Policy. We may amend this policy from time to time.\n\n**Third-Party Materials:** As a part of the Company Properties, you may have\naccess to materials that are hosted by another party. You agree that it is\nimpossible for the Company to monitor such materials and that you access these\nmaterials at your own risk.\n\n## **Registration**\n\n**Registering Your Account:** In order to access certain features of the\nCompany Properties you may be required to become a Registered User. For\npurposes of the Terms, a “Registered User” is a User who has registered an\naccount on the Website and/or Application(s) (“Account”).\n\n**Registration Data:** In registering for the Services, you agree to (1)\nprovide true, accurate, current and complete information about yourself as\nprompted by the Services’ registration form (the “Registration Data”); and (2)\nmaintain and promptly update the Registration Data to keep it true, accurate,\ncurrent and complete. You represent that you are (1) at least thirteen (13)\nyears old; (2) of legal age to form a binding contract; and (3) not a person\nbarred from using the Company Properties under the laws of the United States,\nyour place of residence or any other applicable jurisdiction. You are\nresponsible for all activities that occur under your Account. You agree that\nyou shall monitor your Account to restrict use by minors, and you will accept\nfull responsibility for any unauthorized use of the Company Properties by\nminors. You may not share your Account or password with anyone, and you agree\nto (1) notify the Company immediately of any unauthorized use of your password\nor any other breach of security; and (2) exit from your Account at the end of\neach session. If you provide any information that is untrue, inaccurate, not\ncurrent or incomplete, or the Company has reasonable grounds to suspect that\nsuch information is untrue, inaccurate, not current or incomplete, the Company\nhas the right to suspend or terminate your Account and refuse any and all\ncurrent or future use of the Company Properties (or any portion thereof). You\nagree not to create an Account using a false identity or information, or on\nbehalf of someone other than yourself. You agree that you shall not have more\nthan one Account at any given time. The Company reserves the right to remove\nor reclaim any usernames at any time and for any reason, including but not\nlimited to, claims by a third party that a username violates the third party’s\nrights. You agree not to create an Account or use the Company Properties if\nyou have been previously removed by the Company, or if you have been\npreviously banned from any of the Company Properties.\n\n**Necessary Equipment and Software:** You must provide all equipment and\nsoftware necessary to connect to the Company Properties, including but not\nlimited to, a mobile device that is suitable to connect with and use the\nCompany Properties, in cases where the Services offer a mobile component. You\nare solely responsible for any fees, including Internet connection or mobile\nfees, that you incur when accessing the Company Properties.\n\n## **Responsibility for Content**\n\n**Types of Content:** You acknowledge that all Content, including the Company\nProperties, is the sole responsibility of the party from whom such Content\noriginated. This means that you, and not the Company, are entirely responsible\nfor all Content that you upload, post, e-mail, transmit or otherwise make\navailable (“Make Available”) through the Company Properties (“Your Content”),\nand other Users of the Company Properties, and not the Company, are similarly\nresponsible for all Content they Make Available through the Company Properties\n(“User Content”).\n\n**No Obligation to Pre-Screen Content:** You acknowledge that the Company has\nno obligation to pre-screen Content (including, but not limited to, Your\nContent and User Content), although the Company reserves the right in its sole\ndiscretion to pre-screen, refuse or remove any Content. By entering into the\nTerms, you hereby provide your irrevocable consent to such monitoring. You\nacknowledge and agree that you have no expectation of privacy concerning the\ntransmission of Your Content, including without limitation chat, text, or\nvoice communications. In the event that the Company pre-screens, refuses or\nremoves any Content, you acknowledge that the Company will do so for the\nCompany’s benefit, not yours. Without limiting the foregoing, the Company\nshall have the right to remove any Content that violates the Terms or is\notherwise objectionable.\n\n**Storage:** Unless expressly agreed to by the Company in writing elsewhere,\nthe Company has no obligation to store any of Your Content that you Make\nAvailable on the Company Properties. The Company has no responsibility or\nliability for the deletion or accuracy of any Content, including Your Content;\nthe failure to store, transmit or receive transmission of Content; or the\nsecurity, privacy, storage, or transmission of other communications\noriginating with or involving use of the Company Properties. Certain Services\nmay enable you to specify the level at which such Services restrict access to\nYour Content. You are solely responsible for applying the appropriate level of\naccess to Your Content. You agree that the Company retains the right to create\nreasonable limits on the Company’s use and storage of the Content, including\nYour Content, such as limits on file size, storage space, processing capacity,\nand similar limits described in the web pages accompanying the Services and as\notherwise determined by the Company in its sole discretion.\n\n## **Ownership**\n\n**Company Properties:** Except with respect to Your Content and User Content,\nyou agree that the Company and its suppliers own all rights, title and\ninterest in the Company Properties. You will not remove, alter or obscure any\ncopyright, trademark, service mark or other proprietary rights notices\nincorporated in or accompanying the Website, the Services, or the Company\nProperties.\n\n**Trademarks:** Company’s stylized name and other related graphics, logos,\nservice marks and trade names used on or in connection with the Company\nProperties or in connection with the Services are the trademarks of the\nCompany and may not be used without permission in connection with any third-\nparty products or services. Other trademarks, service marks and trade names\nthat may appear on or in the Company Properties are the property of their\nrespective owners.\n\n**Other Content:** Except with respect to Your Content, you agree that you\nhave no right or title in or to any Content that appears on or in the Company\nProperties.\n\n**Your Content:** The Company does not claim ownership of Your Content.\nHowever, when you as a User post or publish Your Content on or in the Company\nProperties, you represent that you own and/or have the rights to grant the\nlicense below in “License to Your Content” Section for Your Content.\n\n**License to Your Content:** Subject to any applicable account settings that\nyou select, you grant the Company a fully paid, royalty-free, perpetual,\nirrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable\nright (including any moral rights) and license to use, license, distribute,\nreproduce, modify, adapt, publicly perform, and publicly display, Your Content\n(in whole or in part) and/or to incorporate it in other works in any form,\nmedia or technology now known or later developed, for the purposes of\noperating and providing the Company Properties to you and to our other Users.\nBefore that scares you off, keep reading. We know these rights seem broad, but\nwe are trying to cover all of the use cases for Your Content in one sentence –\notherwise, this Agreement would be even longer. Don’t worry – this does not\nmean that all Content you provide us will be made publicly available. We will\nuse Your Content in accordance with the settings in which you submitted such\nContent, as detailed under our Privacy Policy . To be clear, if Your Content\nis a journal entry or page, the default is private to you. Please remember\nthat other Users may search for, see, use, and reproduce any of Your Content\nthat you “publish” on the Company Properties. You warrant that the holder of\nany worldwide intellectual property right, including moral rights, in Your\nContent, has completely and effectively waived all such rights and validly and\nirrevocably granted to you the right to grant the license stated above. You\nagree that you, not the Company, are responsible for all of Your Content that\nyou Make Available on or in the Company Properties.\n\n**Username:** Notwithstanding anything contained herein to the contrary, by\nsubmitting Your Content to any forums, comments or any other area on the\nCompany Properties, you hereby expressly permit the Company to identify you by\nyour username (which may be a pseudonym) as the contributor of Your Content in\nany publication in any form, media or technology now known or later developed\nin connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge\nand agree that you shall have no ownership or other property interest in your\nAccount, and you further acknowledge and agree that all rights in and to your\nAccount are and shall forever be owned by and inure to the benefit of the\nCompany.\n\n**Your Profile:** Any Content posted by you in your profile may not contain\nnudity, violence, sexually explicit, or offensive subject matter. You may not\npost or submit for print services a photograph of another person without that\nperson’s permission.\n\n**Feedback:** You agree that submission of any ideas, suggestions, documents,\nand/or proposals to the Company through its suggestion, feedback, wiki, forum\nor similar pages (“Feedback”) is at your own risk and that the Company has no\nobligations (including without limitation obligations of confidentiality) with\nrespect to such Feedback. You represent and warrant that you have all rights\nnecessary to submit the Feedback. You hereby grant to the Company a fully\npaid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and\nfully sublicensable right and license to use, reproduce, perform, display,\ndistribute, adapt, modify, re-format, create derivative works of, and\notherwise commercially or non-commercially exploit in any manner, any and all\nFeedback, and to sublicense the foregoing rights, in connection with the\noperation and maintenance of the Company Properties.\n\n**Investigations:** The Company may, but is not obligated to, monitor or\nreview the Company Properties and Content at any time. Without limiting the\nforegoing, the Company shall have the right, in its sole discretion, to remove\nany of Your Content for any reason (or no reason), including if such Content\nviolates the Terms or any applicable law. Although the Company does not\ngenerally monitor user activity occurring in connection with the Company\nProperties or Content, if the Company becomes aware of any possible violations\nby you of any provision of the Terms, the Company reserves the right to\ninvestigate such violations, and the Company may, at its sole discretion,\nimmediately terminate your license to use the Company Properties, or change,\nalter or remove Your Content, in whole or in part, without prior notice to\nyou.\n\n## **Interactions with Other Users**\n\n**User Responsibility:** You are solely responsible for your interactions with\nother Users of the Services and any other parties with whom you interact\nthrough the Services; provided, however, that the Company reserves the right,\nbut has no obligation, to intercede in such disputes. You agree that the\nCompany will not be responsible for any liability incurred as the result of\nsuch interactions.\n\n**Content Provided by Other Users:** The Company Properties may contain User\nContent provided by other Users. The Company is not responsible for and does\nnot control User Content. The Company has no obligation to review or monitor,\nand does not approve, endorse or make any representations or warranties with\nrespect to User Content. You use all User Content and interact with other\nUsers at your own risk.\n\n## **Third-Party Services**\n\n**Third-Party Websites & Ads:** The Company Properties may contain links to\nthird-party websites (“Third-Party Websites”) and advertisements for third\nparties (collectively, “Third-Party Websites & Ads”). When you click on a link\nto a Third-Party Website or Ad, we will not warn you that you have left the\nCompany Properties and are subject to the terms and conditions (including\nprivacy policies) of another website or destination. Such Third-Party Websites\nare not under the control of the Company. The Company is not responsible for\nany Third-Party Websites & Ads. The Company provides these Third-Party\nWebsites & Ads only as a convenience and does not review, approve, monitor,\nendorse, warrant, or make any representations with respect to Third-Party\nWebsites & Ads, or their products or services. You use all links in Third-\nParty Websites & Ads at your own risk. When you leave our Website, our Terms\nand policies no longer govern. You should review applicable terms and\npolicies, including privacy and data gathering practices, of any Third-Party\nWebsites, and should make whatever investigation you feel necessary or\nappropriate before proceeding with any transaction with any third party.\n\n**App Stores:** You acknowledge and agree that the availability of the\nApplication and the Services is dependent on the third party from which you\nreceived the Application license, e.g., the Apple iPhone or Android app stores\n(“App Store”). You acknowledge that the Terms are between you and the Company\nand not with the App Store. The Company, not the App Store, is solely\nresponsible for the Company Properties, including the Application, the content\nthereof, maintenance, support services, and warranty therefor, and addressing\nany claims relating thereto (e.g., product liability, legal compliance or\nintellectual property infringement). In order to use the Application, you must\nhave access to a wireless network, and you agree to pay all fees associated\nwith such access. You also agree to pay all fees (if any) charged by the App\nStore in connection with the Company Properties, including the Application.\nYou agree to comply with, and your license to use the Application is\nconditioned upon your compliance with, all applicable third-party terms of\nagreement (e.g., the App Store’s terms and policies) when using the Company\nProperties, including the Application. You acknowledge that the App Store (and\nits subsidiaries) are third-party beneficiaries of the Terms and will have the\nright to enforce them.\n\n## **Fees and Purchase Terms**\n\n**General Purpose of Terms: Sale of Service, not Software:** The purpose of\nthe Terms is for you to secure access to the Services. All fees set forth\nwithin and paid by you under the Terms shall be considered solely in\nfurtherance of this purpose. In no way are these fees paid considered payment\nfor the sale, license, or use of the Company’s Software, and, furthermore, any\nuse of the Company’s Software by you in furtherance of the Terms will be\nconsidered merely in support of the purpose of the Terms.\n\n**Payment:** You agree to pay all fees or charges to your Account in\naccordance with the fees, charges and billing terms in effect at the time a\nfee or charge is due and payable. Currently, all payments are made through the\nApplication and/or the Website. You may be required to provide the Company\nwith a valid credit card (Visa, MasterCard, or any other issuer accepted by\nus) or PayPal account (“Payment Provider”). Your Payment Provider agreement\ngoverns your use of the designated credit card or PayPal account, and you must\nrefer to that agreement and not the Terms to determine your rights and\nliabilities. By providing the Company with your credit card number or PayPal\naccount and associated payment information, you agree that the Company is\nauthorized to immediately invoice your Account for all fees and charges due\nand payable to the Company hereunder and that no additional notice or consent\nis required. You agree to immediately notify the Company of any change in your\nbilling address or the credit card or PayPal account used for payment\nhereunder. The Company reserves the right at any time to change its prices and\nbilling methods, either immediately upon posting on the Company Properties or\nby e-mail delivery to you. In the course of your use of the Company’s\nSoftware, the Company and its third party payment service provider may receive\nand implement updated credit card information from your credit card issuer in\norder to prevent your subscription from being interrupted by an outdated or\ninvalid card. This disbursement of the updated credit card information is\nprovided to the Company and the Company’s third party payment service provider\nat the sole election of your credit card issuer. Your credit card issuer may\ngive you the right to opt-out of the update service. Should you desire to do\nso, please contact your credit card issuer.\n\n**Service Subscription Fees:** You will be responsible for payment of the\napplicable fee for any Services (each, a “Service Subscription Fee”) at the\ntime you upgrade to a premium subscription and/or purchase access to a paid\nService (each, a “Service Commencement Date”). Except as set forth in the\nTerms, all fees for the Services are non-refundable. No contract will exist\nbetween you and the Company for the Services until the Company accepts your\norder by a confirmatory e-mail or other appropriate means of communication.\n\n**Taxes:** The Company’s fees are net of any applicable Sales Tax. If any\nServices, or payments for any Services, under the Terms are subject to Sales\nTax in any jurisdiction and you have not remitted the applicable Sales Tax to\nthe Company, you will be responsible for the payment of such Sales Tax and any\nrelated penalties or interest to the relevant tax authority, and you will\nindemnify the Company for any liability or expense we may incur in connection\nwith such Sales Taxes. Upon our request, you will provide us with official\nreceipts issued by the appropriate taxing authority, or other such evidence\nthat you have paid all applicable taxes. For purposes of this section, “Sales\nTax” shall mean any sales or use tax, and any other tax measured by sales\nproceeds, that the Company is permitted to pass to its customers, that is the\nfunctional equivalent of a sales tax where the applicable taxing jurisdiction\ndoes not otherwise impose a sales or use tax.\n\n**Withholding Taxes:** You agree to make all payments of fees to the Company\nfree and clear of, and without reduction for, any withholding taxes. Any such\ntaxes imposed on payments of fees to the Company will be your sole\nresponsibility, and you will provide the Company with official receipts issued\nby the appropriate taxing authority, or such other evidence as we may\nreasonably request, to establish that such taxes have been paid.\n\n**Automatic Renewal.** Unless otherwise specified by the Company, your\nsubscription will continue indefinitely until terminated in accordance with\nthe Terms. After your initial subscription period, and again after any\nsubsequent subscription period, your subscription will automatically commence\non the first day following the end of such period (each a “Renewal\nCommencement Date”) and continue for an additional equivalent period, at the\nCompany’s then-current price for such subscription. You agree that your\nAccount will be subject to this automatic renewal feature unless you cancel\nyour subscription at any time prior to the Renewal Commencement Date. If you\ncancel your subscription, you may use your subscription until the end of your\nthen-current subscription term; your subscription will not be renewed after\nyour then-current term expires. However, you will not be eligible for a\nprorated refund of any portion of the subscription fee paid for the then-\ncurrent subscription period. By subscribing, you authorize the Company to\ncharge your Payment Provider now, and again at the beginning of any subsequent\nsubscription period. Upon renewal of your subscription, if the Company does\nnot receive payment from your Payment Provider, (i) you agree to pay all\namounts due on your Account upon demand, and/or (ii) you agree that the\nCompany may either terminate or suspend your subscription and continue to\nattempt to charge your Payment Provider until payment is received (upon\nreceipt of payment, your Account will be activated and for purposes of\nautomatic renewal, your new subscription commitment period will begin as of\nthe day payment was received).\n\n**Free Trials:** Any free trial or other promotion that provides Registered\nUser level access to the Services must be used within the specified time of\nthe trial. At the end of the trial period, your use of that Service will\nexpire and any further use of the Service is prohibited unless you pay the\napplicable subscription fee. If indicated accordingly, the free trial may be\nfollowed by Automatic Renewal as defined in the previous section.\n\n**Other Promotions:** We may run promotional offers from time to time on the\nWebsite. The terms of any such promotion will be posted on the Website. Unless\notherwise indicated, we may establish and modify, in our sole discretion, the\nterms of such offer and end such offer at any point.\n\n**Gifting:** “Gift Subscriptions” are pre-paid memberships to any Company\nProperties. A person who purchases the gift is referred to in these Terms as\nthe “Giftor”. A person who receives and redeems a Gift Subscription to the\nCompany Properties is referred to in these terms as the “Recipient”. Gift\nSubscriptions are paid for as a one-off upfront payment. Once bought, the\nGiftor will receive an Order confirmation and receipt. Unless otherwise\nspecified by the Company, the Giftor will be responsible for sending the Gift\nSubscription to the Recipient. Only if so specified by the Company at the time\nof purchase, the Company Gift Subscription will be sent to the Recipient on\nthe Giftor’s specified date. Gifting codes can only be used once in the\ncountry for which they were purchased and cannot be redeemed for cash, resold\nor combined with any other offers, including free trial. Please note that\ngifting codes cannot be redeemed if the Recipient has already purchased a\nsubscription through the Apple iTunes Store or our iPhone application, or the\nGoogle Play Store or our Android application. We will automatically bill the\nPayment Method you provided for any purchased Gift Subscriptions at the time\nof purchase, not delivery. There are no refunds or other credits for Gift\nSubscription that are not redeemed. Company may notify the Recipient prior to\nthe end of the Gift Subscription that the gift period is about to expire.\nCompany is not responsible if a Gift Subscription is lost, stolen or used\nwithout permission.\n\n**Disputes:** You must notify us in writing within seven (7) days after\nreceiving your credit card statement, if you dispute any of our charges on\nthat statement or such dispute will be deemed waived. Billing disputes should\nbe notified to the following email address: hello@triumphhq.com\n\n**Indemnification:** You agree to indemnify and hold the Company, its parents,\nsubsidiaries, affiliates, officers, employees, agents, partners and licensors\n(collectively, the “Company Parties”) harmless from any losses, costs,\nliabilities and expenses (including reasonable attorneys’ fees) relating to or\narising out of: (a) Your Content; (b) your use of, or inability to use, the\nCompany Properties; (c) your violation of the Terms; (d) your violation of any\nrights of another party, including any Users; or (e) your violation of any\napplicable laws, rules or regulations. The Company reserves the right, at its\nown cost, to assume the exclusive defense and control of any matter otherwise\nsubject to indemnification by you, in which event you will fully cooperate\nwith the Company in asserting any available defenses. You agree that the\nprovisions in this section will survive any termination of your Account, the\nTerms or your access to the Company Properties.\n\n## **Disclaimer of Warranties.**\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY\nAPPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND\nTHE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS,\nWITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES,\nREPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED,\nINCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF\nMERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1)\nTHE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE\nCOMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3)\nTHE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE\nACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE\nCORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY\nPROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE\nFOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR\nCOMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR\nANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS.\nCOMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO\nSERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION\nAND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR\nTHROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE\nHEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with\nwhich its users may experiment. Such features or tools are offered solely for\nexperimental purposes and without any warranty of any kind, and may be\nmodified or discontinued at THE Company’s sole discretion. The provisions of\nthis section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE\nCOMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY\nPARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF\nEXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS\nENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF\nYOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY\nPROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY\nTHE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## **Limitation of Liability.**\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL\nCOMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR\nCONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY\nPROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF\nUSE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE\nPOSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY\nOR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM\nANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY\nPROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR\nINABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF\nSUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR\nSERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED\nINTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION\nOF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON\nTHE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY\nPROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING\nNEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:** UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE\nLIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF\nYOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU\nFIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE\nSUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S\nSOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE\nTIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING,\nBUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR\nPERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE\nFUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR\nLIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE\nABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE\nADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s\npolicy to terminate membership privileges of any User who repeatedly infringes\ncopyright upon prompt notification to the Company by the copyright owner or\nthe copyright owner’s legal agent. Without limiting the foregoing, if you\nbelieve that your work has been copied and posted on the Company Properties in\na way that constitutes copyright infringement, please provide our Copyright\nAgent with the following information: (1) an electronic or physical signature\nof the person authorized to act on behalf of the owner of the copyright\ninterest; (2) a description of the copyrighted work that you claim has been\ninfringed; (3) a description of the location on the Company Properties of the\nmaterial that you claim is infringing; (4) your address, telephone number and\ne-mail address; (5) a written statement by you that you have a good faith\nbelief that the disputed use is not authorized by the copyright owner, its\nagent or the law; and (6) a statement by you, made under penalty of perjury,\nthat the above information in your notice is accurate and that you are the\ncopyright owner or authorized to act on the copyright owner’s behalf. Contact\ninformation for the Company’s Copyright Agent for notice of claims of\ncopyright infringement is as follows: hello@triumphhq.com\n\n## **Term and Termination.**\n\n**Term:** The Terms commence on the date when you accept them (as described in\nthe preamble above) and remain in full force and effect while you use the\nCompany Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company\nProperties prior to the date you accepted the Terms, you hereby acknowledge\nand agree that the Terms commenced on the date you first used the Company\nProperties (whichever is earlier) and will remain in full force and effect\nwhile you use the Company Properties, unless earlier terminated in accordance\nwith the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for\nthe Company Properties, we may suspend, modify or terminate any of the\nServices or Company Properties at any time. If you become a paid user, you\nwill have thirty (30) days from the Service Commencement Date, or any Renewal\nCommencement Date, for any Services hereunder, to cancel such Service, in\nwhich case the Company will refund your Service Subscription Fee, if already\npaid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set\nforth above, the Service Subscription Fee for any Service shall be non-\nrefundable. If timely payment cannot be charged to your Payment Provider for\nany reason, if you have materially breached any provision of the Terms, or if\nthe Company is required to do so by law (e.g., where the provision of the\nWebsite, the Application, the Software or the Services is, or becomes,\nunlawful), the Company has the right to suspend or terminate any Services\nprovided to you. You agree that all terminations for cause shall be made in\nthe Company’s sole discretion and that the Company shall not be liable to you\nor any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services\nprovided by the Company, you may do so by (a) notifying the Company at any\ntime and (b) closing your Account for all of the Services that you use. Your\nnotice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of\naccess to such Service and barring of further use of the Service. Termination\nof all Services may also include deletion of your password and all related\ninformation, files and Content associated with or inside your Account (or any\npart thereof), including Your Content. Upon termination of any Service, your\nright to use such Service will automatically terminate immediately. You\nunderstand that any termination of Services may involve deletion of Your\nContent associated therewith from our live databases. The Company will not\nhave any liability whatsoever to you for any suspension or termination,\nincluding for deletion of Your Content. All provisions of the Terms which by\ntheir nature should survive, shall survive termination of Services, including\nwithout limitation, ownership provisions, warranty disclaimers, and limitation\nof liability.\n\n## **Remedies**\n\n**Violations:** If the Company becomes aware of any possible violations by you\nof the Terms, the Company reserves the right to investigate such violations.\nIf, as a result of the investigation, the Company believes that criminal\nactivity has occurred, the Company reserves the right to refer the matter to,\nand to cooperate with, any and all applicable legal authorities. The Company\nis entitled, except to the extent prohibited by applicable law, to disclose\nany information or materials on or in the Company Properties, including Your\nContent, in the Company’s possession in connection with your use of the\nCompany Properties, to (1) comply with applicable laws, legal process or\ngovernmental request; (2) enforce the Terms, (3) respond to any claims that\nYour Content violates the rights of third parties, (4) respond to your\nrequests for customer service, or (5) protect the rights, property or personal\nsafety of the Company, its Users or the public, and all enforcement or other\ngovernment officials, as the Company in its sole discretion believes to be\nnecessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion,\nthat you have breached any portion of the Terms, or have otherwise\ndemonstrated conduct inappropriate for the Company Properties, the Company\nreserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company)\nthat you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company\nProperties;\n\n– Discontinue your registration(s) with the any of the Company Properties,\nincluding any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law\nenforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to\naccess the Company Properties, or any other Company community is discontinued\nby the Company due to your violation of any portion of the Terms or for\nconduct otherwise inappropriate for the community, then you agree that you\nshall not attempt to re-register with or access the Company Properties or any\nCompany community through use of a different member name or otherwise, and you\nacknowledge that you will not be entitled to receive a refund for fees related\nto those Company Properties to which your access has been terminated. In the\nevent that you violate the immediately preceding sentence, the Company\nreserves the right, in its sole discretion, to immediately take any or all of\nthe actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries\naround the world and may contain references to Services and Content that are\nnot available in your country. These references do not imply that the Company\nintends to announce such Services or Content in your country. The Company\nProperties are controlled and offered by the Company from its facilities in\nthe United States of America. The Company makes no representations that the\nCompany Properties are appropriate or available for use in other locations.\nThose who access or use the Company Properties from other jurisdictions do so\nat their own volition and are responsible for compliance with local law.\n\n## **General Provisions**\n\n**Electronic Communications:** The communications between you and the Company\nuse electronic means, whether you visit the Company Properties or send the\nCompany e-mails, or whether the Company posts notices on the Company\nProperties or communicates with you via e-mail. For contractual purposes, you\n(1) consent to receive communications from the Company in an electronic form;\nand (2) agree that all terms and conditions, agreements, notices, disclosures,\nand other communications that the Company provides to you electronically\nsatisfy any legal requirement that such communications would satisfy if it\nwere to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from\nclaims, demands, any and all losses, damages, rights, and actions of any kind,\nincluding personal injuries, death, and property damage, that is either\ndirectly or indirectly related to or arises from your use of the Company\nProperties, including but not limited to, any interactions with or conduct of\nother Users or third-party websites of any kind arising in connection with or\nas a result of the Terms or your use of the Company Properties. If you are a\nCalifornia resident, you hereby waive California Civil Code Section 1542,\nwhich states, “A general release does not extend to claims which the creditor\ndoes not know or suspect to exist in his favor at the time of executing the\nrelease, which, if known by him must have materially affected his settlement\nwith the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not\nbe assigned, subcontracted, delegated or otherwise transferred by you without\nthe Company’s prior written consent, and any attempted assignment,\nsubcontract, delegation, or transfer in violation of the foregoing will be\nnull and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to\nperform resulting from causes outside its reasonable control, including, but\nnot limited to, acts of God, war, terrorism, riots, embargos, acts of civil or\nmilitary authorities, fire, floods, accidents, strikes or shortages of\ntransportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms,\nplease contact the Company by emailing us at hello@triumphhq.com. We will do\nour best to address your concerns. If you feel that your complaint has been\naddressed incompletely, we invite you to let us know for further\ninvestigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION\nARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT\nMUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES.\nOTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## **Dispute Resolution**\n\nAny claim or dispute (excluding claims for injunctive or other equitable\nrelief as set forth below) in connection with the Terms where the total amount\nof the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may\nbe resolved in a cost effective manner through binding non-appearance-based\narbitration, at the option of the party seeking relief. Such arbitration shall\nbe initiated through an established alternative dispute resolution provider\n(“ADR Provider”) that offers arbitration as set forth in this section and\nunder the rules of such ADR Provider, except to the extent such rules are in\nconflict with the Terms. The party demanding arbitration will propose an ADR\nProvider and the other party shall not unreasonably withhold consent to use\nsuch ADR Provider. The ADR Provider and the parties must comply with the\nfollowing rules: (1) the arbitration shall be conducted by telephone, online\nand/or be solely based on written submissions, the specific manner shall be\nchosen by the party initiating the arbitration; (2) all arbitration\nproceedings shall be held in English; (3) the arbitration shall not involve\nany personal appearance by the parties or witnesses unless otherwise mutually\nagreed to by the parties; and (4) any judgment on the award rendered by the\narbitrator may be entered in any court of competent jurisdiction. Each party\nshall bear its own costs (including attorney fees) and disbursements arising\nout of the arbitration, and shall pay an equal share of the fees and costs of\nthe ADR Provider. Notwithstanding the foregoing, the Company may seek\ninjunctive or other equitable relief to protect its intellectual property\nrights in any court of competent jurisdiction. Please note that the laws of\nthe jurisdiction where you are located may be different from California law,\nincluding the laws governing what can legally be sold, bought, exported,\noffered or imported. You shall always comply with all the international and\ndomestic laws, ordinances, regulations and statutes that are applicable to\nyour use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall\nbe referred to and finally determined by binding and confidential arbitration.\nArbitration shall be subject to the Federal Arbitration Act and not any state\narbitration law. The arbitration shall be conducted before one commercial\narbitrator with substantial experience in resolving commercial contract\ndisputes from the American Arbitration Association (“AAA”). As modified by the\nTerms, and unless otherwise agreed upon by the parties in writing, the\narbitration will be governed by the AAA’s Commercial Arbitration Rules and, if\nthe arbitrator deems them applicable, the Supplementary Procedures for\nConsumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your\nrights EXCEPT for matters that may be taken to small claims court. Your rights\nwill be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are\nentitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND\nMORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as\nenforceable as any court order and are subject to VERY LIMITED REVIEW BY A\nCOURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT\nBY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND\nNOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE\nPROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S\nCLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS\nPROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you\nare able to demonstrate that the costs of arbitration will be prohibitive as\ncompared to costs of litigation, the Company will pay as much of your filing\nand hearing fees in connection with the arbitration as the arbitrator deems\nnecessary to prevent the arbitration from being cost-prohibitive as compared\nto the cost of litigation; (iv) the Company also reserves the right in its\nsole and exclusive discretion to assume responsibility for all of the costs of\nthe arbitration; (v) the arbitrator shall honor claims of privilege and\nprivacy recognized at law; (vi) the arbitration shall be confidential, and\nneither you nor we may disclose the existence, content or results of any\narbitration, except as may be required by law or for the purposes of\nenforcement of the arbitration award; (vii) the arbitrator may award any\nindividual relief or individual remedies that are permitted by applicable law;\nand (viii) each side pays its own attorneys’ fees and expenses unless there is\na statutory provision that requires the prevailing party to be paid its fees\nand litigation expenses, and then in such instance, the fees and costs awarded\nshall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in\nthe English language. Any written evidence originally in a language other than\nEnglish will be submitted in English translation accompanied by the original\nor true copy thereof. The English language version will control. The\narbitrator shall issue a written award and statement of decision describing\nthe essential findings and conclusions on which the award is based, including\nthe calculation of any damages awarded. The arbitrator will not have authority\nto award damages in excess of the amount, or other than the types, allowed by\nSection 12 of the Terms. Judgment on the award of the arbitrator may be\nentered by any court of competent jurisdiction. The arbitrator also shall be\nauthorized to grant any temporary, preliminary or permanent equitable remedy\nor relief it deems just and equitable and within the scope of the Terms,\nincluding, without limitation, an injunction or order for specific\nperformance. The arbitration award shall be final and binding upon the parties\nwithout appeal or review except as permitted by California law or United\nStates federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an\nindividual action in small claims court. Further, claims of defamation,\nviolation of the Computer Fraud and Abuse Act, and infringement or\nmisappropriation of the other party’s patent, copyright, trademark, or trade\nsecret shall not be subject to this arbitration agreement. Such claims shall\nbe exclusively brought in the state or federal courts located in Los Angeles\nCounty, California. Additionally, notwithstanding this agreement to arbitrate,\neither party may seek emergency equitable relief before the state or federal\ncourts located in Los Angeles County, California, in order to maintain the\nstatus quo pending arbitration, and hereby agree to submit to the exclusive\npersonal jurisdiction of the courts located within Los Angeles County,\nCalifornia for such purpose. A request for interim measures shall not be\ndeemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a\nclass or collective basis), if any part of this arbitration provision is\ndeemed to be invalid, unenforceable, or illegal, or otherwise conflicts with\nthe Rules and Procedures, then the balance of this arbitration provision shall\nremain in effect and shall be construed in accordance with its terms as if the\ninvalid, unenforceable, illegal or conflicting provision were not contained\nherein. If, however, either (d)(i) or (ii) is found to be invalid,\nunenforceable or illegal, then the entirety of this arbitration provision\nshall be null and void, and neither you nor the Company shall be entitled to\narbitration. If for any reason, a claim proceeds in court rather than in\narbitration, the dispute shall be exclusively brought in state or federal\ncourt in Los Angeles County, California. By using the Company Properties in\nany manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an\narbitration claim, you may call AAA at 800-778-7879 or visit the AAA website\nat http://www.adr.org.\n\n**Governing Law:** The Terms and any action related thereto will be governed\nand interpreted by and under the laws of the State of California, USA,\nconsistent with the Federal Arbitration Act, without giving effect to any\nprinciples that provide for the application of the law of another\njurisdiction. The United Nations Convention on Contracts for the International\nSale of Goods does not apply to these Terms.\n\n**Choice of Language:** It is the express wish of the parties that the Terms\nand all related documents have been drawn up in English. C’est law volone\nexpresse des parties que la presente convention ainsi que les documents qui\ns’y rattacent soient rediges en anglais.\n\n**Notice:** Where the Company requires that you provide an e-mail address, you\nare responsible for providing the Company with your most current e-mail\naddress. In the event that the last e-mail address you provided to the Company\nis not valid, or for any reason is not capable of delivering to you any\nnotices required/ permitted by the Terms, the Company’s dispatch of the e-mail\ncontaining such notice will nonetheless constitute effective notice. You may\ngive notice to the Company at the following address: RCCI Group, Inc., 7011\nSemrad Rd, West Hills, CA 91307. Such notice shall be deemed given when\nreceived by the Company by letter delivered by nationally recognized overnight\ndelivery service or first class postage prepaid mail at the above address.\n\n**Waiver.** Any waiver or failure to enforce any provision of the Terms on one\noccasion will not be deemed a waiver of any other provision or of such\nprovision on any other occasion.\n\n**Severability:** If any provision of the Terms is, for any reason, held to be\ninvalid or unenforceable, the other provisions of the Terms will remain\nenforceable, and the invalid or unenforceable provision will be deemed\nmodified so that it is valid and enforceable to the maximum extent permitted\nby law.\n\n**Export Control:** You may not use, export, import, or transfer the Company\nProperties except as authorized by U.S. law, the laws of the jurisdiction in\nwhich you obtained the Company Properties, and any other applicable laws. In\nparticular, but without limitation, the Company Properties may not be exported\nor re-exported (a) into any United States embargoed countries, or (b) to\nanyone on the U.S. Treasury Department’s list of Specially Designated\nNationals or the U.S. Department of Commerce’s Denied Person’s List or Entity\nList. By using the Company Properties, you represent and warrant that (i) you\nare not located in a country that is subject to a U.S. Government embargo, or\nthat has been designated by the U.S. Government as a “terrorist supporting”\ncountry and (ii) you are not listed on any U.S. Government list of prohibited\nor restricted parties. You also will not use the Company Properties for any\npurpose prohibited by U.S. law, including the development, design, manufacture\nor production of missiles, nuclear, chemical or biological weapons. You\nacknowledge and agree that products, services or technology provided by\nCompany are subject to the export control laws and regulations of the United\nStates. You shall comply with these laws and regulations and shall not,\nwithout prior U.S. government authorization, export, re-export, or transfer\nthe Company products, services or technology, either directly or indirectly,\nto any country in violation of such laws and regulations.\n\n**Accessing and Download the Application from iTunes:** The following applies\nto any Application accessed through or downloaded from the Apple App Store\n(“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the\nCompany only, and not Apple, and (ii) the Company, not Apple, is solely\nresponsible for the App Store Sourced Application and content thereof. Your\nuse of the App Store Sourced Application must comply with the App Store Terms\nof Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any\nmaintenance and support services with respect to the App Store Sourced\nApplication.\n\nIn the event of any failure of the App Store Sourced Application to conform to\nany applicable warranty, you may notify Apple, and Apple will refund the\npurchase price for the App Store Sourced Application to you and to the maximum\nextent permitted by applicable law, Apple will have no other warranty\nobligation whatsoever with respect to the App Store Sourced Application. As\nbetween the Company and Apple, any other claims, losses, liabilities, damages,\ncosts or expenses attributable to any failure to conform to any warranty will\nbe the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple\nis not responsible for addressing any claims you have or any claims of any\nthird party relating to the App Store Sourced Application or your possession\nand use of the App Store Sourced Application, including, but not limited to:\n(i) product liability claims; (ii) any claim that the App Store Sourced\nApplication fails to conform to any applicable legal or regulatory\nrequirement; and (iii) claims arising under consumer protection or similar\nlegislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim\nthat the App Store Sourced Application or your possession and use of that App\nStore Sourced Application infringes that third party’s intellectual property\nrights, as between the Company and Apple, the Company, not Apple, will be\nsolely responsible for the investigation, defense, settlement and discharge of\nany such intellectual property infringement claim to the extent required by\nthe Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s\nsubsidiaries, are third-party beneficiaries of the Terms as related to your\nlicense of the App Store Sourced Application, and that, upon your acceptance\nof the terms and conditions of the Terms, Apple will have the right (and will\nbe deemed to have accepted the right) to enforce the Terms as related to your\nlicense of the App Store Sourced Application against you as a third-party\nbeneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all\napplicable third-party terms of agreement when using the App Store Sourced\nApplication.\n\n**Entire Agreement:** The Terms are the final, complete and exclusive\nagreement of the parties with respect to the subject matter hereof and\nsupersedes and merges all prior discussions between the parties with respect\nto such subject matter.\n\n**International Provisions:** The following provisions shall apply only if you\nare located in the countries listed below.\n\n * United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n * Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## **ACCEPTABLE USE POLICY**\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines\napplicable to your use of the services provided by RCCI Group, Inc. for the\nTriumph series of mobile applications, website and related services\n(“Services”). You are responsible for ensuring that your use of the Services,\nincluding any content that you provide, upload, or otherwise make available to\nthe Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any\nillegal, harmful, or offensive use or to transmit, store, display, distribute\nor otherwise make available User Content that is illegal, harmful, or\noffensive. Examples of prohibited use or content include:\n\n**Illegal Activities:** Any activities that violate applicable law, rule, or\nregulation, including advertising, transmitting, or making available gambling\nsites or services or distributing, uploading, downloading, enabling, or\npromoting child pornography.\n\n**Harmful or Fraudulent Activities:** Activities that may be harmful to others\nor our operations, business, or reputation, including offering fraudulent\ngoods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi\nand pyramid schemes, phishing, or pharming), or engaging in other deceptive\npractices.\n\n**Infringing Content:** Content that may infringe, misappropriate, or violate\nthe rights of any third party, such as, but not limited to, copyrights,\ntrademarks, and rights of privacy or publicity.\n\n**Offensive Content:** Obscene, vulgar, or offensive content; defamatory\ncontent; content that harasses, threatens, or abuses other persons or groups;\nsexual content or nudity involving persons under the age of 18; and content\ndepicting non-consensual sex acts.\n\n**Harmful Content:** Content or technology that may damage, interfere with,\nintercept, or expropriate any data, information, program, or systems,\nincluding viruses, malware, Trojan horses, worms, time bombs, corrupted files,\nor cancelbots.\n\n**Fraud or Impersonation:** Impersonate any person or entity, including, but\nnot limited to, the Company personnel, or falsely state or otherwise\nmisrepresent your affiliation with a person or entity.\n\n**Inappropriate Content:** Make available any content that you do not have a\nright to Make Available under any law or under contractual or fiduciary\nrelationships (such as inside information, proprietary and confidential\ninformation learned or disclosed as part of employment relationships or under\nnon-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any\nnetwork, computer or communications system, software application, or network\nor computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:** Accessing or using any System without permission,\nincluding attempting to probe, scan, or test the vulnerability of a System or\nto breach any security, access control or authentication measures used by a\nSystem.\n\n**Interception:** Monitoring of data or traffic on a System without\npermission.\n\n**Falsification of Origin:** Forging TCP-IP packet headers, e-mail headers, or\nany part of a message describing its origin or route. This prohibition does\nnot include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or\ndisrupt the functioning of any of the Services or the servers and networks\nused to provide any Services, including, but not limited to:\n\n**Unauthorized communication:** Making network connections to any users,\nhosts, or networks unless you have permission to communicate with them.\n\n**Monitoring or Crawling:** Monitoring or crawling of a System that impairs or\ndisrupts the System being monitored or crawled.\n\n**Denial of Service (DoS):** Sending a target communications requests in a\nmanner such that the target either cannot respond to legitimate traffic or\nresponds so slowly that it becomes ineffective.\n\n**Intentional Interference:** Interfering with the proper functioning of any\nSystem, including any deliberate attempt to overload a system by mail bombing,\nnews bombing, broadcast attacks, or flooding techniques.\n\n**Operation of Certain Network Services.** Operating network services like\nopen proxies, open mail relays, or open recursive domain name servers.\n\n**Avoiding System Restrictions:** Using physical or electronic means to avoid\nany use limitations placed on any System, such as access and storage\nrestrictions.\n\nYou will not use the Services for or any part thereof for any commercial\npurpose, including, but not limited to communicating or facilitating any\ncommercial advertisement or solicitation. In addition, you may not market any\ngoods or services for any business purposes, nor may you reproduce, duplicate,\ncopy, sell, trade, resell or exploit for any commercial purpose any portion of\nthe Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of\nunsolicited commercial or mass e-mail or other messages, promotions,\nadvertising, or solicitations (e.g., “spam”), including commercial advertising\nand informational announcements. You will not alter or obscure mail headers or\nassume a sender’s identity without the sender’s explicit permission. You will\nnot collect replies to messages sent from another internet service provider if\nthose messages violate this Acceptable Use Policy or the policies of that\nprovider.\n\n", "trafilatura_content": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:**\n**Use of the Services and Company Properties:**\n**Application License:**\n**Company Software:**\n**Updates:**\n**Certain Restrictions:**\n**Acceptable Use:**\n**Third-Party Materials:**\n**Registration**\n**Registering Your Account:**\n**Registration Data:**\n**Necessary Equipment and Software:**\n**Responsibility for Content**\n**Types of Content:**\n**No Obligation to Pre-Screen Content:**\n**Storage:**\n**Ownership**\n**Company Properties:**\n**Trademarks:**\n**Other Content:**\n**Your Content:**\n**License to Your Content:**\n**Username:**\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile:**\n**Feedback:**\n**Investigations:**\n**Interactions with Other Users**\n**User Responsibility:**\n**Content Provided by Other Users:**\n**Third-Party Services**\n**Third-Party Websites & Ads:**\n**App Stores:**\n**Fees and Purchase Terms**\n**General Purpose of Terms: Sale of Service, not Software:**\n**Payment:**\n**Service Subscription Fees:**\n**Taxes:**\n**Withholding Taxes:**\n**Automatic Renewal.**\n**Free Trials:**\n**Other Promotions:**\n**Gifting:**\n**Disputes:**\n**Indemnification:**\n**Disclaimer of Warranties.**\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n**Limitation of Liability.**\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:**\n**User Content:**\n**Basis of the Bargain:**\n**EXCLUSION OF DAMAGES:**\n**Procedure for Making Claims of Copyright Infringement.**\n**Term and Termination.**\n**Term:**\n**Prior Use:**\n**Termination of Services by Company:**\n**Termination of Services by You:**\n**Effect of Termination:**\n**Remedies**\n**Violations:**\n**Breach.**\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:**\n**International Users:**\n**General Provisions**\n**Electronic Communications:**\n**Release:**\n**Assignment:**\n**Force Majeure.**\n**Compliance:**\n**Limitations Period.**\n**Dispute Resolution**\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:**\n**Choice of Language:**\n**Notice:**\n**Waiver.**\n**Severability:**\n**Export Control:**\n**Accessing and Download the Application from iTunes:**\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:**\n**International Provisions:**\nUnited Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n-\nGermany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n-\n**ACCEPTABLE USE POLICY**\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:**\n**Harmful or Fraudulent Activities:**\n**Infringing Content:**\n**Offensive Content:**\n**Harmful Content:**\n**Fraud or Impersonation:**\n**Inappropriate Content:**\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:**\n**Interception:**\n**Falsification of Origin:**\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:**\n**Monitoring or Crawling:**\n**Denial of Service (DoS):**\n**Intentional Interference:**\n**Operation of Certain Network Services.**\n**Avoiding System Restrictions:**\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n", "trafilatura_content_list": [], "trafilatura_success": true, "trafilatura_time": 0.017701148986816406, "trafilatura_text_edit_score": 0.33417235843152193, "trafilatura_overall_score": 0.33417235843152193, "trafilatura_predicted_code": "", "trafilatura_predicted_formula": "", "trafilatura_predicted_table": "", "trafilatura_predicted_text": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:**\n**Use of the Services and Company Properties:**\n**Application License:**\n**Company Software:**\n**Updates:**\n**Certain Restrictions:**\n**Acceptable Use:**\n**Third-Party Materials:**\n**Registration**\n**Registering Your Account:**\n**Registration Data:**\n**Necessary Equipment and Software:**\n**Responsibility for Content**\n**Types of Content:**\n**No Obligation to Pre-Screen Content:**\n**Storage:**\n**Ownership**\n**Company Properties:**\n**Trademarks:**\n**Other Content:**\n**Your Content:**\n**License to Your Content:**\n**Username:**\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile:**\n**Feedback:**\n**Investigations:**\n**Interactions with Other Users**\n**User Responsibility:**\n**Content Provided by Other Users:**\n**Third-Party Services**\n**Third-Party Websites & Ads:**\n**App Stores:**\n**Fees and Purchase Terms**\n**General Purpose of Terms: Sale of Service, not Software:**\n**Payment:**\n**Service Subscription Fees:**\n**Taxes:**\n**Withholding Taxes:**\n**Automatic Renewal.**\n**Free Trials:**\n**Other Promotions:**\n**Gifting:**\n**Disputes:**\n**Indemnification:**\n**Disclaimer of Warranties.**\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n**Limitation of Liability.**\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:**\n**User Content:**\n**Basis of the Bargain:**\n**EXCLUSION OF DAMAGES:**\n**Procedure for Making Claims of Copyright Infringement.**\n**Term and Termination.**\n**Term:**\n**Prior Use:**\n**Termination of Services by Company:**\n**Termination of Services by You:**\n**Effect of Termination:**\n**Remedies**\n**Violations:**\n**Breach.**\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:**\n**International Users:**\n**General Provisions**\n**Electronic Communications:**\n**Release:**\n**Assignment:**\n**Force Majeure.**\n**Compliance:**\n**Limitations Period.**\n**Dispute Resolution**\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:**\n**Choice of Language:**\n**Notice:**\n**Waiver.**\n**Severability:**\n**Export Control:**\n**Accessing and Download the Application from iTunes:**\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:**\n**International Provisions:**\nUnited Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n-\nGermany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n-\n**ACCEPTABLE USE POLICY**\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:**\n**Harmful or Fraudulent Activities:**\n**Infringing Content:**\n**Offensive Content:**\n**Harmful Content:**\n**Fraud or Impersonation:**\n**Inappropriate Content:**\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:**\n**Interception:**\n**Falsification of Origin:**\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:**\n**Monitoring or Crawling:**\n**Denial of Service (DoS):**\n**Intentional Interference:**\n**Operation of Certain Network Services.**\n**Avoiding System Restrictions:**\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n", "resiliparse_content": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\nRegistration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\nResponsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\nOwnership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\nInteractions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\nThird-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\nFees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\nDisclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\nLimitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\nTerm and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\nRemedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\nGeneral Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\nDispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n • United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n • Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\nACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "resiliparse_content_list": [], "resiliparse_success": true, "resiliparse_time": 0.0029952526092529297, "resiliparse_formula_edit_score": 0.0, "resiliparse_text_edit_score": 0.9922038694930474, "resiliparse_overall_score": 0.4961019347465237, "resiliparse_predicted_code": "", "resiliparse_predicted_formula": "50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\nTerm and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\nRemedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\nGeneral Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\nDispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US", "resiliparse_predicted_table": "", "resiliparse_predicted_text": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\nRegistration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\nResponsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\nOwnership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\nInteractions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\nThird-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\nFees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\nDisclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\nLimitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\nTerm and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\nRemedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\nGeneral Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\nDispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n • United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n • Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\nACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "groundtruth_groundtruth_code": "", "groundtruth_groundtruth_formula": "", "groundtruth_groundtruth_table": "", "groundtruth_groundtruth_text": "RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:** We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\n**Use of the Services and Company Properties:** The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\n**Application License:** Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\n**Company Software:** Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\n**Updates:** You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\n**Certain Restrictions:** The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\n**Acceptable Use:** It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\n**Third-Party Materials:** As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\n**Registering Your Account:** In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\n**Registration Data:** In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\n**Necessary Equipment and Software:** You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\n**Types of Content:** You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\n**Storage:** Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\n**Company Properties:** Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\n**Trademarks:** Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\n**Other Content:** Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\n**Your Content:** The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\n**License to Your Content:** Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\n**Username:** Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile**: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\n**Feedback:** You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\n**Investigations:** The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\n**User Responsibility:** You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\n**Content Provided by Other Users:** The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\n**Third-Party Websites & Ads:** The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\n**App Stores:** You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\n**General Purpose of Terms: Sale of Service, not Software:** The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\n**Payment:** You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\n**Service Subscription Fees:** You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\n**Taxes:** The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\n**Withholding Taxes:** You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\n**Automatic Renewal.** Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\n**Free Trials:** Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\n**Other Promotions:** We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\n**Gifting:**“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\n**Disputes:** You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\n**Indemnification:** You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:** UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\n**Term:** The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\n**Violations:** If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\n**Electronic Communications:** The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:** The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\n**Choice of Language:** It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\n**Notice:** Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\n**Waiver.** Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\n**Export Control:** You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\n**Accessing and Download the Application from iTunes:** The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:** The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\n**International Provisions:** The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:** Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\n**Harmful or Fraudulent Activities:** Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\n**Infringing Content:** Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\n**Offensive Content:** Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\n**Harmful Content:** Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\n**Fraud or Impersonation:** Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\n**Inappropriate Content:** Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:** Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\n**Interception:**\nMonitoring of data or traffic on a System without permission.\n\n**Falsification of Origin:** Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:** Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\n**Monitoring or Crawling:** Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\n**Denial of Service (DoS):** Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\n**Intentional Interference:** Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\n**Operation of Certain Network Services.** Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\n**Avoiding System Restrictions:** Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n\n\n\n\n"} -{"id": "ee0a113d-bdd5-48cf-ac9c-a7cadfbfb74b", "html": "\n\n\n\n\n\n\n\n\n\nHonda Civic 1.0 VTEC TURBO SR 5-Door Approved Used vehicle, by Campbell Honda Newry\n\n\n\n\n\n\n

\n\n\n\t\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\n\n\t\t\n\t\ta\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

\n
We've got cookies
Our website uses cookies. If you use the site, that means you're happy for this to happen. Hope that's okay. Read our cookie policy
FavouritesMy ComparisonSaved Searches
\"Honda
 
Campbell HondaShore RoadNewryBT34 3AA\n
\n

Honda Civic 1.0 VTEC TURBO SR 5-Door

£16,295
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
Reg Number: OY67UBO
1st reg date: 2017
Exterior: Black Metallic
Mileage: 11,500 miles
Fuel Type: Petrol
Transmission: Manual
Consumption: 55 mpg
CO2 Emission: 117 g/km
Insurance: 15
\n
\n
\n\"Honda\n
\n
\n
Campbell Honda
Shore Road
Newry, , BT34 3AA

\n
\n
\n

Fitted as standard

\n
\n
    \n
      \n
    • Wheels and Tyres
    • 17In Alloy Wheels
    • Tyre Pressure Control
    • Instruments and Controls
    • Front/Rear Electric Windows
    • Satellite Navigation
    • Front/Rear Parking Aid
    • Audio/Gears Steering Wheel Mounted Controls
    • Rain Sensor
    • Speed Limiter
    • Safety
    • Electronic Brake Force Distribution
    • Anti-Lock Brakes
    • Driver, Passenger And Front Side Air Bags
    • Centre Rear Seat Belt
    • Security
    • Alarm
    • Remote Central Door Locking
    • Immobiliser
    • Exterior
    • Tinted Glass
    • Front Fog Lights
    • Electric/Heated Door Mirrors
    • LED Daytime Running Lights Exterior Lighting
    • Gear Knob Leather
    • Comfort and Convenience
    • Automatic Air Conditioning
    • Cruise Control
    • Front/Rear Armrest
    • Whiplash Protection System
    • Power-Assisted Steering
    • Heated Rear Screen
    • Map Interior Lights
    • Centre Console
    • Seating
    • Driver Seat Height Adjustment
    • Rear Seat - ISOFIX Anchorage Point
    • Driver Seat Lumbar Support
    • In Car Entertainment (ICE)
    • On-Board Monitor
    • Eight Speakers
    • Miscellaneous
    • Hill Holder
    • Safety System
    \n
\n
\n
\n
Performance
Acceleration (0-60mph)
10.9 secs
Max torque
200 nm
Max torque imperial
147.512 lb/ft
Cubic Capacity
988 cc
Power
127 PS
Economy
Litres/100 km Urban**
6.40 l/100km
Litres/100 km Extra Urban**
4.40 l/100km
Litres/100 km combined**
5.10 l/100km
Mpg urban**
44.1 mpg
Mpg extra urban**
64.2 mpg
Mpg combined**
55.4 mpg
Engine
Tank capacity
46 l
Number of cylinders
3
Dimensions
Kerb Weight
1275 kg
Vehicle Length
4518 cm
Vehicle Width
2076 cm
Vehicle Height
1434 cm
Vehicle Wheelbase
2697 mm
Environment
Co2 Emissions**
117.0 g/km
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
\"Honda
Buying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.

Complimentary 5-day drive-away insurance
An optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.
A range of financial solutions
To help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.
12 month Honda Approved Used Car Guarantee
The guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.
Rigorous checking and preparation
Our Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.
Assured vehicle history
Your Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.
Mileage certification
Any vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.
Preferential MOT Test
Your Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.
30-day exchange policy
Your new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.

Finance this car

\"Honda

Campbell Honda

Call us:\nShore Road
Newry, BT34 3AA
Get directions
\"Opening

Car Sales Opening Hours

Monday09:00 - 17:30
Tuesday09:00 - 20:00
Wednesday09:00 - 17:30
Thursday09:00 - 20:00
Friday09:00 - 17:30
Saturday09:00 - 13:00
\n
\n\n
\n

Similar Vehicles

/
Please note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.
Back to top
\n\n", "groundtruth_content": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\nContact\n\nFavourite REMOVE FROM FAVOURITES\n\nCompare REMOVE FROM COMPARE\n\nCampbell Honda\n\n Shore Road\n\n Newry, , BT34 3AA\n\n## Fitted as standard\n\n- Wheels and Tyres\n- 17In Alloy Wheels\n- Tyre Pressure Control\n- Instruments and Controls\n- Front/Rear Electric Windows\n- Satellite Navigation\n- Front/Rear Parking Aid\n- Audio/Gears Steering Wheel Mounted Controls\n- Rain Sensor\n- Speed Limiter\n- Safety\n- Electronic Brake Force Distribution\n- Anti-Lock Brakes\n- Driver, Passenger And Front Side Air Bags\n- Centre Rear Seat Belt\n- Security\n- Alarm\n- Remote Central Door Locking\n- Immobiliser\n- Exterior\n- Tinted Glass\n- Front Fog Lights\n- Electric/Heated Door Mirrors\n- LED Daytime Running Lights Exterior Lighting\n- Gear Knob Leather\n- Comfort and Convenience\n- Automatic Air Conditioning\n- Cruise Control\n- Front/Rear Armrest\n- Whiplash Protection System\n- Power-Assisted Steering\n- Heated Rear Screen\n- Map Interior Lights\n- Centre Console\n- Seating\n- Driver Seat Height Adjustment\n- Rear Seat - ISOFIX Anchorage Point\n- Driver Seat Lumbar Support\n- In Car Entertainment (ICE)\n- On-Board Monitor\n- Eight Speakers\n- Miscellaneous\n- Hill Holder\n- Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km\n\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\n## Finance this car\n\n## Campbell Honda\n\nCall us: Shore Road\n\n Newry, BT34 3AA\n\n Get directions\n\n### Car Sales Opening Hours\n\n| Monday | 09:00 - 17:30 |\n|---|---|\n| Tuesday | 09:00 - 20:00 |\n| Wednesday | 09:00 - 17:30 |\n| Thursday | 09:00 - 20:00 |\n| Friday | 09:00 - 17:30 |\n| Saturday | 09:00 - 13:00 |\n", "groundtruth_content_list": [[{"type": "title", "raw_content": "

Honda Civic 1.0 VTEC TURBO SR 5-Door

", "content": {"title_content": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "level": "1"}}, {"type": "paragraph", "raw_content": "
£16,295
", "content": [{"c": "£16,295", "t": "text"}]}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "paragraph", "raw_content": "
Reg Number: OY67UBO
", "content": [{"c": "Reg Number: OY67UBO", "t": "text"}]}, {"type": "paragraph", "raw_content": "
1st reg date: 2017
", "content": [{"c": "1st reg date: 2017", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Exterior: Black Metallic
", "content": [{"c": "Exterior: Black Metallic", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Mileage: 11,500 miles
", "content": [{"c": "Mileage: 11,500 miles", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Fuel Type: Petrol
", "content": [{"c": "Fuel Type: Petrol", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Transmission: Manual
", "content": [{"c": "Transmission: Manual", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Consumption: 55 mpg
", "content": [{"c": "Consumption: 55 mpg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
CO2 Emission: 117 g/km
", "content": [{"c": "CO2 Emission: 117 g/km", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Insurance: 15
", "content": [{"c": "Insurance: 15", "t": "text"}]}, {"type": "paragraph", "raw_content": "
", "content": [{"c": "Contact", "t": "text"}]}, {"type": "paragraph", "raw_content": "
", "content": [{"c": "Favourite REMOVE FROM FAVOURITES", "t": "text"}]}, {"type": "paragraph", "raw_content": "
", "content": [{"c": "Compare REMOVE FROM COMPARE", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Campbell Honda
Shore Road
Newry, , BT34 3AA

", "content": [{"c": "Campbell Honda\n\n Shore Road\n\n Newry, , BT34 3AA\n\n", "t": "text"}]}, {"type": "title", "raw_content": "

Fitted as standard

", "content": {"title_content": "Fitted as standard", "level": "2"}}, {"type": "list", "raw_content": "", "content": {"items": [{"c": "Wheels and Tyres"}, {"c": "17In Alloy Wheels"}, {"c": "Tyre Pressure Control"}, {"c": "Instruments and Controls"}, {"c": "Front/Rear Electric Windows"}, {"c": "Satellite Navigation"}, {"c": "Front/Rear Parking Aid"}, {"c": "Audio/Gears Steering Wheel Mounted Controls"}, {"c": "Rain Sensor"}, {"c": "Speed Limiter"}, {"c": "Safety"}, {"c": "Electronic Brake Force Distribution"}, {"c": "Anti-Lock Brakes"}, {"c": "Driver, Passenger And Front Side Air Bags"}, {"c": "Centre Rear Seat Belt"}, {"c": "Security"}, {"c": "Alarm"}, {"c": "Remote Central Door Locking"}, {"c": "Immobiliser"}, {"c": "Exterior"}, {"c": "Tinted Glass"}, {"c": "Front Fog Lights"}, {"c": "Electric/Heated Door Mirrors"}, {"c": "LED Daytime Running Lights Exterior Lighting"}, {"c": "Gear Knob Leather"}, {"c": "Comfort and Convenience"}, {"c": "Automatic Air Conditioning"}, {"c": "Cruise Control"}, {"c": "Front/Rear Armrest"}, {"c": "Whiplash Protection System"}, {"c": "Power-Assisted Steering"}, {"c": "Heated Rear Screen"}, {"c": "Map Interior Lights"}, {"c": "Centre Console"}, {"c": "Seating"}, {"c": "Driver Seat Height Adjustment"}, {"c": "Rear Seat - ISOFIX Anchorage Point"}, {"c": "Driver Seat Lumbar Support"}, {"c": "In Car Entertainment (ICE)"}, {"c": "On-Board Monitor"}, {"c": "Eight Speakers"}, {"c": "Miscellaneous"}, {"c": "Hill Holder"}, {"c": "Safety System"}], "list_attribute": "unordered", "list_nest_level": "2"}}, {"type": "paragraph", "raw_content": "
Performance
", "content": [{"c": "Performance", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Acceleration (0-60mph)
", "content": [{"c": "Acceleration (0-60mph)", "t": "text"}]}, {"type": "paragraph", "raw_content": "
10.9 secs
", "content": [{"c": "10.9 secs", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Max torque
", "content": [{"c": "Max torque", "t": "text"}]}, {"type": "paragraph", "raw_content": "
200 nm
", "content": [{"c": "200 nm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Max torque imperial
", "content": [{"c": "Max torque imperial", "t": "text"}]}, {"type": "paragraph", "raw_content": "
147.512 lb/ft
", "content": [{"c": "147.512 lb/ft", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Cubic Capacity
", "content": [{"c": "Cubic Capacity", "t": "text"}]}, {"type": "paragraph", "raw_content": "
988 cc
", "content": [{"c": "988 cc", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Power
", "content": [{"c": "Power", "t": "text"}]}, {"type": "paragraph", "raw_content": "
127 PS
", "content": [{"c": "127 PS", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Economy
", "content": [{"c": "Economy", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Litres/100 km Urban**
", "content": [{"c": "Litres/100 km Urban**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
6.40 l/100km
", "content": [{"c": "6.40 l/100km", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Litres/100 km Extra Urban**
", "content": [{"c": "Litres/100 km Extra Urban**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
4.40 l/100km
", "content": [{"c": "4.40 l/100km", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Litres/100 km combined**
", "content": [{"c": "Litres/100 km combined**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
5.10 l/100km
", "content": [{"c": "5.10 l/100km", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Mpg urban**
", "content": [{"c": "Mpg urban**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
44.1 mpg
", "content": [{"c": "44.1 mpg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Mpg extra urban**
", "content": [{"c": "Mpg extra urban**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
64.2 mpg
", "content": [{"c": "64.2 mpg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Mpg combined**
", "content": [{"c": "Mpg combined**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
55.4 mpg
", "content": [{"c": "55.4 mpg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Engine
", "content": [{"c": "Engine", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Tank capacity
", "content": [{"c": "Tank capacity", "t": "text"}]}, {"type": "paragraph", "raw_content": "
46 l
", "content": [{"c": "46 l", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Number of cylinders
", "content": [{"c": "Number of cylinders", "t": "text"}]}, {"type": "paragraph", "raw_content": "
3
", "content": [{"c": "3", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Dimensions
", "content": [{"c": "Dimensions", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Kerb Weight
", "content": [{"c": "Kerb Weight", "t": "text"}]}, {"type": "paragraph", "raw_content": "
1275 kg
", "content": [{"c": "1275 kg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Vehicle Length
", "content": [{"c": "Vehicle Length", "t": "text"}]}, {"type": "paragraph", "raw_content": "
4518 cm
", "content": [{"c": "4518 cm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Vehicle Width
", "content": [{"c": "Vehicle Width", "t": "text"}]}, {"type": "paragraph", "raw_content": "
2076 cm
", "content": [{"c": "2076 cm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Vehicle Height
", "content": [{"c": "Vehicle Height", "t": "text"}]}, {"type": "paragraph", "raw_content": "
1434 cm
", "content": [{"c": "1434 cm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Vehicle Wheelbase
", "content": [{"c": "Vehicle Wheelbase", "t": "text"}]}, {"type": "paragraph", "raw_content": "
2697 mm
", "content": [{"c": "2697 mm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Environment
", "content": [{"c": "Environment", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Co2 Emissions**
", "content": [{"c": "Co2 Emissions**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
117.0 g/km
", "content": [{"c": "117.0 g/km", "t": "text"}]}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
\"Honda
", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "paragraph", "raw_content": "
Buying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.

", "content": [{"c": "Buying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\n\n\n", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Complimentary 5-day drive-away insurance
", "content": [{"c": "Complimentary 5-day drive-away insurance", "t": "text"}]}, {"type": "paragraph", "raw_content": "
An optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.
", "content": [{"c": "An optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
A range of financial solutions
", "content": [{"c": "A range of financial solutions", "t": "text"}]}, {"type": "paragraph", "raw_content": "
To help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.
", "content": [{"c": "To help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
12 month Honda Approved Used Car Guarantee
", "content": [{"c": "12 month Honda Approved Used Car Guarantee", "t": "text"}]}, {"type": "paragraph", "raw_content": "
The guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.
", "content": [{"c": "The guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Rigorous checking and preparation
", "content": [{"c": "Rigorous checking and preparation", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Our Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.
", "content": [{"c": "Our Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Assured vehicle history
", "content": [{"c": "Assured vehicle history", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Your Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.
", "content": [{"c": "Your Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Mileage certification
", "content": [{"c": "Mileage certification", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Any vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.
", "content": [{"c": "Any vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Preferential MOT Test
", "content": [{"c": "Preferential MOT Test", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Your Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.
", "content": [{"c": "Your Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
30-day exchange policy
", "content": [{"c": "30-day exchange policy", "t": "text"}]}, {"type": "paragraph", "raw_content": "
Your new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.
", "content": [{"c": "Your new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.", "t": "text"}]}, {"type": "title", "raw_content": "

Finance this car

", "content": {"title_content": "Finance this car", "level": "2"}}, {"type": "image", "raw_content": "\"Honda", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/userdata/500013/layout/honda-finance-logo.png", "data": null, "alt": "Honda Finance", "title": null, "caption": null}}, {"type": "title", "raw_content": "

Campbell Honda

", "content": {"title_content": "Campbell Honda", "level": "2"}}, {"type": "paragraph", "raw_content": "
Call us:Shore Road
Newry, BT34 3AA
Get directions
", "content": [{"c": "Call us: Shore Road\n\n Newry, BT34 3AA\n\n Get directions", "t": "text"}]}, {"type": "image", "raw_content": "\"Opening", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/userdata/500013/layout/opening-status-closed.png", "data": null, "alt": "Opening Image", "title": null, "caption": null}}, {"type": "title", "raw_content": "

Car Sales Opening Hours

", "content": {"title_content": "Car Sales Opening Hours", "level": "3"}}, {"type": "simple_table", "raw_content": "
Monday09:00 - 17:30
Tuesday09:00 - 20:00
Wednesday09:00 - 17:30
Thursday09:00 - 20:00
Friday09:00 - 17:30
Saturday09:00 - 13:00
", "content": {"html": "
Monday09:00 - 17:30
Tuesday09:00 - 20:00
Wednesday09:00 - 17:30
Thursday09:00 - 20:00
Friday09:00 - 17:30
Saturday09:00 - 13:00
", "is_complex": false, "table_nest_level": "1"}}]], "content_list": null, "content": null, "llm_webkit_md": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](98f447e22b7c937df0d22085062d8e10a77bdce81481250f1ac2ff03e1674d7b)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](60e5b1ed1492508b76f04eefd08ffa561e117c705fe831fb9e4128e0c59de25a)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](da6220a4975e63b4a63549a6dc86e957abb4a5326300748639d7794832a772c1)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](4d8bb59651fb67f4012b97dd10700f3016ae8e9c2cf814b88607f30e411a89f0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5aa17c902597afd905170c17e06795bf8b4211774ef4b52c5a97889e8d8b6326)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](7db3721d8d0bae00a1c85bcecb0e471933b05709af5d0a36c4cb123ce6228da0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](f207f790ca62b578065f5dad23f5b643456bf5b4bad5fb520ac7d25fb206e247)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](bb6d9f937339ab810cd073c81d82e2f585522465b1b456bb84ca8eb6bf6b7dbb)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5fa8c643b7b8063d3a4a079784f223565c65f318f6c3641ad38ae08ed8fb74cf)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](98f447e22b7c937df0d22085062d8e10a77bdce81481250f1ac2ff03e1674d7b)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](60e5b1ed1492508b76f04eefd08ffa561e117c705fe831fb9e4128e0c59de25a)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](da6220a4975e63b4a63549a6dc86e957abb4a5326300748639d7794832a772c1)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](4d8bb59651fb67f4012b97dd10700f3016ae8e9c2cf814b88607f30e411a89f0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5aa17c902597afd905170c17e06795bf8b4211774ef4b52c5a97889e8d8b6326)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](7db3721d8d0bae00a1c85bcecb0e471933b05709af5d0a36c4cb123ce6228da0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](f207f790ca62b578065f5dad23f5b643456bf5b4bad5fb520ac7d25fb206e247)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](bb6d9f937339ab810cd073c81d82e2f585522465b1b456bb84ca8eb6bf6b7dbb)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5fa8c643b7b8063d3a4a079784f223565c65f318f6c3641ad38ae08ed8fb74cf)\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\n## Fitted as standard\n\n- \n - Wheels and Tyres\n - 17In Alloy Wheels\n - Tyre Pressure Control\n - Instruments and Controls\n - Front/Rear Electric Windows\n - Satellite Navigation\n - Front/Rear Parking Aid\n - Audio/Gears Steering Wheel Mounted Controls\n - Rain Sensor\n - Speed Limiter\n - Safety\n - Electronic Brake Force Distribution\n - Anti-Lock Brakes\n - Driver, Passenger And Front Side Air Bags\n - Centre Rear Seat Belt\n - Security\n - Alarm\n - Remote Central Door Locking\n - Immobiliser\n - Exterior\n - Tinted Glass\n - Front Fog Lights\n - Electric/Heated Door Mirrors\n - LED Daytime Running Lights Exterior Lighting\n - Gear Knob Leather\n - Comfort and Convenience\n - Automatic Air Conditioning\n - Cruise Control\n - Front/Rear Armrest\n - Whiplash Protection System\n - Power-Assisted Steering\n - Heated Rear Screen\n - Map Interior Lights\n - Centre Console\n - Seating\n - Driver Seat Height Adjustment\n - Rear Seat - ISOFIX Anchorage Point\n - Driver Seat Lumbar Support\n - In Car Entertainment (ICE)\n - On-Board Monitor\n - Eight Speakers\n - Miscellaneous\n - Hill Holder\n - Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](98f447e22b7c937df0d22085062d8e10a77bdce81481250f1ac2ff03e1674d7b)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](60e5b1ed1492508b76f04eefd08ffa561e117c705fe831fb9e4128e0c59de25a)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](da6220a4975e63b4a63549a6dc86e957abb4a5326300748639d7794832a772c1)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](4d8bb59651fb67f4012b97dd10700f3016ae8e9c2cf814b88607f30e411a89f0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5aa17c902597afd905170c17e06795bf8b4211774ef4b52c5a97889e8d8b6326)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](7db3721d8d0bae00a1c85bcecb0e471933b05709af5d0a36c4cb123ce6228da0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](f207f790ca62b578065f5dad23f5b643456bf5b4bad5fb520ac7d25fb206e247)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](bb6d9f937339ab810cd073c81d82e2f585522465b1b456bb84ca8eb6bf6b7dbb)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5fa8c643b7b8063d3a4a079784f223565c65f318f6c3641ad38ae08ed8fb74cf)\n", "llm_webkit_html": "\n\n
\n
\n
\n

Honda Civic 1.0 VTEC TURBO SR 5-Door

\n
£16,295
\n
\n
\n
\n
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\n
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\n
\n
\n
\n
\n
\nReg Number: OY67UBO\n
\n
\n1st reg date: 2017\n
\n
\nExterior: Black Metallic\n
\n
\nMileage: 11,500 miles\n
\n
\nFuel Type: Petrol\n
\n
\nTransmission: Manual\n
\n
\nConsumption: 55 mpg\n
\n
\nCO2 Emission: 117 g/km\n
\n
\nInsurance: 15\n
\n
\n
\n
\n
\n
\n
\n
\n

Fitted as standard

\n
    \n
      \n
    • Wheels and Tyres
    • \n
    • 17In Alloy Wheels
    • \n
    • Tyre Pressure Control
    • \n
    • Instruments and Controls
    • \n
    • Front/Rear Electric Windows
    • \n
    • Satellite Navigation
    • \n
    • Front/Rear Parking Aid
    • \n
    • Audio/Gears Steering Wheel Mounted Controls
    • \n
    • Rain Sensor
    • \n
    • Speed Limiter
    • \n
    • Safety
    • \n
    • Electronic Brake Force Distribution
    • \n
    • Anti-Lock Brakes
    • \n
    • Driver, Passenger And Front Side Air Bags
    • \n
    • Centre Rear Seat Belt
    • \n
    • Security
    • \n
    • Alarm
    • \n
    • Remote Central Door Locking
    • \n
    • Immobiliser
    • \n
    • Exterior
    • \n
    • Tinted Glass
    • \n
    • Front Fog Lights
    • \n
    • Electric/Heated Door Mirrors
    • \n
    • LED Daytime Running Lights Exterior Lighting
    • \n
    • Gear Knob Leather
    • \n
    • Comfort and Convenience
    • \n
    • Automatic Air Conditioning
    • \n
    • Cruise Control
    • \n
    • Front/Rear Armrest
    • \n
    • Whiplash Protection System
    • \n
    • Power-Assisted Steering
    • \n
    • Heated Rear Screen
    • \n
    • Map Interior Lights
    • \n
    • Centre Console
    • \n
    • Seating
    • \n
    • Driver Seat Height Adjustment
    • \n
    • Rear Seat - ISOFIX Anchorage Point
    • \n
    • Driver Seat Lumbar Support
    • \n
    • In Car Entertainment (ICE)
    • \n
    • On-Board Monitor
    • \n
    • Eight Speakers
    • \n
    • Miscellaneous
    • \n
    • Hill Holder
    • \n
    • Safety System
    \n
\n
\n
\n
\n
Performance
\n
\n
Acceleration (0-60mph)
\n
10.9 secs
\n
\n
\n
Max torque
\n
200 nm
\n
\n
\n
Max torque imperial
\n
147.512 lb/ft
\n
\n
\n
Cubic Capacity
\n
988 cc
\n
\n
\n
Power
\n
127 PS
\n
\n
\n
\n
Economy
\n
\n
Litres/100 km Urban**
\n
6.40 l/100km
\n
\n
\n
Litres/100 km Extra Urban**
\n
4.40 l/100km
\n
\n
\n
Litres/100 km combined**
\n
5.10 l/100km
\n
\n
\n
Mpg urban**
\n
44.1 mpg
\n
\n
\n
Mpg extra urban**
\n
64.2 mpg
\n
\n
\n
Mpg combined**
\n
55.4 mpg
\n
\n
\n
\n
Engine
\n
\n
Tank capacity
\n
46 l
\n
\n
\n
Number of cylinders
\n
3
\n
\n
\n
\n
Dimensions
\n
\n
Kerb Weight
\n
1275 kg
\n
\n
\n
Vehicle Length
\n
4518 cm
\n
\n
\n
Vehicle Width
\n
2076 cm
\n
\n
\n
Vehicle Height
\n
1434 cm
\n
\n
\n
Vehicle Wheelbase
\n
2697 mm
\n
\n
\n
\n
Environment
\n
\n
Co2 Emissions**
\n
117.0 g/km
\n
\n
\n
\n
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\"Honda
\n
\n
\n
\n
\n", "url": "http://campbellhonda-newry.usedcars.honda.co.uk/en/used-cars/approved-cars/honda/civic-10-vtec-turbo-sr-5-door/details-r1bsa77", "domain": null, "language": "en", "content_type": null, "difficulty": null, "tags": null, "extracted_results": null, "llm-webkit_content": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\n## Fitted as standard\n\n- \n - Wheels and Tyres\n - 17In Alloy Wheels\n - Tyre Pressure Control\n - Instruments and Controls\n - Front/Rear Electric Windows\n - Satellite Navigation\n - Front/Rear Parking Aid\n - Audio/Gears Steering Wheel Mounted Controls\n - Rain Sensor\n - Speed Limiter\n - Safety\n - Electronic Brake Force Distribution\n - Anti-Lock Brakes\n - Driver, Passenger And Front Side Air Bags\n - Centre Rear Seat Belt\n - Security\n - Alarm\n - Remote Central Door Locking\n - Immobiliser\n - Exterior\n - Tinted Glass\n - Front Fog Lights\n - Electric/Heated Door Mirrors\n - LED Daytime Running Lights Exterior Lighting\n - Gear Knob Leather\n - Comfort and Convenience\n - Automatic Air Conditioning\n - Cruise Control\n - Front/Rear Armrest\n - Whiplash Protection System\n - Power-Assisted Steering\n - Heated Rear Screen\n - Map Interior Lights\n - Centre Console\n - Seating\n - Driver Seat Height Adjustment\n - Rear Seat - ISOFIX Anchorage Point\n - Driver Seat Lumbar Support\n - In Car Entertainment (ICE)\n - On-Board Monitor\n - Eight Speakers\n - Miscellaneous\n - Hill Holder\n - Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km", "llm-webkit_content_list": [], "llm-webkit_success": true, "llm-webkit_time": 0.0364222526550293, "llm-webkit_text_edit_score": 0.30216197666437883, "llm-webkit_table_edit_score": 0.0, "llm-webkit_table_TEDS_score": 0.0, "llm-webkit_overall_score": 0.10072065888812627, "llm-webkit_predicted_code": "", "llm-webkit_predicted_formula": "", "llm-webkit_predicted_table": "", "llm-webkit_predicted_text": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\n## Fitted as standard\n\n- \n - Wheels and Tyres\n - 17In Alloy Wheels\n - Tyre Pressure Control\n - Instruments and Controls\n - Front/Rear Electric Windows\n - Satellite Navigation\n - Front/Rear Parking Aid\n - Audio/Gears Steering Wheel Mounted Controls\n - Rain Sensor\n - Speed Limiter\n - Safety\n - Electronic Brake Force Distribution\n - Anti-Lock Brakes\n - Driver, Passenger And Front Side Air Bags\n - Centre Rear Seat Belt\n - Security\n - Alarm\n - Remote Central Door Locking\n - Immobiliser\n - Exterior\n - Tinted Glass\n - Front Fog Lights\n - Electric/Heated Door Mirrors\n - LED Daytime Running Lights Exterior Lighting\n - Gear Knob Leather\n - Comfort and Convenience\n - Automatic Air Conditioning\n - Cruise Control\n - Front/Rear Armrest\n - Whiplash Protection System\n - Power-Assisted Steering\n - Heated Rear Screen\n - Map Interior Lights\n - Centre Console\n - Seating\n - Driver Seat Height Adjustment\n - Rear Seat - ISOFIX Anchorage Point\n - Driver Seat Lumbar Support\n - In Car Entertainment (ICE)\n - On-Board Monitor\n - Eight Speakers\n - Miscellaneous\n - Hill Holder\n - Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km", "magic-html_content": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg)\n\nReg Number: **OY67UBO**\n\n1st reg date: **2017**\n\nExterior: **Black Metallic**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nCampbell Honda \nShore Road \nNewry, , BT34 3AA \n\n## Fitted as standard\n\n * Wheels and Tyres\n * 17In Alloy Wheels\n * Tyre Pressure Control\n * Instruments and Controls\n * Front/Rear Electric Windows\n * Satellite Navigation\n * Front/Rear Parking Aid\n * Audio/Gears Steering Wheel Mounted Controls\n * Rain Sensor\n * Speed Limiter\n * Safety\n * Electronic Brake Force Distribution\n * Anti-Lock Brakes\n * Driver, Passenger And Front Side Air Bags\n * Centre Rear Seat Belt\n * Security\n * Alarm\n * Remote Central Door Locking\n * Immobiliser\n * Exterior\n * Tinted Glass\n * Front Fog Lights\n * Electric/Heated Door Mirrors\n * LED Daytime Running Lights Exterior Lighting\n * Gear Knob Leather\n * Comfort and Convenience\n * Automatic Air Conditioning\n * Cruise Control\n * Front/Rear Armrest\n * Whiplash Protection System\n * Power-Assisted Steering\n * Heated Rear Screen\n * Map Interior Lights\n * Centre Console\n * Seating\n * Driver Seat Height Adjustment\n * Rear Seat - ISOFIX Anchorage Point\n * Driver Seat Lumbar Support\n * In Car Entertainment (ICE)\n * On-Board Monitor\n * Eight Speakers\n * Miscellaneous\n * Hill Holder\n * Safety System\n\n**Performance**\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque imperial\n\n147.512 lb/ft\n\n**Economy**\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg extra urban**\n\n64.2 mpg\n\n**Environment**\n\nCo2 Emissions**\n\n117.0 g/km\n\nBuying you next new Honda is an exciting experience. You will be benefiting\nfrom our legendary reliability and be assured that your car is prepared to the\nhighest standards by Honda trained technicians and supported by a full Honda\nguarantee. Honda cars offer exceptional long-term value, technical innovation,\ndistinctive looks and character. You will also be able to choose from a range\nof bespoke service packages to keep your car as good as new. With around 200\ndealers nationwide the network ensures outstanding customer service at your\nconvenience. At any one time there are up to 8,000 used cars to choose from on\nthis website, providing you with the best choice of Approved Honda cars\nanywhere. \n \n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This\nmeans you can enjoy driving your Honda immediately, safe in the knowledge that\nwe’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance\noptions that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and\nincludes Hondacare Assistance, our bespoke roadside assistance package, which\nprovides cover in the UK and Europe. We’ll even come out to you should you\nhave a puncture or a flat battery. You also have the option to extend your\nguarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians,\nensures that your new car meets our high quality standards. Our multi-point\nincludes lighting equipment and instruments, steering and suspension, brakes,\nand even body work. Your car will also undergo a detailed engine check and a\nthorough road test for your safety and satisfaction. Finally, your car goes\nthrough an in-depth valet and polish so that it’s fully prepared when you come\nto drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous\nownership, any outstanding finance has been settled, has incurred no major\naccident damage, and any registration number change are noted. You will be\nprovided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer\nNetwork will have the mileage checked against previous history, including\nwriting to previous owners to ensure that there are no mileage irregularities.\nYou will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at\npreferential terms in conjunction with your annual scheduled service. You will\nbenefit from this reduced cost on the understanding that the MOT TEST is\ncarried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre\nSales check to give you the assurance that you are purchasing an unrivalled\nquality car, however, we undertake that, should any mechanical or electrical\ndefect occur within the first 30 days or 1000 miles of your ownership which\ncannot be rectified by an authorised Honda dealer, and providing that the car\nis in the same condition when purchased then your supplying dealer will\nexchange it for another of equivalent or greater value.* *Please refer to your\nnearest dealer for specific terms and conditions or refer to link on this\nsite.\n\n## Finance this car\n\n![Honda Finance](http://campbellhonda-\nnewry.usedcars.honda.co.uk/userdata/500013/layout/honda-finance-logo.png)\n\n![Opening Image](http://campbellhonda-\nnewry.usedcars.honda.co.uk/userdata/500013/layout/opening-status-closed.png)\n\n### Car Sales Opening Hours\n\nMonday| 09:00 - 17:30 \n---|--- \nTuesday| 09:00 - 20:00 \nWednesday| 09:00 - 17:30 \nThursday| 09:00 - 20:00 \nFriday| 09:00 - 17:30 \nSaturday| 09:00 - 13:00 \n \nPlease note some vehicles advertised on this website may have been used for\nbusiness purposes (e.g. previous manufacturers vehicle, previous fleet\nvehicle) and/or had multiple users. Please ensure you ask the selling Dealer\nabout your chosen vehicle(s) when making your enquiry.\n\n", "magic-html_content_list": [], "magic-html_success": true, "magic-html_time": 0.06996703147888184, "magic-html_text_edit_score": 0.5453646748681897, "magic-html_table_edit_score": 0.0, "magic-html_table_TEDS_score": 0.0, "magic-html_overall_score": 0.18178822495606325, "magic-html_predicted_code": "", "magic-html_predicted_formula": "", "magic-html_predicted_table": "", "magic-html_predicted_text": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](http://campbellhonda-\nnewry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg)\n\nReg Number: **OY67UBO**\n\n1st reg date: **2017**\n\nExterior: **Black Metallic**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nCampbell Honda \nShore Road \nNewry, , BT34 3AA \n\n## Fitted as standard\n\n * Wheels and Tyres\n * 17In Alloy Wheels\n * Tyre Pressure Control\n * Instruments and Controls\n * Front/Rear Electric Windows\n * Satellite Navigation\n * Front/Rear Parking Aid\n * Audio/Gears Steering Wheel Mounted Controls\n * Rain Sensor\n * Speed Limiter\n * Safety\n * Electronic Brake Force Distribution\n * Anti-Lock Brakes\n * Driver, Passenger And Front Side Air Bags\n * Centre Rear Seat Belt\n * Security\n * Alarm\n * Remote Central Door Locking\n * Immobiliser\n * Exterior\n * Tinted Glass\n * Front Fog Lights\n * Electric/Heated Door Mirrors\n * LED Daytime Running Lights Exterior Lighting\n * Gear Knob Leather\n * Comfort and Convenience\n * Automatic Air Conditioning\n * Cruise Control\n * Front/Rear Armrest\n * Whiplash Protection System\n * Power-Assisted Steering\n * Heated Rear Screen\n * Map Interior Lights\n * Centre Console\n * Seating\n * Driver Seat Height Adjustment\n * Rear Seat - ISOFIX Anchorage Point\n * Driver Seat Lumbar Support\n * In Car Entertainment (ICE)\n * On-Board Monitor\n * Eight Speakers\n * Miscellaneous\n * Hill Holder\n * Safety System\n\n**Performance**\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque imperial\n\n147.512 lb/ft\n\n**Economy**\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg extra urban**\n\n64.2 mpg\n\n**Environment**\n\nCo2 Emissions**\n\n117.0 g/km\n\nBuying you next new Honda is an exciting experience. You will be benefiting\nfrom our legendary reliability and be assured that your car is prepared to the\nhighest standards by Honda trained technicians and supported by a full Honda\nguarantee. Honda cars offer exceptional long-term value, technical innovation,\ndistinctive looks and character. You will also be able to choose from a range\nof bespoke service packages to keep your car as good as new. With around 200\ndealers nationwide the network ensures outstanding customer service at your\nconvenience. At any one time there are up to 8,000 used cars to choose from on\nthis website, providing you with the best choice of Approved Honda cars\nanywhere. \n \n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This\nmeans you can enjoy driving your Honda immediately, safe in the knowledge that\nwe’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance\noptions that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and\nincludes Hondacare Assistance, our bespoke roadside assistance package, which\nprovides cover in the UK and Europe. We’ll even come out to you should you\nhave a puncture or a flat battery. You also have the option to extend your\nguarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians,\nensures that your new car meets our high quality standards. Our multi-point\nincludes lighting equipment and instruments, steering and suspension, brakes,\nand even body work. Your car will also undergo a detailed engine check and a\nthorough road test for your safety and satisfaction. Finally, your car goes\nthrough an in-depth valet and polish so that it’s fully prepared when you come\nto drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous\nownership, any outstanding finance has been settled, has incurred no major\naccident damage, and any registration number change are noted. You will be\nprovided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer\nNetwork will have the mileage checked against previous history, including\nwriting to previous owners to ensure that there are no mileage irregularities.\nYou will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at\npreferential terms in conjunction with your annual scheduled service. You will\nbenefit from this reduced cost on the understanding that the MOT TEST is\ncarried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre\nSales check to give you the assurance that you are purchasing an unrivalled\nquality car, however, we undertake that, should any mechanical or electrical\ndefect occur within the first 30 days or 1000 miles of your ownership which\ncannot be rectified by an authorised Honda dealer, and providing that the car\nis in the same condition when purchased then your supplying dealer will\nexchange it for another of equivalent or greater value.* *Please refer to your\nnearest dealer for specific terms and conditions or refer to link on this\nsite.\n\n## Finance this car\n\n![Honda Finance](http://campbellhonda-\nnewry.usedcars.honda.co.uk/userdata/500013/layout/honda-finance-logo.png)\n\n![Opening Image](http://campbellhonda-\nnewry.usedcars.honda.co.uk/userdata/500013/layout/opening-status-closed.png)\n\n### Car Sales Opening Hours\n\nMonday| 09:00 - 17:30 \n---|--- \nTuesday| 09:00 - 20:00 \nWednesday| 09:00 - 17:30 \nThursday| 09:00 - 20:00 \nFriday| 09:00 - 17:30 \nSaturday| 09:00 - 13:00 \n \nPlease note some vehicles advertised on this website may have been used for\nbusiness purposes (e.g. previous manufacturers vehicle, previous fleet\nvehicle) and/or had multiple users. Please ensure you ask the selling Dealer\nabout your chosen vehicle(s) when making your enquiry.\n\n", "trafilatura_content": "Reg Number:\n\n**CSZ5535**1st reg date:\n\n**2017**Exterior:\n\n**Blue**Mileage:\n\n**5,000 miles**Fuel Type:\n\n**Petrol**Transmission:\n\n**Automatic**Consumption:\n\n**57 mpg**CO2 Emission:\n\n**114 g/km**Insurance:\n\nMar 2017Blue5,000 milesCSZ5535PetrolAutomatic**15**Reg Number: **OY67UBO**\n\n1st reg date: ** 2017**\n\nExterior: **Black Metallic**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nCampbell Honda\nShore Road\nNewry, , BT34 3AA\n\nWheels and Tyres\n-\n17In Alloy Wheels\n-\nTyre Pressure Control\n-\nInstruments and Controls\n-\nFront/Rear Electric Windows\n-\nSatellite Navigation\n-\nFront/Rear Parking Aid\n-\nAudio/Gears Steering Wheel Mounted Controls\n-\nRain Sensor\n-\nSpeed Limiter\n-\nSafety\n-\nElectronic Brake Force Distribution\n-\nAnti-Lock Brakes\n-\nDriver, Passenger And Front Side Air Bags\n-\nCentre Rear Seat Belt\n-\nSecurity\n-\nAlarm\n-\nRemote Central Door Locking\n-\nImmobiliser\n-\nExterior\n-\nTinted Glass\n-\nFront Fog Lights\n-\nElectric/Heated Door Mirrors\n-\nLED Daytime Running Lights Exterior Lighting\n-\nGear Knob Leather\n-\nComfort and Convenience\n-\nAutomatic Air Conditioning\n-\nCruise Control\n-\nFront/Rear Armrest\n-\nWhiplash Protection System\n-\nPower-Assisted Steering\n-\nHeated Rear Screen\n-\nMap Interior Lights\n-\nCentre Console\n-\nSeating\n-\nDriver Seat Height Adjustment\n-\nRear Seat - ISOFIX Anchorage Point\n-\nDriver Seat Lumbar Support\n-\nIn Car Entertainment (ICE)\n-\nOn-Board Monitor\n-\nEight Speakers\n-\nMiscellaneous\n-\nHill Holder\n-\nSafety System\n-\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nCo2 Emissions**\n\n117.0 g/km\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\nReg Number: **CSZ5535**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **5,000 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **57 mpg**\n\nCO2 Emission: **114 g/km**\n\nInsurance: **15**\n\nMar 2017Blue5,000 milesCSZ5535PetrolAutomaticReg Number: **BSZ7899**\n\n1st reg date: ** 2018**\n\nExterior: **White**\n\nMileage: **2,200 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nMar 2018White2,200 milesBSZ7899PetrolManualReg Number: **RF67HHY**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **12,800 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nJan 2018Blue12,800 milesRF67HHYPetrolManualReg Number: **OW17ZFR**\n\n1st reg date: ** 2017**\n\nExterior: **White**\n\nMileage: **12,400 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **57 mpg**\n\nCO2 Emission: **114 g/km**\n\nInsurance: **15**\n\nJul 2017White12,400 milesOW17ZFRPetrolAutomaticReg Number: **OY67UBO**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nSep 2017Black11,500 milesOY67UBOPetrolManualReg Number: **BSZ7461**\n\n1st reg date: ** 2018**\n\nExterior: **Silver**\n\nMileage: **3,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **168 g/km**\n\nInsurance: **22**\n\nFeb 2018Silver3,500 milesBSZ7461PetrolManualReg Number: **CSZ5474**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **10 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **71 mpg**\n\nCO2 Emission: **104 g/km**\n\nInsurance: **20**\n\nSep 2018Blue10 milesCSZ5474DieselManualReg Number: **OY18XNS**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **11,850 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nMar 2018Blue11,850 milesOY18XNSDieselManualReg Number: **LGZ2840**\n\n1st reg date: ** 2015**\n\nExterior: **Black**\n\nMileage: **19,635 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **37 mpg**\n\nCO2 Emission: **179 g/km**\n\nInsurance: **23**\n\nMar 2015Black19,635 milesLGZ2840PetrolAutomaticReg Number: **BSZ1531**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **3,191 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **170 g/km**\n\nInsurance: **33**\n\nAug 2017Black3,191 milesBSZ1531PetrolManualReg Number: **OY18OCE**\n\n1st reg date: ** 2018**\n\nExterior: **Red**\n\nMileage: **11,243 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **58 mpg**\n\nCO2 Emission: **129 g/km**\n\nInsurance: **27**\n\nMar 2018Red11,243 milesOY18OCEDieselManualReg Number: **OV18OAX**\n\n1st reg date: ** 2018**\n\nExterior: **Brown**\n\nMileage: **13,134 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nApr 2018Brown13,134 milesOV18OAXDieselManualReg Number: **OY18VDR**\n\n1st reg date: ** 2018**\n\nExterior: **Black**\n\nMileage: **12,160 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nMar 2018Black12,160 milesOY18VDRDieselManualReg Number: **OY67ZWX**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **13,274 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nSep 2017Blue13,274 milesOY67ZWXDieselManualReg Number: **LXZ9923**\n\n1st reg date: ** 2017**\n\nExterior: **Silver**\n\nMileage: **18,200 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Automatic**\n\nConsumption: **53 mpg**\n\nCO2 Emission: **139 g/km**\n\nInsurance: **27**\n\nJan 2017Silver18,200 milesLXZ9923DieselAutomaticReg Number: **OY67ZWV**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **9,548 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nSep 2017Black9,548 milesOY67ZWVDieselManualReg Number: **BSZ9747**\n\n1st reg date: ** 2018**\n\nExterior: **White**\n\nMileage: **1,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **170 g/km**\n\nInsurance: **33**\n\nMay 2018White1,500 milesBSZ9747PetrolManualReg Number: **RE67VXB**\n\n1st reg date: ** 2017**\n\nExterior: **Silver**\n\nMileage: **13,125 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **133 g/km**\n\nInsurance: **27**\n\nDec 2017Silver13,125 milesRE67VXBDieselManualReg Number: **OV67OFW**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **11,800 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nOct 2017Blue11,800 milesOV67OFWDieselManualReg Number: **BXZ4737**\n\n1st reg date: ** 2011**\n\nExterior: **Yellow**\n\nMileage: **93,000 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **44 mpg**\n\nCO2 Emission: **171 g/km**\n\nInsurance: **28**\n\nApr 2011Yellow93,000 milesBXZ4737DieselManualPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\n", "trafilatura_content_list": [], "trafilatura_success": true, "trafilatura_time": 0.09441804885864258, "trafilatura_text_edit_score": 0.37871239701092163, "trafilatura_table_edit_score": 0.0, "trafilatura_table_TEDS_score": 0.0, "trafilatura_overall_score": 0.12623746567030722, "trafilatura_predicted_code": "", "trafilatura_predicted_formula": "", "trafilatura_predicted_table": "", "trafilatura_predicted_text": "Reg Number:\n\n**CSZ5535**1st reg date:\n\n**2017**Exterior:\n\n**Blue**Mileage:\n\n**5,000 miles**Fuel Type:\n\n**Petrol**Transmission:\n\n**Automatic**Consumption:\n\n**57 mpg**CO2 Emission:\n\n**114 g/km**Insurance:\n\nMar 2017Blue5,000 milesCSZ5535PetrolAutomatic**15**Reg Number: **OY67UBO**\n\n1st reg date: ** 2017**\n\nExterior: **Black Metallic**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nCampbell Honda\nShore Road\nNewry, , BT34 3AA\n\nWheels and Tyres\n-\n17In Alloy Wheels\n-\nTyre Pressure Control\n-\nInstruments and Controls\n-\nFront/Rear Electric Windows\n-\nSatellite Navigation\n-\nFront/Rear Parking Aid\n-\nAudio/Gears Steering Wheel Mounted Controls\n-\nRain Sensor\n-\nSpeed Limiter\n-\nSafety\n-\nElectronic Brake Force Distribution\n-\nAnti-Lock Brakes\n-\nDriver, Passenger And Front Side Air Bags\n-\nCentre Rear Seat Belt\n-\nSecurity\n-\nAlarm\n-\nRemote Central Door Locking\n-\nImmobiliser\n-\nExterior\n-\nTinted Glass\n-\nFront Fog Lights\n-\nElectric/Heated Door Mirrors\n-\nLED Daytime Running Lights Exterior Lighting\n-\nGear Knob Leather\n-\nComfort and Convenience\n-\nAutomatic Air Conditioning\n-\nCruise Control\n-\nFront/Rear Armrest\n-\nWhiplash Protection System\n-\nPower-Assisted Steering\n-\nHeated Rear Screen\n-\nMap Interior Lights\n-\nCentre Console\n-\nSeating\n-\nDriver Seat Height Adjustment\n-\nRear Seat - ISOFIX Anchorage Point\n-\nDriver Seat Lumbar Support\n-\nIn Car Entertainment (ICE)\n-\nOn-Board Monitor\n-\nEight Speakers\n-\nMiscellaneous\n-\nHill Holder\n-\nSafety System\n-\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nCo2 Emissions**\n\n117.0 g/km\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\nReg Number: **CSZ5535**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **5,000 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **57 mpg**\n\nCO2 Emission: **114 g/km**\n\nInsurance: **15**\n\nMar 2017Blue5,000 milesCSZ5535PetrolAutomaticReg Number: **BSZ7899**\n\n1st reg date: ** 2018**\n\nExterior: **White**\n\nMileage: **2,200 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nMar 2018White2,200 milesBSZ7899PetrolManualReg Number: **RF67HHY**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **12,800 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nJan 2018Blue12,800 milesRF67HHYPetrolManualReg Number: **OW17ZFR**\n\n1st reg date: ** 2017**\n\nExterior: **White**\n\nMileage: **12,400 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **57 mpg**\n\nCO2 Emission: **114 g/km**\n\nInsurance: **15**\n\nJul 2017White12,400 milesOW17ZFRPetrolAutomaticReg Number: **OY67UBO**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nSep 2017Black11,500 milesOY67UBOPetrolManualReg Number: **BSZ7461**\n\n1st reg date: ** 2018**\n\nExterior: **Silver**\n\nMileage: **3,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **168 g/km**\n\nInsurance: **22**\n\nFeb 2018Silver3,500 milesBSZ7461PetrolManualReg Number: **CSZ5474**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **10 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **71 mpg**\n\nCO2 Emission: **104 g/km**\n\nInsurance: **20**\n\nSep 2018Blue10 milesCSZ5474DieselManualReg Number: **OY18XNS**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **11,850 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nMar 2018Blue11,850 milesOY18XNSDieselManualReg Number: **LGZ2840**\n\n1st reg date: ** 2015**\n\nExterior: **Black**\n\nMileage: **19,635 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **37 mpg**\n\nCO2 Emission: **179 g/km**\n\nInsurance: **23**\n\nMar 2015Black19,635 milesLGZ2840PetrolAutomaticReg Number: **BSZ1531**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **3,191 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **170 g/km**\n\nInsurance: **33**\n\nAug 2017Black3,191 milesBSZ1531PetrolManualReg Number: **OY18OCE**\n\n1st reg date: ** 2018**\n\nExterior: **Red**\n\nMileage: **11,243 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **58 mpg**\n\nCO2 Emission: **129 g/km**\n\nInsurance: **27**\n\nMar 2018Red11,243 milesOY18OCEDieselManualReg Number: **OV18OAX**\n\n1st reg date: ** 2018**\n\nExterior: **Brown**\n\nMileage: **13,134 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nApr 2018Brown13,134 milesOV18OAXDieselManualReg Number: **OY18VDR**\n\n1st reg date: ** 2018**\n\nExterior: **Black**\n\nMileage: **12,160 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nMar 2018Black12,160 milesOY18VDRDieselManualReg Number: **OY67ZWX**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **13,274 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nSep 2017Blue13,274 milesOY67ZWXDieselManualReg Number: **LXZ9923**\n\n1st reg date: ** 2017**\n\nExterior: **Silver**\n\nMileage: **18,200 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Automatic**\n\nConsumption: **53 mpg**\n\nCO2 Emission: **139 g/km**\n\nInsurance: **27**\n\nJan 2017Silver18,200 milesLXZ9923DieselAutomaticReg Number: **OY67ZWV**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **9,548 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nSep 2017Black9,548 milesOY67ZWVDieselManualReg Number: **BSZ9747**\n\n1st reg date: ** 2018**\n\nExterior: **White**\n\nMileage: **1,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **170 g/km**\n\nInsurance: **33**\n\nMay 2018White1,500 milesBSZ9747PetrolManualReg Number: **RE67VXB**\n\n1st reg date: ** 2017**\n\nExterior: **Silver**\n\nMileage: **13,125 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **133 g/km**\n\nInsurance: **27**\n\nDec 2017Silver13,125 milesRE67VXBDieselManualReg Number: **OV67OFW**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **11,800 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nOct 2017Blue11,800 milesOV67OFWDieselManualReg Number: **BXZ4737**\n\n1st reg date: ** 2011**\n\nExterior: **Yellow**\n\nMileage: **93,000 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **44 mpg**\n\nCO2 Emission: **171 g/km**\n\nInsurance: **28**\n\nApr 2011Yellow93,000 milesBXZ4737DieselManualPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\n", "resiliparse_content": "a\n\nWe've got cookies\nOur website uses cookies. If you use the site, that means you're happy for this to happen. Hope that's okay. Read our cookie policy\nLet's move on\nFavouritesMy ComparisonSaved Searches\nHonda Logo\n \nCampbell HondaShore RoadNewryBT34 3AA\nCampbell Honda\n028 417 38463\nBack\nPrevious vehicleNext vehicle\n\nHonda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nReg Number: OY67UBO\n1st reg date: 2017\nExterior: Black Metallic\nMileage: 11,500 miles\nFuel Type: Petrol\nTransmission: Manual\nConsumption: 55 mpg\nCO2 Emission: 117 g/km\nInsurance: 15\nHonda Quality Plus\nContact\nFavouriteREMOVE FROM FAVOURITES\nCompareREMOVE FROM COMPARE\nCampbell Honda\nShore Road\nNewry, , BT34 3AA\n\nGet directions\n\nEquipmentSpecificationLarger ImagesApproved Benefits\n\nFitted as standard\n\n • Wheels and Tyres\n • 17In Alloy Wheels\n • Tyre Pressure Control\n • Instruments and Controls\n • Front/Rear Electric Windows\n • Satellite Navigation\n • Front/Rear Parking Aid\n • Audio/Gears Steering Wheel Mounted Controls\n • Rain Sensor\n • Speed Limiter\n • Safety\n • Electronic Brake Force Distribution\n • Anti-Lock Brakes\n • Driver, Passenger And Front Side Air Bags\n • Centre Rear Seat Belt\n • Security\n • Alarm\n • Remote Central Door Locking\n • Immobiliser\n • Exterior\n • Tinted Glass\n • Front Fog Lights\n • Electric/Heated Door Mirrors\n • LED Daytime Running Lights Exterior Lighting\n • Gear Knob Leather\n • Comfort and Convenience\n • Automatic Air Conditioning\n • Cruise Control\n • Front/Rear Armrest\n • Whiplash Protection System\n • Power-Assisted Steering\n • Heated Rear Screen\n • Map Interior Lights\n • Centre Console\n • Seating\n • Driver Seat Height Adjustment\n • Rear Seat - ISOFIX Anchorage Point\n • Driver Seat Lumbar Support\n • In Car Entertainment (ICE)\n • On-Board Monitor\n • Eight Speakers\n • Miscellaneous\n • Hill Holder\n • Safety System\nPerformance\nAcceleration (0-60mph)\n10.9 secs\nMax torque\n200 nm\nMax torque imperial\n147.512 lb/ft\nCubic Capacity\n988 cc\nPower\n127 PS\nEconomy\nLitres/100 km Urban**\n6.40 l/100km\nLitres/100 km Extra Urban**\n4.40 l/100km\nLitres/100 km combined**\n5.10 l/100km\nMpg urban**\n44.1 mpg\nMpg extra urban**\n64.2 mpg\nMpg combined**\n55.4 mpg\nEngine\nTank capacity\n46 l\nNumber of cylinders\n3\nDimensions\nKerb Weight\n1275 kg\nVehicle Length\n4518 cm\nVehicle Width\n2076 cm\nVehicle Height\n1434 cm\nVehicle Wheelbase\n2697 mm\nEnvironment\nCo2 Emissions**\n117.0 g/km\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee. Honda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience. At any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\nComplimentary 5-day drive-away insurance\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\nA range of financial solutions\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n12 month Honda Approved Used Car Guarantee\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\nRigorous checking and preparation\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work. Your car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\nAssured vehicle history\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\nMileage certification\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\nPreferential MOT Test\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n30-day exchange policy\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.* *Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\nFinance this car\n\nHonda Finance\n\nCampbell Honda\n\nCall us: Shore Road\nNewry, BT34 3AA\nGet directions\nOpening Image\n\nCar Sales Opening Hours\n\nMonday09:00 - 17:30\nTuesday09:00 - 20:00\nWednesday09:00 - 17:30\nThursday09:00 - 20:00\nFriday09:00 - 17:30\nSaturday09:00 - 13:00\n\nCustomer reviews by logo reevoo\n\nAppointment for test-driveMake an enquiry\n\nSimilar Vehicles\n\n/\nPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\nBack to top", "resiliparse_content_list": [], "resiliparse_success": true, "resiliparse_time": 0.002476930618286133, "resiliparse_text_edit_score": 0.7493870879869245, "resiliparse_table_edit_score": 0.0, "resiliparse_table_TEDS_score": 0.0, "resiliparse_overall_score": 0.24979569599564153, "resiliparse_predicted_code": "", "resiliparse_predicted_formula": "", "resiliparse_predicted_table": "", "resiliparse_predicted_text": "a\n\nWe've got cookies\nOur website uses cookies. If you use the site, that means you're happy for this to happen. Hope that's okay. Read our cookie policy\nLet's move on\nFavouritesMy ComparisonSaved Searches\nHonda Logo\n \nCampbell HondaShore RoadNewryBT34 3AA\nCampbell Honda\n028 417 38463\nBack\nPrevious vehicleNext vehicle\n\nHonda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nReg Number: OY67UBO\n1st reg date: 2017\nExterior: Black Metallic\nMileage: 11,500 miles\nFuel Type: Petrol\nTransmission: Manual\nConsumption: 55 mpg\nCO2 Emission: 117 g/km\nInsurance: 15\nHonda Quality Plus\nContact\nFavouriteREMOVE FROM FAVOURITES\nCompareREMOVE FROM COMPARE\nCampbell Honda\nShore Road\nNewry, , BT34 3AA\n\nGet directions\n\nEquipmentSpecificationLarger ImagesApproved Benefits\n\nFitted as standard\n\n • Wheels and Tyres\n • 17In Alloy Wheels\n • Tyre Pressure Control\n • Instruments and Controls\n • Front/Rear Electric Windows\n • Satellite Navigation\n • Front/Rear Parking Aid\n • Audio/Gears Steering Wheel Mounted Controls\n • Rain Sensor\n • Speed Limiter\n • Safety\n • Electronic Brake Force Distribution\n • Anti-Lock Brakes\n • Driver, Passenger And Front Side Air Bags\n • Centre Rear Seat Belt\n • Security\n • Alarm\n • Remote Central Door Locking\n • Immobiliser\n • Exterior\n • Tinted Glass\n • Front Fog Lights\n • Electric/Heated Door Mirrors\n • LED Daytime Running Lights Exterior Lighting\n • Gear Knob Leather\n • Comfort and Convenience\n • Automatic Air Conditioning\n • Cruise Control\n • Front/Rear Armrest\n • Whiplash Protection System\n • Power-Assisted Steering\n • Heated Rear Screen\n • Map Interior Lights\n • Centre Console\n • Seating\n • Driver Seat Height Adjustment\n • Rear Seat - ISOFIX Anchorage Point\n • Driver Seat Lumbar Support\n • In Car Entertainment (ICE)\n • On-Board Monitor\n • Eight Speakers\n • Miscellaneous\n • Hill Holder\n • Safety System\nPerformance\nAcceleration (0-60mph)\n10.9 secs\nMax torque\n200 nm\nMax torque imperial\n147.512 lb/ft\nCubic Capacity\n988 cc\nPower\n127 PS\nEconomy\nLitres/100 km Urban**\n6.40 l/100km\nLitres/100 km Extra Urban**\n4.40 l/100km\nLitres/100 km combined**\n5.10 l/100km\nMpg urban**\n44.1 mpg\nMpg extra urban**\n64.2 mpg\nMpg combined**\n55.4 mpg\nEngine\nTank capacity\n46 l\nNumber of cylinders\n3\nDimensions\nKerb Weight\n1275 kg\nVehicle Length\n4518 cm\nVehicle Width\n2076 cm\nVehicle Height\n1434 cm\nVehicle Wheelbase\n2697 mm\nEnvironment\nCo2 Emissions**\n117.0 g/km\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee. Honda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience. At any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\nComplimentary 5-day drive-away insurance\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\nA range of financial solutions\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n12 month Honda Approved Used Car Guarantee\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\nRigorous checking and preparation\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work. Your car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\nAssured vehicle history\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\nMileage certification\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\nPreferential MOT Test\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n30-day exchange policy\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.* *Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\nFinance this car\n\nHonda Finance\n\nCampbell Honda\n\nCall us: Shore Road\nNewry, BT34 3AA\nGet directions\nOpening Image\n\nCar Sales Opening Hours\n\nMonday09:00 - 17:30\nTuesday09:00 - 20:00\nWednesday09:00 - 17:30\nThursday09:00 - 20:00\nFriday09:00 - 17:30\nSaturday09:00 - 13:00\n\nCustomer reviews by logo reevoo\n\nAppointment for test-driveMake an enquiry\n\nSimilar Vehicles\n\n/\nPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\nBack to top", "groundtruth_groundtruth_code": "", "groundtruth_groundtruth_formula": "", "groundtruth_groundtruth_table": "| Monday | 09:00 - 17:30 |\n|---|---|\n| Tuesday | 09:00 - 20:00 |\n| Wednesday | 09:00 - 17:30 |\n| Thursday | 09:00 - 20:00 |\n| Friday | 09:00 - 17:30 |\n| Saturday | 09:00 - 13:00 |", "groundtruth_groundtruth_text": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\nContact\n\nFavourite REMOVE FROM FAVOURITES\n\nCompare REMOVE FROM COMPARE\n\nCampbell Honda\n\n Shore Road\n\n Newry, , BT34 3AA\n\n## Fitted as standard\n\n- Wheels and Tyres\n- 17In Alloy Wheels\n- Tyre Pressure Control\n- Instruments and Controls\n- Front/Rear Electric Windows\n- Satellite Navigation\n- Front/Rear Parking Aid\n- Audio/Gears Steering Wheel Mounted Controls\n- Rain Sensor\n- Speed Limiter\n- Safety\n- Electronic Brake Force Distribution\n- Anti-Lock Brakes\n- Driver, Passenger And Front Side Air Bags\n- Centre Rear Seat Belt\n- Security\n- Alarm\n- Remote Central Door Locking\n- Immobiliser\n- Exterior\n- Tinted Glass\n- Front Fog Lights\n- Electric/Heated Door Mirrors\n- LED Daytime Running Lights Exterior Lighting\n- Gear Knob Leather\n- Comfort and Convenience\n- Automatic Air Conditioning\n- Cruise Control\n- Front/Rear Armrest\n- Whiplash Protection System\n- Power-Assisted Steering\n- Heated Rear Screen\n- Map Interior Lights\n- Centre Console\n- Seating\n- Driver Seat Height Adjustment\n- Rear Seat - ISOFIX Anchorage Point\n- Driver Seat Lumbar Support\n- In Car Entertainment (ICE)\n- On-Board Monitor\n- Eight Speakers\n- Miscellaneous\n- Hill Holder\n- Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km\n\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\n## Finance this car\n\n## Campbell Honda\n\nCall us: Shore Road\n\n Newry, BT34 3AA\n\n Get directions\n\n### Car Sales Opening Hours\n\n| Monday | 09:00 - 17:30 |\n|---|---|\n| Tuesday | 09:00 - 20:00 |\n| Wednesday | 09:00 - 17:30 |\n| Thursday | 09:00 - 20:00 |\n| Friday | 09:00 - 17:30 |\n| Saturday | 09:00 - 13:00 |\n"} -{"id": "33e291cd-5b26-48b1-977f-3c63b45e6d13", "html": "\n\n\nLOGO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
top of page
\"THE

THE PALM INSTITUTE LOGO

PREMIUM GRAPHIC DESIGN

ORDER YOUR LOGO

- Graphic, typographic and colorimetric research and proposal

- Delivery of your files in High Resolution

 

SATISFACTION GUARANTEED

- The number of modifications is unlimited so that you are fully satisfied

    CHF1,290.00 Regular Price
    CHF903.00Sale Price
    bottom of page
    \n\n\n\n\n\n\n\n\n\n\n", "groundtruth_content": "## THE PALM INSTITUTE LOGO\n\n### PREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n\\- Graphic, typographic and colorimetric research and proposal\n\n \\- Delivery of your files in High Resolution\n ### SATISFACTION GUARANTEED\n \\- The number of modifications is unlimited so that you are fully satisfied\n", "groundtruth_content_list": [[{"type": "image", "raw_content": "\"THE", "content": {"url": "https://static.wixstatic.com/media/ea415c_4f8a0408b44d41d78a56f69071579e2d~mv2.jpg/v1/fill/w_980,h_601,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/ea415c_4f8a0408b44d41d78a56f69071579e2d~mv2.jpg", "data": null, "alt": "THE PALM INSTITUTE LOGO", "title": null, "caption": null}}, {"type": "title", "raw_content": "

    THE PALM INSTITUTE LOGO

    ", "content": {"title_content": "THE PALM INSTITUTE LOGO", "level": "1"}}, {"type": "paragraph", "raw_content": "

    PREMIUM GRAPHIC DESIGN

    ORDER YOUR LOGO

    - Graphic, typographic and colorimetric research and proposal

    - Delivery of your files in High Resolution

    SATISFACTION GUARANTEED

    - The number of modifications is unlimited so that you are fully satisfied

    ", "content": [{"c": "PREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n- Graphic, typographic and colorimetric research and proposal\n - Delivery of your files in High Resolution\n SATISFACTION GUARANTEED\n - The number of modifications is unlimited so that you are fully satisfied", "t": "text"}]}]], "content_list": null, "content": null, "llm_webkit_md": "# THE PALM INSTITUTE LOGO\n\n```\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n - Delivery of your files in High Resolution\n\n SATISFACTION GUARANTEED\n\n - The number of modifications is unlimited so that you are fully satisfied\n```\n", "llm_webkit_html": "\n\n
    \n
    \n
    \n
    \n
    \n

    THE PALM INSTITUTE LOGO

    \n

    PREMIUM GRAPHIC DESIGN

    ORDER YOUR LOGO

    \n

    - Graphic, typographic and colorimetric research and proposal

    \n

    - Delivery of your files in High Resolution

    \n

    SATISFACTION GUARANTEED

    \n

    - The number of modifications is unlimited so that you are fully satisfied

    \n
    \n
    \n
    \n
    \n
    \n
    \n\n", "url": "https://www.creativia.ch/en/product-page/logo-palm-institute", "domain": null, "language": "en", "content_type": null, "difficulty": null, "tags": null, "extracted_results": null, "llm-webkit_content": "# THE PALM INSTITUTE LOGO\n\n```\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n - Delivery of your files in High Resolution\n\n SATISFACTION GUARANTEED\n\n - The number of modifications is unlimited so that you are fully satisfied\n```", "llm-webkit_content_list": [], "llm-webkit_success": true, "llm-webkit_time": 0.004807949066162109, "llm-webkit_code_edit_score": 0.0, "llm-webkit_text_edit_score": 0.9446366782006921, "llm-webkit_overall_score": 0.47231833910034604, "llm-webkit_predicted_code": "PREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n - Delivery of your files in High Resolution\n\n SATISFACTION GUARANTEED\n\n - The number of modifications is unlimited so that you are fully satisfied", "llm-webkit_predicted_formula": "", "llm-webkit_predicted_table": "", "llm-webkit_predicted_text": "# THE PALM INSTITUTE LOGO\n\n```\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n - Delivery of your files in High Resolution\n\n SATISFACTION GUARANTEED\n\n - The number of modifications is unlimited so that you are fully satisfied\n```", "magic-html_content": "# THE PALM INSTITUTE LOGO\n\n \n \n **PREMIUM GRAPHIC DESIGN**\n \n ORDER YOUR LOGO\n \n - Graphic, typographic and colorimetric research and proposal\n \n - Delivery of your files in High Resolution\n \n \n \n **SATISFACTION GUARANTEED**\n \n - The number of modifications is unlimited so that you are fully satisfied\n\nCHF1,290.00 Regular Price\n\nCHF903.00Sale Price\n\n", "magic-html_content_list": [], "magic-html_success": true, "magic-html_time": 0.020486116409301758, "magic-html_text_edit_score": 0.6898263027295286, "magic-html_overall_score": 0.6898263027295286, "magic-html_predicted_code": "", "magic-html_predicted_formula": "", "magic-html_predicted_table": "", "magic-html_predicted_text": "# THE PALM INSTITUTE LOGO\n\n \n \n **PREMIUM GRAPHIC DESIGN**\n \n ORDER YOUR LOGO\n \n - Graphic, typographic and colorimetric research and proposal\n \n - Delivery of your files in High Resolution\n \n \n \n **SATISFACTION GUARANTEED**\n \n - The number of modifications is unlimited so that you are fully satisfied\n\nCHF1,290.00 Regular Price\n\nCHF903.00Sale Price\n\n", "trafilatura_content": "# THE PALM INSTITUTE LOGO\nPREMIUM GRAPHIC DESIGNORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n- Delivery of your files in High Resolution\n\n\n\nSATISFACTION GUARANTEED- The number of modifications is unlimited so that you are fully satisfied\n\nCHF1,290.00 Regular Price\n\nCHF903.00Sale Price\n", "trafilatura_content_list": [], "trafilatura_success": true, "trafilatura_time": 0.019816160202026367, "trafilatura_text_edit_score": 0.7912772585669782, "trafilatura_overall_score": 0.7912772585669782, "trafilatura_predicted_code": "", "trafilatura_predicted_formula": "", "trafilatura_predicted_table": "", "trafilatura_predicted_text": "# THE PALM INSTITUTE LOGO\nPREMIUM GRAPHIC DESIGNORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n- Delivery of your files in High Resolution\n\n\n\nSATISFACTION GUARANTEED- The number of modifications is unlimited so that you are fully satisfied\n\nCHF1,290.00 Regular Price\n\nCHF903.00Sale Price\n", "resiliparse_content": "top of page\nTHE PALM INSTITUTE LOGO\n\nTHE PALM INSTITUTE LOGO\n\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n- Graphic, typographic and colorimetric research and proposal\n - Delivery of your files in High Resolution\n  \n SATISFACTION GUARANTEED\n - The number of modifications is unlimited so that you are fully satisfied\n CHF1,290.00 Regular Price\n CHF903.00Sale Price\n bottom of page", "resiliparse_content_list": [], "resiliparse_success": true, "resiliparse_time": 0.0013070106506347656, "resiliparse_text_edit_score": 0.7012987012987013, "resiliparse_overall_score": 0.7012987012987013, "resiliparse_predicted_code": "", "resiliparse_predicted_formula": "", "resiliparse_predicted_table": "", "resiliparse_predicted_text": "top of page\nTHE PALM INSTITUTE LOGO\n\nTHE PALM INSTITUTE LOGO\n\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n- Graphic, typographic and colorimetric research and proposal\n - Delivery of your files in High Resolution\n  \n SATISFACTION GUARANTEED\n - The number of modifications is unlimited so that you are fully satisfied\n CHF1,290.00 Regular Price\n CHF903.00Sale Price\n bottom of page", "groundtruth_groundtruth_code": "", "groundtruth_groundtruth_formula": "", "groundtruth_groundtruth_table": "", "groundtruth_groundtruth_text": "## THE PALM INSTITUTE LOGO\n\n### PREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n\\- Graphic, typographic and colorimetric research and proposal\n\n \\- Delivery of your files in High Resolution\n ### SATISFACTION GUARANTEED\n \\- The number of modifications is unlimited so that you are fully satisfied\n"} +{"id": "7cdb7231-9337-4104-a562-9b8f285add7d", "html": "\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nNumPy 简介\n\n\n
    \n
    \nw3school 在线教程\n
    \n\n\n
    \n\n
    \n
    \n
    \n\n
    \n
    \n

    Python 教程

    \n\n

    文件处理

    \n\n

    Python NumPy

    \n\n

    机器学习

    \n\n

    Python MySQL

    \n\n

    Python MongoDB

    \n\n

    Python 参考手册

    \n\n

    模块参考手册

    \n\n

    Python How To

    \n\n

    Python 实例

    \n\n
    \n
    \n
    \n

    NumPy 简介

    \n\n
    \n

    创建 NumPy ndarray 对象

    \n

    NumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray

    \n

    我们可以使用 array() 函数创建一个 NumPy ndarray 对象。

    \n

    实例

    \n
    import numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n
    \n

    运行实例

    \n

    type(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。

    \n

    要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray

    \n

    实例

    \n

    使用元组创建 NumPy 数组:

    \n
    import numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n
    \n

    运行实例

    \n
    \n
    \n

    数组中的维

    \n

    数组中的维是数组深度(嵌套数组)的一个级别。

    \n

    嵌套数组:指的是将数组作为元素的数组。

    \n
    \n
    \n

    0-D 数组

    \n

    0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。

    \n

    实例

    \n

    用值 61 创建 0-D 数组:

    \n
    import numpy as np\n\narr = np.array(61)\n\nprint(arr)\n
    \n

    运行实例

    \n
    \n
    \n

    1-D 数组

    \n

    其元素为 0-D 数组的数组,称为一维或 1-D 数组。

    \n

    这是最常见和基础的数组。

    \n

    实例

    \n

    创建包含值 1、2、3、4、5、6 的 1-D 数组:

    \n
    import numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n
    \n

    运行实例

    \n
    \n
    \n

    2-D 数组

    \n

    其元素为 1-D 数组的数组,称为 2-D 数组。

    \n

    它们通常用于表示矩阵或二阶张量。

    \n

    NumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat

    \n

    实例

    \n

    创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:

    \n
    import numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n
    \n

    运行实例

    \n
    \n
    \n

    3-D 数组

    \n

    其元素为 2-D 数组的数组,称为 3-D 数组。

    \n

    实例

    \n

    用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:

    \n
    import numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n
    \n

    运行实例

    \n
    \n
    \n

    检查维数?

    \n

    NumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。

    \n

    实例

    \n

    检查数组有多少维:

    \n
    import numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n
    \n

    运行实例

    \n
    \n
    \n

    更高维的数组

    \n

    数组可以拥有任意数量的维。

    \n

    在创建数组时,可以使用 ndmin 参数定义维数。

    \n

    实例

    \n

    创建一个有 5 个维度的数组,并验证它拥有 5 个维度:

    \n
    import numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n
    \n

    运行实例

    \n

    在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。

    \n
    \n
    \n\n\n
    \n\n
    \n
    \n\n
    \n\n
    \n
    \n\n\n
    \n\n
    \n
    \n
    \n
    \n

    \nW3School 简体中文版提供的内容仅用于培训和测试,不保证内容的正确性。通过使用本站内容随之而来的风险与本站无关。版权所有,保留一切权利。\n

    \n

    \n关于 W3School\n帮助 W3School\n使用条款\n隐私条款\n技术支持:赢科\n蒙ICP备06004630号\n

    \n
    \n
    \n\n
    ", "groundtruth_content": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "groundtruth_content_list": [[{"type": "title", "raw_content": "

    NumPy 简介

    ", "content": {"title_content": "NumPy 简介", "level": "1"}}, {"type": "title", "raw_content": "

    创建 NumPy ndarray 对象

    ", "content": {"title_content": "创建 NumPy ndarray 对象", "level": "2"}}, {"type": "paragraph", "raw_content": "

    NumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray

    ", "content": [{"c": "NumPy 用于处理数组。 NumPy 中的数组对象称为", "t": "text"}, {"c": "ndarray", "t": "code-inline"}, {"c": "。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    我们可以使用 array() 函数创建一个 NumPy ndarray 对象。

    ", "content": [{"c": "我们可以使用", "t": "text"}, {"c": "array()", "t": "code-inline"}, {"c": "函数创建一个 NumPy", "t": "text"}, {"c": "ndarray", "t": "code-inline"}, {"c": "对象。", "t": "text"}]}, {"type": "title", "raw_content": "

    实例

    ", "content": {"title_content": "实例", "level": "3"}}, {"type": "code", "raw_content": "
    import numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n
    \n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))", "language": "python", "by": "tag_pre"}}, {"type": "paragraph", "raw_content": "

    type(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。

    ", "content": [{"c": "type(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明", "t": "text"}, {"c": "arr", "t": "code-inline"}, {"c": "是", "t": "text"}, {"c": "numpy.ndarray", "t": "code-inline"}, {"c": "类型。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray

    ", "content": [{"c": "要创建", "t": "text"}, {"c": "ndarray", "t": "code-inline"}, {"c": ",我们可以将列表、元组或任何类似数组的对象传递给", "t": "text"}, {"c": "array()", "t": "code-inline"}, {"c": "方法,然后它将被转换为", "t": "text"}, {"c": "ndarray", "t": "code-inline"}, {"c": ":", "t": "text"}]}, {"type": "title", "raw_content": "

    实例

    ", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

    使用元组创建 NumPy 数组:

    ", "content": [{"c": "使用元组创建 NumPy 数组:", "t": "text"}]}, {"type": "code", "raw_content": "
    import numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n
    \n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

    数组中的维

    ", "content": {"title_content": "数组中的维", "level": "2"}}, {"type": "paragraph", "raw_content": "

    数组中的维是数组深度(嵌套数组)的一个级别。

    ", "content": [{"c": "数组中的维是数组深度(嵌套数组)的一个级别。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    嵌套数组:指的是将数组作为元素的数组。

    ", "content": [{"c": "嵌套数组: 指的是将数组作为元素的数组。", "t": "text"}]}, {"type": "title", "raw_content": "

    0-D 数组

    ", "content": {"title_content": "0-D 数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

    0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。

    ", "content": [{"c": "0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。", "t": "text"}]}, {"type": "title", "raw_content": "

    实例

    ", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

    用值 61 创建 0-D 数组:

    ", "content": [{"c": "用值 61 创建 0-D 数组:", "t": "text"}]}, {"type": "code", "raw_content": "
    import numpy as np\n\narr = np.array(61)\n\nprint(arr)\n
    \n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array(61)\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

    1-D 数组

    ", "content": {"title_content": "1-D 数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

    其元素为 0-D 数组的数组,称为一维或 1-D 数组。

    ", "content": [{"c": "其元素为 0-D 数组的数组,称为一维或 1-D 数组。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    这是最常见和基础的数组。

    ", "content": [{"c": "这是最常见和基础的数组。", "t": "text"}]}, {"type": "title", "raw_content": "

    实例

    ", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

    创建包含值 1、2、3、4、5、6 的 1-D 数组:

    ", "content": [{"c": "创建包含值 1、2、3、4、5、6 的 1-D 数组:", "t": "text"}]}, {"type": "code", "raw_content": "
    import numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n
    \n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

    2-D 数组

    ", "content": {"title_content": "2-D 数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

    其元素为 1-D 数组的数组,称为 2-D 数组。

    ", "content": [{"c": "其元素为 1-D 数组的数组,称为 2-D 数组。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    它们通常用于表示矩阵或二阶张量。

    ", "content": [{"c": "它们通常用于表示矩阵或二阶张量。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    NumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat

    ", "content": [{"c": "NumPy 有一个专门用于矩阵运算的完整子模块", "t": "text"}, {"c": "numpy.mat", "t": "code-inline"}, {"c": "。", "t": "text"}]}, {"type": "title", "raw_content": "

    实例

    ", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

    创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:

    ", "content": [{"c": "创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:", "t": "text"}]}, {"type": "code", "raw_content": "
    import numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n
    \n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

    3-D 数组

    ", "content": {"title_content": "3-D 数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

    其元素为 2-D 数组的数组,称为 3-D 数组。

    ", "content": [{"c": "其元素为 2-D 数组的数组,称为 3-D 数组。", "t": "text"}]}, {"type": "title", "raw_content": "

    实例

    ", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

    用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:

    ", "content": [{"c": "用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:", "t": "text"}]}, {"type": "code", "raw_content": "
    import numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n
    \n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

    检查维数?

    ", "content": {"title_content": "检查维数?", "level": "2"}}, {"type": "paragraph", "raw_content": "

    NumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。

    ", "content": [{"c": "NumPy 数组提供了", "t": "text"}, {"c": "ndim", "t": "code-inline"}, {"c": "属性,该属性返回一个整数,该整数会告诉我们数组有多少维。", "t": "text"}]}, {"type": "title", "raw_content": "

    实例

    ", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

    检查数组有多少维:

    ", "content": [{"c": "检查数组有多少维:", "t": "text"}]}, {"type": "code", "raw_content": "
    import numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n
    \n", "inline": false, "content": {"code_content": "import numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)", "language": "python", "by": "tag_pre"}}, {"type": "title", "raw_content": "

    更高维的数组

    ", "content": {"title_content": "更高维的数组", "level": "2"}}, {"type": "paragraph", "raw_content": "

    数组可以拥有任意数量的维。

    ", "content": [{"c": "数组可以拥有任意数量的维。", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    在创建数组时,可以使用 ndmin 参数定义维数。

    ", "content": [{"c": "在创建数组时,可以使用", "t": "text"}, {"c": "ndmin", "t": "code-inline"}, {"c": "参数定义维数。", "t": "text"}]}, {"type": "title", "raw_content": "

    实例

    ", "content": {"title_content": "实例", "level": "3"}}, {"type": "paragraph", "raw_content": "

    创建一个有 5 个维度的数组,并验证它拥有 5 个维度:

    ", "content": [{"c": "创建一个有 5 个维度的数组,并验证它拥有 5 个维度:", "t": "text"}]}, {"type": "code", "raw_content": "
    import numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n
    \n", "inline": false, "content": {"code_content": "import numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)", "language": "python", "by": "tag_pre"}}, {"type": "paragraph", "raw_content": "

    在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。

    ", "content": [{"c": "在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "t": "text"}]}]], "content_list": null, "content": null, "llm_webkit_md": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "llm_webkit_html": "\n\n
    \n
    \n

    NumPy 简介

    \n
    \n

    创建 NumPy ndarray 对象

    \n

    NumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray

    \n

    我们可以使用 array() 函数创建一个 NumPy ndarray 对象。

    \n

    实例

    \n
    import numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n
    \n

    type(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。

    \n

    要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray

    \n

    实例

    \n

    使用元组创建 NumPy 数组:

    \n
    import numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n
    \n
    \n
    \n

    数组中的维

    \n

    数组中的维是数组深度(嵌套数组)的一个级别。

    \n

    嵌套数组:指的是将数组作为元素的数组。

    \n
    \n
    \n

    0-D 数组

    \n

    0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。

    \n

    实例

    \n

    用值 61 创建 0-D 数组:

    \n
    import numpy as np\n\narr = np.array(61)\n\nprint(arr)\n
    \n
    \n
    \n

    1-D 数组

    \n

    其元素为 0-D 数组的数组,称为一维或 1-D 数组。

    \n

    这是最常见和基础的数组。

    \n

    实例

    \n

    创建包含值 1、2、3、4、5、6 的 1-D 数组:

    \n
    import numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n
    \n
    \n
    \n

    2-D 数组

    \n

    其元素为 1-D 数组的数组,称为 2-D 数组。

    \n

    它们通常用于表示矩阵或二阶张量。

    \n

    NumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat

    \n

    实例

    \n

    创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:

    \n
    import numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n
    \n
    \n
    \n

    3-D 数组

    \n

    其元素为 2-D 数组的数组,称为 3-D 数组。

    \n

    实例

    \n

    用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:

    \n
    import numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n
    \n
    \n
    \n

    检查维数?

    \n

    NumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。

    \n

    实例

    \n

    检查数组有多少维:

    \n
    import numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n
    \n
    \n
    \n

    更高维的数组

    \n

    数组可以拥有任意数量的维。

    \n

    在创建数组时,可以使用 ndmin 参数定义维数。

    \n

    实例

    \n

    创建一个有 5 个维度的数组,并验证它拥有 5 个维度:

    \n
    import numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n
    \n

    在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。

    \n
    \n
    \n
    \n\n", "main_html": null, "url": "https://www.w3school.com.cn/python/numpy_creating_arrays.asp", "domain": null, "language": null, "content_type": null, "difficulty": null, "tags": null, "extracted_results": null, "llm-webkit_content": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "llm-webkit_content_list": [], "llm-webkit_success": true, "llm-webkit_time": 0.6670150756835938, "llm-webkit_code_edit_score": 1.0, "llm-webkit_text_edit_score": 0.9994941831057157, "llm-webkit_overall_score": 0.9997470915528579, "llm-webkit_predicted_code": "import numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)", "llm-webkit_predicted_formula": "", "llm-webkit_predicted_table": "", "llm-webkit_predicted_text": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "magic-html_content": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray`。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n \n \n import numpy as np \n \n arr = np.array([1, 2, 3, 4, 5])\n \n print(arr)\n \n print(type(arr))\n \n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray`,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray`:\n\n### 实例\n\n使用元组创建 NumPy 数组:\n \n \n import numpy as np \n \n arr = np.array((1, 2, 3, 4, 5))\n \n print(arr)\n \n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n \n \n import numpy as np\n \n arr = np.array(61)\n \n print(arr)\n \n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n \n \n import numpy as np\n \n arr = np.array([1, 2, 3, 4, 5, 6])\n \n print(arr)\n \n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat`。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n \n \n import numpy as np\n \n arr = np.array([[1, 2, 3], [4, 5, 6]])\n \n print(arr)\n \n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n \n \n import numpy as np\n \n arr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n \n print(arr)\n \n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n \n \n import numpy as np\n \n a = np.array(42)\n b = np.array([1, 2, 3, 4, 5])\n c = np.array([[1, 2, 3], [4, 5, 6]])\n d = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n \n print(a.ndim) \n print(b.ndim) \n print(c.ndim) \n print(d.ndim)\n \n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n \n \n import numpy as np\n \n arr = np.array([1, 2, 3, 4], ndmin=5)\n \n print(arr)\n print('number of dimensions :', arr.ndim)\n \n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "magic-html_content_list": [], "magic-html_success": true, "magic-html_time": 0.034438133239746094, "magic-html_code_edit_score": 0.9739243807040417, "magic-html_text_edit_score": 0.8536585365853658, "magic-html_overall_score": 0.9137914586447038, "magic-html_predicted_code": "import numpy as np \narr = np.array([1, 2, 3, 4, 5])\nprint(arr)\nprint(type(arr))\nimport numpy as np \narr = np.array((1, 2, 3, 4, 5))\nprint(arr)\nimport numpy as np\narr = np.array(61)\nprint(arr)\nimport numpy as np\narr = np.array([1, 2, 3, 4, 5, 6])\nprint(arr)\nimport numpy as np\narr = np.array([[1, 2, 3], [4, 5, 6]])\nprint(arr)\nimport numpy as np\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\nprint(arr)\nimport numpy as np\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\nimport numpy as np\narr = np.array([1, 2, 3, 4], ndmin=5)\nprint(arr)\nprint('number of dimensions :', arr.ndim)", "magic-html_predicted_formula": "", "magic-html_predicted_table": "", "magic-html_predicted_text": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray`。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n \n \n import numpy as np \n \n arr = np.array([1, 2, 3, 4, 5])\n \n print(arr)\n \n print(type(arr))\n \n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray`,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray`:\n\n### 实例\n\n使用元组创建 NumPy 数组:\n \n \n import numpy as np \n \n arr = np.array((1, 2, 3, 4, 5))\n \n print(arr)\n \n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n \n \n import numpy as np\n \n arr = np.array(61)\n \n print(arr)\n \n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n \n \n import numpy as np\n \n arr = np.array([1, 2, 3, 4, 5, 6])\n \n print(arr)\n \n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat`。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n \n \n import numpy as np\n \n arr = np.array([[1, 2, 3], [4, 5, 6]])\n \n print(arr)\n \n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n \n \n import numpy as np\n \n arr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n \n print(arr)\n \n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n \n \n import numpy as np\n \n a = np.array(42)\n b = np.array([1, 2, 3, 4, 5])\n c = np.array([[1, 2, 3], [4, 5, 6]])\n d = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n \n print(a.ndim) \n print(b.ndim) \n print(c.ndim) \n print(d.ndim)\n \n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n \n \n import numpy as np\n \n arr = np.array([1, 2, 3, 4], ndmin=5)\n \n print(arr)\n print('number of dimensions :', arr.ndim)\n \n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "trafilatura_content": "# NumPy 简介\n## 创建 NumPy ndarray 对象\n`ndarray`\n`array()`\n`ndarray`\n### 实例\nimportnumpy asnp arr =np .array ([1, 2, 3, 4, 5]) print(arr ) print(type(arr ))\ntype():`arr`\n`numpy.ndarray`\n\n`ndarray`\n`array()`\n`ndarray`\n### 实例\n使用元组创建 NumPy 数组:\n\nimportnumpy asnp arr =np .array ((1, 2, 3, 4, 5)) print(arr )\n## 数组中的维\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:\n\n## 0-D 数组\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n用值 61 创建 0-D 数组:\n\nimportnumpy asnp arr =np .array (61) print(arr )\n## 1-D 数组\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\nimportnumpy asnp arr =np .array ([1, 2, 3, 4, 5, 6]) print(arr )\n## 2-D 数组\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\n`numpy.mat`\n### 实例\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\nimportnumpy asnp arr =np .array ([[1, 2, 3], [4, 5, 6]]) print(arr )\n## 3-D 数组\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\nimportnumpy asnp arr =np .array ([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]]) print(arr )\n## 检查维数?\n`ndim`\n### 实例\n检查数组有多少维:\n\nimportnumpy asnp a =np .array (42)b =np .array ([1, 2, 3, 4, 5])c =np .array ([[1, 2, 3], [4, 5, 6]])d =np .array ([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]]) print(a .ndim ) print(b .ndim ) print(c .ndim ) print(d .ndim )\n## 更高维的数组\n数组可以拥有任意数量的维。\n\n`ndmin`\n### 实例\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\nimportnumpy asnp arr =np .array ([1, 2, 3, 4],ndmin =5) print(arr ) print('number of dimensions :',arr .ndim )\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "trafilatura_content_list": [], "trafilatura_success": true, "trafilatura_time": 0.030469894409179688, "trafilatura_code_edit_score": 0.0, "trafilatura_text_edit_score": 0.7430450177035913, "trafilatura_overall_score": 0.37152250885179566, "trafilatura_predicted_code": "", "trafilatura_predicted_formula": "", "trafilatura_predicted_table": "", "trafilatura_predicted_text": "# NumPy 简介\n## 创建 NumPy ndarray 对象\n`ndarray`\n`array()`\n`ndarray`\n### 实例\nimportnumpy asnp arr =np .array ([1, 2, 3, 4, 5]) print(arr ) print(type(arr ))\ntype():`arr`\n`numpy.ndarray`\n\n`ndarray`\n`array()`\n`ndarray`\n### 实例\n使用元组创建 NumPy 数组:\n\nimportnumpy asnp arr =np .array ((1, 2, 3, 4, 5)) print(arr )\n## 数组中的维\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:\n\n## 0-D 数组\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n用值 61 创建 0-D 数组:\n\nimportnumpy asnp arr =np .array (61) print(arr )\n## 1-D 数组\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\nimportnumpy asnp arr =np .array ([1, 2, 3, 4, 5, 6]) print(arr )\n## 2-D 数组\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\n`numpy.mat`\n### 实例\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\nimportnumpy asnp arr =np .array ([[1, 2, 3], [4, 5, 6]]) print(arr )\n## 3-D 数组\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\nimportnumpy asnp arr =np .array ([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]]) print(arr )\n## 检查维数?\n`ndim`\n### 实例\n检查数组有多少维:\n\nimportnumpy asnp a =np .array (42)b =np .array ([1, 2, 3, 4, 5])c =np .array ([[1, 2, 3], [4, 5, 6]])d =np .array ([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]]) print(a .ndim ) print(b .ndim ) print(c .ndim ) print(d .ndim )\n## 更高维的数组\n数组可以拥有任意数量的维。\n\n`ndmin`\n### 实例\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\nimportnumpy asnp arr =np .array ([1, 2, 3, 4],ndmin =5) print(arr ) print('number of dimensions :',arr .ndim )\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n", "resiliparse_content": "NumPy 简介\n\n创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray\n\n我们可以使用 array() 函数创建一个 NumPy ndarray 对象。\n\n实例\n\nimport numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n\n运行实例\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。\n\n要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray\n\n实例\n\n使用元组创建 NumPy 数组:\n\nimport numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n\n运行实例\n\n数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:指的是将数组作为元素的数组。\n\n0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n实例\n\n用值 61 创建 0-D 数组:\n\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n\n运行实例\n\n1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n\n运行实例\n\n2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat\n\n实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n\n运行实例\n\n3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n\n运行实例\n\n检查维数?\n\nNumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n实例\n\n检查数组有多少维:\n\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n\n运行实例\n\n更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 ndmin 参数定义维数。\n\n实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n\n运行实例\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "resiliparse_content_list": [], "resiliparse_success": true, "resiliparse_time": 0.004547119140625, "resiliparse_code_edit_score": 0.0, "resiliparse_text_edit_score": 0.8902377339403136, "resiliparse_overall_score": 0.4451188669701568, "resiliparse_predicted_code": "", "resiliparse_predicted_formula": "", "resiliparse_predicted_table": "", "resiliparse_predicted_text": "NumPy 简介\n\n创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 ndarray\n\n我们可以使用 array() 函数创建一个 NumPy ndarray 对象。\n\n实例\n\nimport numpy as np \n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n\n运行实例\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 arrnumpy.ndarray 类型。\n\n要创建 ndarray,我们可以将列表、元组或任何类似数组的对象传递给 array() 方法,然后它将被转换为 ndarray\n\n实例\n\n使用元组创建 NumPy 数组:\n\nimport numpy as np \n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n\n运行实例\n\n数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组:指的是将数组作为元素的数组。\n\n0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n实例\n\n用值 61 创建 0-D 数组:\n\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n\n运行实例\n\n1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n\n运行实例\n\n2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 numpy.mat\n\n实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n\n运行实例\n\n3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n\n运行实例\n\n检查维数?\n\nNumPy 数组提供了 ndim 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n实例\n\n检查数组有多少维:\n\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim) \nprint(b.ndim) \nprint(c.ndim) \nprint(d.ndim)\n\n运行实例\n\n更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 ndmin 参数定义维数。\n\n实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n\n运行实例\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。", "groundtruth_groundtruth_code": "import numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)", "groundtruth_groundtruth_formula": "", "groundtruth_groundtruth_table": "", "groundtruth_groundtruth_text": "# NumPy 简介\n\n## 创建 NumPy ndarray 对象\n\nNumPy 用于处理数组。 NumPy 中的数组对象称为 `ndarray` 。\n\n我们可以使用 `array()` 函数创建一个 NumPy `ndarray` 对象。\n\n### 实例\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5])\n\nprint(arr)\n\nprint(type(arr))\n```\n\ntype(): 这个内置的 Python 函数告诉我们传递给它的对象的类型。像上面的代码一样,它表明 `arr` 是 `numpy.ndarray` 类型。\n\n要创建 `ndarray` ,我们可以将列表、元组或任何类似数组的对象传递给 `array()` 方法,然后它将被转换为 `ndarray` :\n\n### 实例\n\n使用元组创建 NumPy 数组:\n\n```python\nimport numpy as np\n\narr = np.array((1, 2, 3, 4, 5))\n\nprint(arr)\n```\n\n## 数组中的维\n\n数组中的维是数组深度(嵌套数组)的一个级别。\n\n嵌套数组: 指的是将数组作为元素的数组。\n\n## 0-D 数组\n\n0-D 数组,或标量(Scalars),是数组中的元素。数组中的每个值都是一个 0-D 数组。\n\n### 实例\n\n用值 61 创建 0-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array(61)\n\nprint(arr)\n```\n\n## 1-D 数组\n\n其元素为 0-D 数组的数组,称为一维或 1-D 数组。\n\n这是最常见和基础的数组。\n\n### 实例\n\n创建包含值 1、2、3、4、5、6 的 1-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4, 5, 6])\n\nprint(arr)\n```\n\n## 2-D 数组\n\n其元素为 1-D 数组的数组,称为 2-D 数组。\n\n它们通常用于表示矩阵或二阶张量。\n\nNumPy 有一个专门用于矩阵运算的完整子模块 `numpy.mat` 。\n\n### 实例\n\n创建包含值 1、2、3 和 4、5、6 两个数组的 2-D 数组:\n\n```python\nimport numpy as np\n\narr = np.array([[1, 2, 3], [4, 5, 6]])\n\nprint(arr)\n```\n\n## 3-D 数组\n\n其元素为 2-D 数组的数组,称为 3-D 数组。\n\n### 实例\n\n用两个 2-D 数组创建一个 3-D 数组,这两个数组均包含值 1、2、3 和 4、5、6 的两个数组:\n\n```python\nimport numpy as np\n\narr = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(arr)\n```\n\n## 检查维数?\n\nNumPy 数组提供了 `ndim` 属性,该属性返回一个整数,该整数会告诉我们数组有多少维。\n\n### 实例\n\n检查数组有多少维:\n\n```python\nimport numpy as np\n\na = np.array(42)\nb = np.array([1, 2, 3, 4, 5])\nc = np.array([[1, 2, 3], [4, 5, 6]])\nd = np.array([[[1, 2, 3], [4, 5, 6]], [[1, 2, 3], [4, 5, 6]]])\n\nprint(a.ndim)\nprint(b.ndim)\nprint(c.ndim)\nprint(d.ndim)\n```\n\n## 更高维的数组\n\n数组可以拥有任意数量的维。\n\n在创建数组时,可以使用 `ndmin` 参数定义维数。\n\n### 实例\n\n创建一个有 5 个维度的数组,并验证它拥有 5 个维度:\n\n```python\nimport numpy as np\n\narr = np.array([1, 2, 3, 4], ndmin=5)\n\nprint(arr)\nprint('number of dimensions :', arr.ndim)\n```\n\n在此数组中,最里面的维度(第 5 个 dim)有 4 个元素,第 4 个 dim 有 1 个元素作为向量,第 3 个 dim 具有 1 个元素是与向量的矩阵,第 2 个 dim 有 1 个元素是 3D 数组,而第 1 个 dim 有 1 个元素,该元素是 4D 数组。\n"} +{"id": "3026972b-8a26-48c3-bc00-c181138702f2", "html": "\n\n\n\n\n\n\n\n\nTerms Of Use - Triumph\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\nSkip to content\n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \nTerms Of UseTriumph Team2018-12-12T05:24:24+00:00
    \n
    \n
    \n

    Terms Of Use

    Version 1.0

    \n

    Effective Date: 08-01-2016

    \n

    Last Updated Date: 12-07-2018

    \n

    RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.

    \n

    IF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.

    \n

    THE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.

    \n

    Your use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”

    \n

    Company knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.

    \n

    PLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.

    \n

    Background: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.

    \n

    Use of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.

    \n

    Application License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.

    \n

    Company Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.

    \n

    Updates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.

    \n

    Certain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.

    \n

    Acceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.

    \n

    Third-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.

    \n

    Registration

    \n

    Registering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).

    \n

    Registration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.

    \n

    Necessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.

    \n

    Responsibility for Content

    \n

    Types of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).

    \n

    No Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.

    \n

    Storage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.

    \n

    Ownership

    \n

    Company Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.

    \n

    Trademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.

    \n

    Other Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.

    \n

    Your Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.

    \n

    License to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.

    \n

    Username: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.

    \n

    Your Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.

    \n

    Your Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.

    \n

    Feedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.

    \n

    Investigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.

    \n

    Interactions with Other Users

    \n

    User Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.

    \n

    Content Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.

    \n

    Third-Party Services

    \n

    Third-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.

    \n

    App Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.

    \n

    Fees and Purchase Terms

    \n

    General Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.

    \n

    Payment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.

    \n

    Service Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.

    \n

    Taxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.

    \n

    Withholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.

    \n

    Automatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).

    \n

    Free Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.

    \n

    Other Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.

    \n

    Gifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.

    \n

    Disputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com

    \n

    Indemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.

    \n

    Disclaimer of Warranties.

    \n

    As Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.

    \n

    THE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.

    \n

    ANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.

    \n

    THE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.

    \n

    NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.

    \n

    From time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.

    \n

    No Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.

    \n

    No Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.

    \n

    Limitation of Liability.

    \n

    Disclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.

    \n

    Cap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).

    \n

    User Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.

    \n

    Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.

    \n

    EXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.

    \n

    Procedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com

    \n

    Term and Termination.

    \n

    Term: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.

    \n

    Prior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.

    \n

    Termination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.

    \n

    Termination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.

    \n

    Effect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.

    \n

    Remedies

    \n

    Violations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.

    \n

    Breach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:

    \n

    – Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;

    \n

    – Delete any of Your Content provided by you or your agent(s) to the Company Properties;

    \n

    – Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;

    \n

    – Discontinue your subscription to any Services;

    \n

    – Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or

    \n

    – Pursue any other action which the Company deems to be appropriate.

    \n

    No Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.

    \n

    International Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.

    \n

    General Provisions

    \n

    Electronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.

    \n

    Release: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”

    \n

    Assignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.

    \n

    Force Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.

    \n

    Compliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.

    \n

    Limitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.

    \n

    Dispute Resolution

    \n

    Any claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.

    \n

    Any other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).

    \n

    You are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.

    \n

    You and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.

    \n

    The arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.

    \n

    Notwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.

    \n

    With the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.

    \n

    For more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.

    \n

    Governing Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.

    \n

    Choice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.

    \n

    Notice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.

    \n

    Waiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.

    \n

    Severability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.

    \n

    Export Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.

    \n

    Accessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):

    \n

    You acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.

    \n

    You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.

    \n

    In the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.

    \n

    You and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.

    \n

    You and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.

    \n

    You and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.

    \n

    Without limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.

    \n

    Entire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.

    \n

    International Provisions: The following provisions shall apply only if you are located in the countries listed below.

    \n
      \n
    • United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.
    • \n
    • Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).
    • \n
    \n

    ACCEPTABLE USE POLICY

    \n

    Last Updated: [04-21-2017]

    \n

    Welcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.

    \n

    You will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:

    \n

    Illegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.

    \n

    Harmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.

    \n

    Infringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.

    \n

    Offensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.

    \n

    Harmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.

    \n

    Fraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.

    \n

    Inappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);

    \n

    You will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:

    \n

    Unauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.

    \n

    Interception: Monitoring of data or traffic on a System without permission.

    \n

    Falsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.

    \n

    You will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:

    \n

    Unauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.

    \n

    Monitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.

    \n

    Denial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.

    \n

    Intentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.

    \n

    Operation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.

    \n

    Avoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.

    \n

    You will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;

    \n

    You will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.

    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n \n
    \n
    \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n \n\n \n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n", "groundtruth_content": "RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:** We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\n**Use of the Services and Company Properties:** The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\n**Application License:** Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\n**Company Software:** Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\n**Updates:** You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\n**Certain Restrictions:** The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\n**Acceptable Use:** It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\n**Third-Party Materials:** As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\n**Registering Your Account:** In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\n**Registration Data:** In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\n**Necessary Equipment and Software:** You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\n**Types of Content:** You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\n**Storage:** Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\n**Company Properties:** Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\n**Trademarks:** Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\n**Other Content:** Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\n**Your Content:** The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\n**License to Your Content:** Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\n**Username:** Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile**: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\n**Feedback:** You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\n**Investigations:** The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\n**User Responsibility:** You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\n**Content Provided by Other Users:** The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\n**Third-Party Websites & Ads:** The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\n**App Stores:** You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\n**General Purpose of Terms: Sale of Service, not Software:** The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\n**Payment:** You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\n**Service Subscription Fees:** You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\n**Taxes:** The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\n**Withholding Taxes:** You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\n**Automatic Renewal.** Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\n**Free Trials:** Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\n**Other Promotions:** We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\n**Gifting:**“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\n**Disputes:** You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\n**Indemnification:** You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:** UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\n**Term:** The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\n**Violations:** If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\n**Electronic Communications:** The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:** The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\n**Choice of Language:** It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\n**Notice:** Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\n**Waiver.** Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\n**Export Control:** You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\n**Accessing and Download the Application from iTunes:** The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:** The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\n**International Provisions:** The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:** Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\n**Harmful or Fraudulent Activities:** Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\n**Infringing Content:** Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\n**Offensive Content:** Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\n**Harmful Content:** Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\n**Fraud or Impersonation:** Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\n**Inappropriate Content:** Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:** Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\n**Interception:**\nMonitoring of data or traffic on a System without permission.\n\n**Falsification of Origin:** Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:** Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\n**Monitoring or Crawling:** Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\n**Denial of Service (DoS):** Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\n**Intentional Interference:** Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\n**Operation of Certain Network Services.** Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\n**Avoiding System Restrictions:** Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n\n\n\n\n", "groundtruth_content_list": [[{"type": "paragraph", "raw_content": "

    RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.

    ", "content": [{"c": "RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    IF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.

    ", "content": [{"c": "IF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    THE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.

    ", "content": [{"c": "THE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Your use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”

    ", "content": [{"c": "Your use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Company knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.

    ", "content": [{"c": "Company knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    PLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.

    ", "content": [{"c": "PLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Background: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.

    ", "content": [{"c": "Background: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Use of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.

    ", "content": [{"c": "Use of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Application License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.

    ", "content": [{"c": "Application License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Company Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.

    ", "content": [{"c": "Company Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Updates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.

    ", "content": [{"c": "Updates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Certain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.

    ", "content": [{"c": "Certain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Acceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.

    ", "content": [{"c": "Acceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Third-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.

    ", "content": [{"c": "Third-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.", "t": "text"}]}, {"type": "title", "raw_content": "

    Registration

    ", "content": {"title_content": "Registration", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Registering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).

    ", "content": [{"c": "Registering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Registration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.

    ", "content": [{"c": "Registration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Necessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.

    ", "content": [{"c": "Necessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.", "t": "text"}]}, {"type": "title", "raw_content": "

    Responsibility for Content

    ", "content": {"title_content": "Responsibility for Content", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Types of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).

    ", "content": [{"c": "Types of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    No Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.

    ", "content": [{"c": "No Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Storage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.

    ", "content": [{"c": "Storage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.", "t": "text"}]}, {"type": "title", "raw_content": "

    Ownership

    ", "content": {"title_content": "Ownership", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Company Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.

    ", "content": [{"c": "Company Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Trademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.

    ", "content": [{"c": "Trademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Other Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.

    ", "content": [{"c": "Other Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Your Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.

    ", "content": [{"c": "Your Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    License to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.

    ", "content": [{"c": "License to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Username: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.

    ", "content": [{"c": "Username: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Your Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.

    ", "content": [{"c": "Your Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Your Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.

    ", "content": [{"c": "Your Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Feedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.

    ", "content": [{"c": "Feedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Investigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.

    ", "content": [{"c": "Investigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.", "t": "text"}]}, {"type": "title", "raw_content": "

    Interactions with Other Users

    ", "content": {"title_content": "Interactions with Other Users", "level": "2"}}, {"type": "paragraph", "raw_content": "

    User Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.

    ", "content": [{"c": "User Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Content Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.

    ", "content": [{"c": "Content Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.", "t": "text"}]}, {"type": "title", "raw_content": "

    Third-Party Services

    ", "content": {"title_content": "Third-Party Services", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Third-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.

    ", "content": [{"c": "Third-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    App Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.

    ", "content": [{"c": "App Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.", "t": "text"}]}, {"type": "title", "raw_content": "

    Fees and Purchase Terms

    ", "content": {"title_content": "Fees and Purchase Terms", "level": "2"}}, {"type": "paragraph", "raw_content": "

    General Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.

    ", "content": [{"c": "General Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Payment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.

    ", "content": [{"c": "Payment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Service Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.

    ", "content": [{"c": "Service Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Taxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.

    ", "content": [{"c": "Taxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Withholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.

    ", "content": [{"c": "Withholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Automatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).

    ", "content": [{"c": "Automatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Free Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.

    ", "content": [{"c": "Free Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Other Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.

    ", "content": [{"c": "Other Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Gifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.

    ", "content": [{"c": "Gifting:“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Disputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com

    ", "content": [{"c": "Disputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Indemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.

    ", "content": [{"c": "Indemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.", "t": "text"}]}, {"type": "title", "raw_content": "

    Disclaimer of Warranties.

    ", "content": {"title_content": "Disclaimer of Warranties.", "level": "2"}}, {"type": "paragraph", "raw_content": "

    As Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.

    ", "content": [{"c": "As Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    THE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.

    ", "content": [{"c": "THE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    ANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.

    ", "content": [{"c": "ANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    THE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.

    ", "content": [{"c": "THE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.

    ", "content": [{"c": "NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    From time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.

    ", "content": [{"c": "From time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    No Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.

    ", "content": [{"c": "No Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    No Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.

    ", "content": [{"c": "No Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.", "t": "text"}]}, {"type": "title", "raw_content": "

    Limitation of Liability.

    ", "content": {"title_content": "Limitation of Liability.", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Disclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.

    ", "content": [{"c": "Disclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Cap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).

    ", "content": [{"c": "Cap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    User Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.

    ", "content": [{"c": "User Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.

    ", "content": [{"c": "Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    EXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.

    ", "content": [{"c": "EXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Procedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com

    ", "content": [{"c": "Procedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com", "t": "text"}]}, {"type": "title", "raw_content": "

    Term and Termination.

    ", "content": {"title_content": "Term and Termination.", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Term: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.

    ", "content": [{"c": "Term: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Prior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.

    ", "content": [{"c": "Prior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Termination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.

    ", "content": [{"c": "Termination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Termination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.

    ", "content": [{"c": "Termination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Effect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.

    ", "content": [{"c": "Effect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.", "t": "text"}]}, {"type": "title", "raw_content": "

    Remedies

    ", "content": {"title_content": "Remedies", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Violations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.

    ", "content": [{"c": "Violations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Breach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:

    ", "content": [{"c": "Breach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    – Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;

    ", "content": [{"c": "– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    – Delete any of Your Content provided by you or your agent(s) to the Company Properties;

    ", "content": [{"c": "– Delete any of Your Content provided by you or your agent(s) to the Company Properties;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    – Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;

    ", "content": [{"c": "– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    – Discontinue your subscription to any Services;

    ", "content": [{"c": "– Discontinue your subscription to any Services;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    – Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or

    ", "content": [{"c": "– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    – Pursue any other action which the Company deems to be appropriate.

    ", "content": [{"c": "– Pursue any other action which the Company deems to be appropriate.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    No Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.

    ", "content": [{"c": "No Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    International Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.

    ", "content": [{"c": "International Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.", "t": "text"}]}, {"type": "title", "raw_content": "

    General Provisions

    ", "content": {"title_content": "General Provisions", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Electronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.

    ", "content": [{"c": "Electronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Release: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”

    ", "content": [{"c": "Release: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Assignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.

    ", "content": [{"c": "Assignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Force Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.

    ", "content": [{"c": "Force Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Compliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.

    ", "content": [{"c": "Compliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Limitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.

    ", "content": [{"c": "Limitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.", "t": "text"}]}, {"type": "title", "raw_content": "

    Dispute Resolution

    ", "content": {"title_content": "Dispute Resolution", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Any claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.

    ", "content": [{"c": "Any claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Any other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).

    ", "content": [{"c": "Any other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.

    ", "content": [{"c": "You are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.

    ", "content": [{"c": "You and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    The arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.

    ", "content": [{"c": "The arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Notwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.

    ", "content": [{"c": "Notwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    With the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.

    ", "content": [{"c": "With the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    For more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.

    ", "content": [{"c": "For more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Governing Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.

    ", "content": [{"c": "Governing Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Choice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.

    ", "content": [{"c": "Choice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Notice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.

    ", "content": [{"c": "Notice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Waiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.

    ", "content": [{"c": "Waiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Severability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.

    ", "content": [{"c": "Severability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Export Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.

    ", "content": [{"c": "Export Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Accessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):

    ", "content": [{"c": "Accessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.

    ", "content": [{"c": "You acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.

    ", "content": [{"c": "You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    In the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.

    ", "content": [{"c": "In the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.

    ", "content": [{"c": "You and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.

    ", "content": [{"c": "You and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.

    ", "content": [{"c": "You and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Without limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.

    ", "content": [{"c": "Without limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Entire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.

    ", "content": [{"c": "Entire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    International Provisions: The following provisions shall apply only if you are located in the countries listed below.

    ", "content": [{"c": "International Provisions: The following provisions shall apply only if you are located in the countries listed below.", "t": "text"}]}, {"type": "list", "raw_content": "", "content": {"items": [{"c": "United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act."}, {"c": "Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten)."}], "list_attribute": "unordered", "list_nest_level": "1"}}, {"type": "title", "raw_content": "

    ACCEPTABLE USE POLICY

    ", "content": {"title_content": "ACCEPTABLE USE POLICY", "level": "2"}}, {"type": "paragraph", "raw_content": "

    Welcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.

    ", "content": [{"c": "Welcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:

    ", "content": [{"c": "You will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Illegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.

    ", "content": [{"c": "Illegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Harmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.

    ", "content": [{"c": "Harmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Infringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.

    ", "content": [{"c": "Infringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Offensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.

    ", "content": [{"c": "Offensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Harmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.

    ", "content": [{"c": "Harmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Fraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.

    ", "content": [{"c": "Fraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Inappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);

    ", "content": [{"c": "Inappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:

    ", "content": [{"c": "You will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Unauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.

    ", "content": [{"c": "Unauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Interception: Monitoring of data or traffic on a System without permission.

    ", "content": [{"c": "Interception: Monitoring of data or traffic on a System without permission.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Falsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.

    ", "content": [{"c": "Falsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:

    ", "content": [{"c": "You will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Unauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.

    ", "content": [{"c": "Unauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Monitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.

    ", "content": [{"c": "Monitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Denial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.

    ", "content": [{"c": "Denial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Intentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.

    ", "content": [{"c": "Intentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Operation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.

    ", "content": [{"c": "Operation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    Avoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.

    ", "content": [{"c": "Avoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;

    ", "content": [{"c": "You will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;", "t": "text"}]}, {"type": "paragraph", "raw_content": "

    You will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.

    ", "content": [{"c": "You will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "t": "text"}]}]], "content_list": null, "content": null, "llm_webkit_md": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting:“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n", "llm_webkit_html": "\n\n
    \n
    \n
    \n
    \n
    \n\n
    \n
    \n
    \n
    \n

    Terms Of Use

    \n
    \n
    \n

    Version 1.0

    \n

    Effective Date: 08-01-2016

    \n

    Last Updated Date: 12-07-2018

    \n

    RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.

    \n

    IF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.

    \n

    THE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.

    \n

    Your use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”

    \n

    Company knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.

    \n

    PLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.

    \n

    Background: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.

    \n

    Use of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.

    \n

    Application License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.

    \n

    Company Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.

    \n

    Updates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.

    \n

    Certain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.

    \n

    Acceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.

    \n

    Third-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.

    \n

    Registration

    \n

    Registering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).

    \n

    Registration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.

    \n

    Necessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.

    \n

    Responsibility for Content

    \n

    Types of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).

    \n

    No Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.

    \n

    Storage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.

    \n

    Ownership

    \n

    Company Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.

    \n

    Trademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.

    \n

    Other Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.

    \n

    Your Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.

    \n

    License to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.

    \n

    Username: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.

    \n

    Your Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.

    \n

    Your Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.

    \n

    Feedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.

    \n

    Investigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.

    \n

    Interactions with Other Users

    \n

    User Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.

    \n

    Content Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.

    \n

    Third-Party Services

    \n

    Third-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.

    \n

    App Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.

    \n

    Fees and Purchase Terms

    \n

    General Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.

    \n

    Payment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.

    \n

    Service Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.

    \n

    Taxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.

    \n

    Withholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.

    \n

    Automatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).

    \n

    Free Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.

    \n

    Other Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.

    \n

    Gifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.

    \n

    Disputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com

    \n

    Indemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.

    \n

    Disclaimer of Warranties.

    \n

    As Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.

    \n

    THE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.

    \n

    ANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.

    \n

    THE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.

    \n

    NO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.

    \n

    From time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.

    \n

    No Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.

    \n

    No Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.

    \n

    Limitation of Liability.

    \n

    Disclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.

    \n

    Cap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).

    \n

    User Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.

    \n

    Basis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.

    \n

    EXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.

    \n

    Procedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com

    \n

    Term and Termination.

    \n

    Term: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.

    \n

    Prior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.

    \n

    Termination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.

    \n

    Termination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.

    \n

    Effect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.

    \n

    Remedies

    \n

    Violations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.

    \n

    Breach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:

    \n

    – Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;

    \n

    – Delete any of Your Content provided by you or your agent(s) to the Company Properties;

    \n

    – Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;

    \n

    – Discontinue your subscription to any Services;

    \n

    – Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or

    \n

    – Pursue any other action which the Company deems to be appropriate.

    \n

    No Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.

    \n

    International Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.

    \n

    General Provisions

    \n

    Electronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.

    \n

    Release: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”

    \n

    Assignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.

    \n

    Force Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.

    \n

    Compliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.

    \n

    Limitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.

    \n

    Dispute Resolution

    \n

    Any claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.

    \n

    Any other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).

    \n

    You are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.

    \n

    You and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.

    \n

    The arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.

    \n

    Notwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.

    \n

    With the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.

    \n

    For more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.

    \n

    Governing Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.

    \n

    Choice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.

    \n

    Notice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.

    \n

    Waiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.

    \n

    Severability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.

    \n

    Export Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.

    \n

    Accessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):

    \n

    You acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.

    \n

    You acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.

    \n

    In the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.

    \n

    You and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.

    \n

    You and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.

    \n

    You and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.

    \n

    Without limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.

    \n

    Entire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.

    \n

    International Provisions: The following provisions shall apply only if you are located in the countries listed below.

    \n
      \n
    • United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.
    • \n
    • Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).
    • \n
    \n

    ACCEPTABLE USE POLICY

    \n

    Last Updated: [04-21-2017]

    \n

    Welcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.

    \n

    You will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:

    \n

    Illegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.

    \n

    Harmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.

    \n

    Infringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.

    \n

    Offensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.

    \n

    Harmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.

    \n

    Fraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.

    \n

    Inappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);

    \n

    You will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:

    \n

    Unauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.

    \n

    Interception: Monitoring of data or traffic on a System without permission.

    \n

    Falsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.

    \n

    You will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:

    \n

    Unauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.

    \n

    Monitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.

    \n

    Denial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.

    \n

    Intentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.

    \n

    Operation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.

    \n

    Avoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.

    \n

    You will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;

    \n

    You will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.

    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n\n", "main_html": null, "url": "https://www.triumphhq.com/terms-of-use/", "domain": null, "language": "en", "content_type": null, "difficulty": null, "tags": null, "extracted_results": null, "llm-webkit_content": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax. If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes. Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting:“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "llm-webkit_content_list": [], "llm-webkit_success": true, "llm-webkit_time": 0.08066821098327637, "llm-webkit_text_edit_score": 0.9938773844186236, "llm-webkit_overall_score": 0.9938773844186236, "llm-webkit_predicted_code": "", "llm-webkit_predicted_formula": "", "llm-webkit_predicted_table": "", "llm-webkit_predicted_text": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax. If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes. Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting:“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "magic-html_content": "Version 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:** We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\n**Use of the Services and Company Properties:** The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\n**Application License:** Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\n**Company Software:** Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\n**Updates:** You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\n**Certain Restrictions:** The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\n**Acceptable Use:** It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\n**Third-Party Materials:** As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## **Registration**\n\n**Registering Your Account:** In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\n**Registration Data:** In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\n**Necessary Equipment and Software:** You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## **Responsibility for Content**\n\n**Types of Content:** You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\n**No Obligation to Pre-Screen Content:** You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\n**Storage:** Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## **Ownership**\n\n**Company Properties:** Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\n**Trademarks:** Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\n**Other Content:** Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\n**Your Content:** The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\n**License to Your Content:** Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\n**Username:** Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile:** Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\n**Feedback:** You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\n**Investigations:** The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## **Interactions with Other Users**\n\n**User Responsibility:** You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\n**Content Provided by Other Users:** The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## **Third-Party Services**\n\n**Third-Party Websites & Ads:** The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\n**App Stores:** You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## **Fees and Purchase Terms**\n\n**General Purpose of Terms: Sale of Service, not Software:** The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\n**Payment:** You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\n**Service Subscription Fees:** You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\n**Taxes:** The Company’s fees are net of any applicable Sales Tax. If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes. Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\n**Withholding Taxes:** You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\n**Automatic Renewal.** Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\n**Free Trials:** Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\n**Other Promotions:** We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\n**Gifting:** “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\n**Disputes:** You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\n**Indemnification:** You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## **Disclaimer of Warranties.**\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## **Limitation of Liability.**\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:** UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## **Term and Termination.**\n\n**Term:** The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## **Remedies**\n\n**Violations:** If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## **General Provisions**\n\n**Electronic Communications:** The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## **Dispute Resolution**\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:** The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\n**Choice of Language:** It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\n**Notice:** Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\n**Waiver.** Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\n**Severability:** If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\n**Export Control:** You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\n**Accessing and Download the Application from iTunes:** The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:** The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\n**International Provisions:** The following provisions shall apply only if you are located in the countries listed below.\n\n * United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n * Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n\n\n## **ACCEPTABLE USE POLICY**\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:** Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\n**Harmful or Fraudulent Activities:** Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\n**Infringing Content:** Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\n**Offensive Content:** Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\n**Harmful Content:** Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\n**Fraud or Impersonation:** Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\n**Inappropriate Content:** Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:** Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\n**Interception:** Monitoring of data or traffic on a System without permission.\n\n**Falsification of Origin:** Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:** Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\n**Monitoring or Crawling:** Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\n**Denial of Service (DoS):** Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\n**Intentional Interference:** Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\n**Operation of Certain Network Services.** Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\n**Avoiding System Restrictions:** Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n", "magic-html_content_list": [], "magic-html_success": true, "magic-html_time": 0.057988643646240234, "magic-html_formula_edit_score": 0.0, "magic-html_text_edit_score": 0.9975019346430074, "magic-html_overall_score": 0.4987509673215037, "magic-html_predicted_code": "", "magic-html_predicted_formula": "50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## **Term and Termination.**\n\n**Term:** The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## **Remedies**\n\n**Violations:** If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## **General Provisions**\n\n**Electronic Communications:** The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## **Dispute Resolution**\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US", "magic-html_predicted_table": "", "magic-html_predicted_text": "Version 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:** We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\n**Use of the Services and Company Properties:** The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\n**Application License:** Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\n**Company Software:** Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\n**Updates:** You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\n**Certain Restrictions:** The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\n**Acceptable Use:** It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\n**Third-Party Materials:** As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## **Registration**\n\n**Registering Your Account:** In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\n**Registration Data:** In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\n**Necessary Equipment and Software:** You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## **Responsibility for Content**\n\n**Types of Content:** You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\n**No Obligation to Pre-Screen Content:** You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\n**Storage:** Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## **Ownership**\n\n**Company Properties:** Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\n**Trademarks:** Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\n**Other Content:** Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\n**Your Content:** The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\n**License to Your Content:** Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\n**Username:** Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile:** Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\n**Feedback:** You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\n**Investigations:** The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## **Interactions with Other Users**\n\n**User Responsibility:** You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\n**Content Provided by Other Users:** The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## **Third-Party Services**\n\n**Third-Party Websites & Ads:** The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\n**App Stores:** You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## **Fees and Purchase Terms**\n\n**General Purpose of Terms: Sale of Service, not Software:** The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\n**Payment:** You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\n**Service Subscription Fees:** You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\n**Taxes:** The Company’s fees are net of any applicable Sales Tax. If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes. Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\n**Withholding Taxes:** You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\n**Automatic Renewal.** Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\n**Free Trials:** Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\n**Other Promotions:** We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\n**Gifting:** “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\n**Disputes:** You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\n**Indemnification:** You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## **Disclaimer of Warranties.**\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## **Limitation of Liability.**\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:** UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## **Term and Termination.**\n\n**Term:** The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## **Remedies**\n\n**Violations:** If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## **General Provisions**\n\n**Electronic Communications:** The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## **Dispute Resolution**\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:** The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\n**Choice of Language:** It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\n**Notice:** Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\n**Waiver.** Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\n**Severability:** If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\n**Export Control:** You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\n**Accessing and Download the Application from iTunes:** The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:** The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\n**International Provisions:** The following provisions shall apply only if you are located in the countries listed below.\n\n * United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n * Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n\n\n## **ACCEPTABLE USE POLICY**\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:** Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\n**Harmful or Fraudulent Activities:** Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\n**Infringing Content:** Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\n**Offensive Content:** Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\n**Harmful Content:** Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\n**Fraud or Impersonation:** Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\n**Inappropriate Content:** Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:** Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\n**Interception:** Monitoring of data or traffic on a System without permission.\n\n**Falsification of Origin:** Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:** Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\n**Monitoring or Crawling:** Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\n**Denial of Service (DoS):** Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\n**Intentional Interference:** Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\n**Operation of Certain Network Services.** Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\n**Avoiding System Restrictions:** Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n", "trafilatura_content": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:**\n**Use of the Services and Company Properties:**\n**Application License:**\n**Company Software:**\n**Updates:**\n**Certain Restrictions:**\n**Acceptable Use:**\n**Third-Party Materials:**\n**Registration**\n**Registering Your Account:**\n**Registration Data:**\n**Necessary Equipment and Software:**\n**Responsibility for Content**\n**Types of Content:**\n**No Obligation to Pre-Screen Content:**\n**Storage:**\n**Ownership**\n**Company Properties:**\n**Trademarks:**\n**Other Content:**\n**Your Content:**\n**License to Your Content:**\n**Username:**\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile:**\n**Feedback:**\n**Investigations:**\n**Interactions with Other Users**\n**User Responsibility:**\n**Content Provided by Other Users:**\n**Third-Party Services**\n**Third-Party Websites & Ads:**\n**App Stores:**\n**Fees and Purchase Terms**\n**General Purpose of Terms: Sale of Service, not Software:**\n**Payment:**\n**Service Subscription Fees:**\n**Taxes:**\n**Withholding Taxes:**\n**Automatic Renewal.**\n**Free Trials:**\n**Other Promotions:**\n**Gifting:**\n**Disputes:**\n**Indemnification:**\n**Disclaimer of Warranties.**\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n**Limitation of Liability.**\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:**\n**User Content:**\n**Basis of the Bargain:**\n**EXCLUSION OF DAMAGES:**\n**Procedure for Making Claims of Copyright Infringement.**\n**Term and Termination.**\n**Term:**\n**Prior Use:**\n**Termination of Services by Company:**\n**Termination of Services by You:**\n**Effect of Termination:**\n**Remedies**\n**Violations:**\n**Breach.**\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:**\n**International Users:**\n**General Provisions**\n**Electronic Communications:**\n**Release:**\n**Assignment:**\n**Force Majeure.**\n**Compliance:**\n**Limitations Period.**\n**Dispute Resolution**\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:**\n**Choice of Language:**\n**Notice:**\n**Waiver.**\n**Severability:**\n**Export Control:**\n**Accessing and Download the Application from iTunes:**\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:**\n**International Provisions:**\nUnited Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n-\nGermany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n-\n**ACCEPTABLE USE POLICY**\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:**\n**Harmful or Fraudulent Activities:**\n**Infringing Content:**\n**Offensive Content:**\n**Harmful Content:**\n**Fraud or Impersonation:**\n**Inappropriate Content:**\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:**\n**Interception:**\n**Falsification of Origin:**\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:**\n**Monitoring or Crawling:**\n**Denial of Service (DoS):**\n**Intentional Interference:**\n**Operation of Certain Network Services.**\n**Avoiding System Restrictions:**\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n", "trafilatura_content_list": [], "trafilatura_success": true, "trafilatura_time": 0.018096923828125, "trafilatura_text_edit_score": 0.33417235843152193, "trafilatura_overall_score": 0.33417235843152193, "trafilatura_predicted_code": "", "trafilatura_predicted_formula": "", "trafilatura_predicted_table": "", "trafilatura_predicted_text": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:**\n**Use of the Services and Company Properties:**\n**Application License:**\n**Company Software:**\n**Updates:**\n**Certain Restrictions:**\n**Acceptable Use:**\n**Third-Party Materials:**\n**Registration**\n**Registering Your Account:**\n**Registration Data:**\n**Necessary Equipment and Software:**\n**Responsibility for Content**\n**Types of Content:**\n**No Obligation to Pre-Screen Content:**\n**Storage:**\n**Ownership**\n**Company Properties:**\n**Trademarks:**\n**Other Content:**\n**Your Content:**\n**License to Your Content:**\n**Username:**\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile:**\n**Feedback:**\n**Investigations:**\n**Interactions with Other Users**\n**User Responsibility:**\n**Content Provided by Other Users:**\n**Third-Party Services**\n**Third-Party Websites & Ads:**\n**App Stores:**\n**Fees and Purchase Terms**\n**General Purpose of Terms: Sale of Service, not Software:**\n**Payment:**\n**Service Subscription Fees:**\n**Taxes:**\n**Withholding Taxes:**\n**Automatic Renewal.**\n**Free Trials:**\n**Other Promotions:**\n**Gifting:**\n**Disputes:**\n**Indemnification:**\n**Disclaimer of Warranties.**\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n**Limitation of Liability.**\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:**\n**User Content:**\n**Basis of the Bargain:**\n**EXCLUSION OF DAMAGES:**\n**Procedure for Making Claims of Copyright Infringement.**\n**Term and Termination.**\n**Term:**\n**Prior Use:**\n**Termination of Services by Company:**\n**Termination of Services by You:**\n**Effect of Termination:**\n**Remedies**\n**Violations:**\n**Breach.**\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:**\n**International Users:**\n**General Provisions**\n**Electronic Communications:**\n**Release:**\n**Assignment:**\n**Force Majeure.**\n**Compliance:**\n**Limitations Period.**\n**Dispute Resolution**\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:**\n**Choice of Language:**\n**Notice:**\n**Waiver.**\n**Severability:**\n**Export Control:**\n**Accessing and Download the Application from iTunes:**\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:**\n**International Provisions:**\nUnited Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n-\nGermany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n-\n**ACCEPTABLE USE POLICY**\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:**\n**Harmful or Fraudulent Activities:**\n**Infringing Content:**\n**Offensive Content:**\n**Harmful Content:**\n**Fraud or Impersonation:**\n**Inappropriate Content:**\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:**\n**Interception:**\n**Falsification of Origin:**\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:**\n**Monitoring or Crawling:**\n**Denial of Service (DoS):**\n**Intentional Interference:**\n**Operation of Certain Network Services.**\n**Avoiding System Restrictions:**\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n", "resiliparse_content": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\nRegistration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\nResponsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\nOwnership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\nInteractions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\nThird-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\nFees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\nDisclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\nLimitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\nTerm and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\nRemedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\nGeneral Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\nDispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n • United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n • Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\nACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "resiliparse_content_list": [], "resiliparse_success": true, "resiliparse_time": 0.0031251907348632812, "resiliparse_formula_edit_score": 0.0, "resiliparse_text_edit_score": 0.9922038694930474, "resiliparse_overall_score": 0.4961019347465237, "resiliparse_predicted_code": "", "resiliparse_predicted_formula": "50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\nTerm and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\nRemedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\nGeneral Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\nDispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US", "resiliparse_predicted_table": "", "resiliparse_predicted_text": "Terms Of Use\n\nVersion 1.0\n\nEffective Date: 08-01-2016\n\nLast Updated Date: 12-07-2018\n\nRCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\nBackground: We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\nUse of the Services and Company Properties: The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\nApplication License: Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\nCompany Software: Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\nUpdates: You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\nCertain Restrictions: The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\nAcceptable Use: It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\nThird-Party Materials: As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\nRegistration\n\nRegistering Your Account: In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\nRegistration Data: In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\nNecessary Equipment and Software: You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\nResponsibility for Content\n\nTypes of Content: You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\nStorage: Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\nOwnership\n\nCompany Properties: Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\nTrademarks: Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\nOther Content: Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\nYour Content: The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\nLicense to Your Content: Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\nUsername: Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\nYour Profile: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\nFeedback: You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\nInvestigations: The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\nInteractions with Other Users\n\nUser Responsibility: You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\nContent Provided by Other Users: The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\nThird-Party Services\n\nThird-Party Websites & Ads: The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\nApp Stores: You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\nFees and Purchase Terms\n\nGeneral Purpose of Terms: Sale of Service, not Software: The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\nPayment: You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\nService Subscription Fees: You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\nTaxes: The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\nWithholding Taxes: You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\nAutomatic Renewal. Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\nFree Trials: Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\nOther Promotions: We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\nGifting: “Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\nDisputes: You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\nIndemnification: You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\nDisclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\nLimitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\nCap on Liability: UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS ($50).\n\nUser Content: THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\nBasis of the Bargain: THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\nEXCLUSION OF DAMAGES: CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\nProcedure for Making Claims of Copyright Infringement. It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\nTerm and Termination.\n\nTerm: The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\nPrior Use: Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\nTermination of Services by Company: If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\nTermination of Services by You: If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\nEffect of Termination: Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\nRemedies\n\nViolations: If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\nBreach. In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\nNo Subsequent Registration: If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\nInternational Users: The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\nGeneral Provisions\n\nElectronic Communications: The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\nRelease: You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\nAssignment: The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\nForce Majeure. The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\nCompliance: If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\nLimitations Period. YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\nDispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US $5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\nGoverning Law: The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\nChoice of Language: It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\nNotice: Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\nWaiver. Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\nExport Control: You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\nAccessing and Download the Application from iTunes: The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\nEntire Agreement: The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\nInternational Provisions: The following provisions shall apply only if you are located in the countries listed below.\n\n • United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n • Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\nACCEPTABLE USE POLICY\n\nLast Updated: [04-21-2017]\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\nIllegal Activities: Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\nHarmful or Fraudulent Activities: Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\nInfringing Content: Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\nOffensive Content: Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\nHarmful Content: Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\nFraud or Impersonation: Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\nInappropriate Content: Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\nUnauthorized Access: Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\nInterception: Monitoring of data or traffic on a System without permission.\n\nFalsification of Origin: Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\nUnauthorized communication: Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\nMonitoring or Crawling: Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\nDenial of Service (DoS): Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\nIntentional Interference: Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\nOperation of Certain Network Services. Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\nAvoiding System Restrictions: Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.", "groundtruth_groundtruth_code": "", "groundtruth_groundtruth_formula": "", "groundtruth_groundtruth_table": "", "groundtruth_groundtruth_text": "RCCI GROUP, INC. (“COMPANY” OR “WE” OR “OUR”) OPERATES THE TRIUMPH SERIES OF APPS (EACH, AN “APPLICATION”), RELATED WEBSITES OF THE COMPANY (e.g. www.triumphhq.com), ITS AFFILIATES OR AGENTS WITH LINKS TO THIS TERMS OF USE (COLLECTIVELY, THE “WEBSITE”) AND ANY RELATED SERVICES AND RESOURCES AVAILABLE OR ENABLED VIA THE WEBSITE OR APPLICATIONS (EACH A “SERVICE” AND COLLECTIVELY, THE “SERVICES”). PLEASE READ THIS TERMS OF USE AGREEMENT (THE “TERMS OF USE”) CAREFULLY. BY ACCESSING OR USING THIS WEBSITE, SERVICES OR APPLICATION(S), CLICKING ON THE “I ACCEPT” BUTTON, COMPLETING THE REGISTRATION PROCESS, AND/OR BROWSING THE WEBSITE, OR DOWNLOADING THE APPLICATION(S), YOU REPRESENT THAT (1) YOU HAVE READ, UNDERSTAND, AND AGREE TO BE BOUND BY THE TERMS OF USE, (2) YOU ARE OF LEGAL AGE TO FORM A BINDING CONTRACT WITH THE COMPANY, AND (3) YOU HAVE THE AUTHORITY TO ENTER INTO THE TERMS OF USE PERSONALLY OR ON BEHALF OF THE COMPANY YOU HAVE NAMED AS THE USER, AND TO BIND THAT COMPANY TO THE TERMS OF USE. THE TERM “YOU” REFERS TO THE INDIVIDUAL OR LEGAL ENTITY, AS APPLICABLE, IDENTIFIED AS THE USER WHEN YOU REGISTERED ON THE WEBSITE. IF YOU DO NOT AGREE TO BE BOUND BY THE TERMS OF USE, YOU MAY NOT ACCESS OR USE THIS WEBSITE OR THE SERVICES.\n\nIF YOU SUBSCRIBE TO THE SERVICES FOR A TERM (THE “INITIAL TERM”), THEN THE TERMS WILL BE AUTOMATICALLY RENEWED FOR ADDITIONAL PERIODS OF THE SAME DURATION AS THE INITIAL TERM AT COMPANY’S THEN-CURRENT FEE FOR SUCH SERVICES UNLESS YOU DECLINE TO RENEW YOUR SUBSCRIPTION IN ACCORDANCE WITH SECTION 9.6 BELOW.\n\nTHE TERMS OF USE REQUIRE THE USE OF ARBITRATION ON AN INDIVIDUAL BASIS TO RESOLVE DISPUTES, RATHER THAN JURY TRIALS OR CLASS ACTIONS, AND ALSO LIMIT THE REMEDIES AVAILABLE TO YOU IN THE EVENT OF A DISPUTE.\n\nYour use of, and participation in, certain Services may be subject to additional terms (“Supplemental Terms”) and such Supplemental Terms will either be listed in the Terms of Use or will be presented to you for your acceptance when you sign up to use the supplemental Service. If the Terms of Use are inconsistent with the Supplemental Terms, the Supplemental Terms shall control with respect to such Service. The Terms of Use and any applicable Supplemental Terms are referred to herein as the “Terms.”\n\nCompany knows that your privacy is important. For this reason, we have created a Privacy Policy that describes our collection, use and disclosure practices regarding any personal information that you provide to us. The security of your personal information is important to us. While there is no such thing as “perfect security” on the Internet, we will take reasonable steps to help ensure the safety of your personal information. However, you understand and agree that such steps do not guarantee that the Services are invulnerable to all security breaches or immune from viruses, security threats or other vulnerabilities. We reserve the right to cooperate with local, state, provincial and national authorities in investigations of improper or unlawful activities and this may require the disclosure of your personal information.\n\nPLEASE NOTE THAT The Terms are subject to change by the Company in its sole discretion at any time. When changes are made, the Company will make a new copy of the Terms of Use available at the Website and/or within the Application and any new Supplemental Terms will be made available from within, or through, the affected Service on the Website or within the Application. We will also update the “Last Updated” date at the top of the Terms of Use. If we make any material changes, and you have registered with us to create an Account (as defined in Section 3.1 below), we will also send an e-mail to you at the last e-mail address you provided to us pursuant to the Terms. Any changes to the Terms will be effective immediately for new Users of the Website, the Application and/ or Services and will be effective thirty (30) days after posting notice of such changes on the Website for existing Users, provided that any material changes shall be effective for Users who have an Account with us upon the earlier of thirty (30) days after posting notice of such changes on the Website or thirty (30) days after dispatch of an e-mail notice of such changes to Registered Users (defined in Section 3.1 below). The Company may require you to provide consent to the updated Terms in a specified manner before further use of the Website, the Application and/ or the Services is permitted. If you do not agree to any change(s) after receiving a notice of such change(s), you shall stop using the Website, the Application and/or the Services. Otherwise, your continued use of the Website, the Application and/or Services constitutes your acceptance of such change(s) PLEASE REGULARLY CHECK THE WEBSITE TO VIEW THE THEN-CURRENT TERMS.\n\n**Background:** We offer you a platform to actualize your potential and live joyously. Your use of our platform may involve recording your memories and other notes and information, and, if you wish, sharing them. Pretty simple, right? You’ll need to access the Website and/or download our Application(s) and become a Registered User (see Section 2) to start your own self-development journey, and then you start “writing” and/or “recording”. Based on your subscription level, certain features and functions will be made available to you, including the ability to “publish” your entries. Read on and we will tell you how this works. Please remember that the following Terms of Use can feel like a legal document because, well, it is a legal document. If you’re going to invest lots of time in using our Services we recommend you read it, maybe even twice, because we want you to gain comfort and confidence in the agreement.\n\n**Use of the Services and Company Properties:** The Application, the Software, the Website, the Services, and the information and content available on the Website and in the Application and the Services (as these terms are defined below) (collectively, the “Company Properties”) are protected by copyright laws throughout the world. Subject to the Terms, the Company grants you a limited license to reproduce portions of the Company Properties for the sole purpose of using the Services for your personal or internal business purposes. Unless otherwise specified by the Company in a separate license, your right to use any Company Properties is subject to the Terms.\n\n**Application License:** Subject to your compliance with the Terms, the Company grants you a limited non-exclusive, non-transferable, non-sublicensable, revocable license to download, install and use a copy of the Application on a single mobile device or computer that you own or control and to run such copy of the Application solely for your own personal or internal business purposes. Furthermore, with respect to any Application accessed through or downloaded from the Apple App Store (an “App Store Sourced Application”), you will only use the App Store Sourced Application (i) on an Apple-branded product that runs the iOS (Apple’s proprietary operating system) and (ii) as permitted by the “Usage Rules” set forth in the Apple App Store Terms of Service.\n\n**Company Software:** Use of any software and associated documentation, other than the Application, that is made available via the Website or the Services (“Software”) is governed by the terms of the license agreement that accompanies or is included with the Software, or by the license agreement expressly stated on the Website page(s) accompanying the Software. These license terms may be posted with the Software downloads or at the Website page where the Software can be accessed. You shall not use, download or install any Software that is accompanied by or includes a license agreement unless you agree to the terms of such license agreement. At no time will the Company provide you with any tangible copy of our Software. The Company shall deliver access to the Software via electronic transfer or download and shall not use or deliver any tangible media in connection with the (a) delivery, installation, updating or problem resolution of any Software (including any new releases); or (b) delivery, correction or updating of documentation. For the purposes of this section tangible media shall include, but not be limited to, any tape disk, compact disk, card, flash drive, or any other comparable physical medium. Unless the accompanying license agreement expressly allows otherwise, any copying or redistribution of the Software is prohibited, including any copying or redistribution of the Software to any other server or location, or redistribution or use on a service bureau basis. If there is any conflict between the Terms and the license agreement, the license agreement shall take precedence in relation to that Software (except as provided in the following sentence). If the Software is a pre-release version, then, notwithstanding anything to the contrary included within an accompanying license agreement, you are not permitted to use or otherwise rely on the Software for any commercial or production purposes. If no license agreement accompanies use of the Software, use of the Software will be governed by the Terms. Subject to your compliance with the Terms, the Company grants you a non-assignable, non-transferable, non-sublicensable, revocable non-exclusive license to use the Software for the sole purpose of enabling you to use the Services in the manner permitted by the Terms. Some Software may be offered under an open source license that we will make available to you. There may be provisions in the open source license that expressly override some of these terms.\n\n**Updates:** You understand that the Company Properties are evolving. As a result, the Company may require you to accept updates to the Company Properties that you have installed on your computer or mobile device. You acknowledge and agree that the Company may update the Company Properties with or without notifying you. You may need to update third-party software from time to time in order to use the Company Properties.\n\n**Certain Restrictions:** The rights granted to you in the Terms are subject to the following restrictions: (a) you shall not license, sell, rent, lease, transfer, assign, reproduce, distribute, host or otherwise commercially exploit the Company Properties or any portion of the Company Properties, including the Website, (b) you shall not frame or utilize framing techniques to enclose any trademark, logo, or other Company Properties (including images, text, page layout or form) of the Company; (c) you shall not use any metatags or other “hidden text” using Company’s name or trademarks; (d) you shall not modify, translate, adapt, merge, make derivative works of, disassemble, decompile, reverse compile or reverse engineer any part of the Company Properties except to the extent the foregoing restrictions are expressly prohibited by applicable law; (e) you shall not use any manual or automated software, devices or other processes (including but not limited to spiders, robots, scrapers, crawlers, avatars, data mining tools or the like) to “scrape” or download data from any web pages contained in the Website (except that we grant the operators of public search engines revocable permission to use spiders to copy materials from the Website for the sole purpose of and solely to the extent necessary for creating publicly available searchable indices of the materials, but not caches or archives of such materials); (f) access the Company Properties in order to build a similar or competitive website, application or service; (g) except as expressly stated herein, no part of the Company Properties may be copied, reproduced, distributed, republished, downloaded, displayed, posted or transmitted in any form or by any means; and (h) you shall not remove or destroy any copyright notices or other proprietary markings contained on or in the Company Properties. Any future release, update or other addition to the Company Properties shall be subject to the Terms. The Company, its suppliers and service providers reserve all rights not granted in the Terms. Any unauthorized use of the Company Properties terminates the licenses granted by the Company pursuant to the Terms.\n\n**Acceptable Use:** It is our goal to provide an enjoyable experience for all users. As a result, when you use the Company Properties, you must follow our Acceptable Use Policy, which is incorporated by reference herein. You also may not advocate, encourage or assist any third party in violating our Acceptable Use Policy. We may amend this policy from time to time.\n\n**Third-Party Materials:** As a part of the Company Properties, you may have access to materials that are hosted by another party. You agree that it is impossible for the Company to monitor such materials and that you access these materials at your own risk.\n\n## Registration\n\n**Registering Your Account:** In order to access certain features of the Company Properties you may be required to become a Registered User. For purposes of the Terms, a “Registered User” is a User who has registered an account on the Website and/or Application(s) (“Account”).\n\n**Registration Data:** In registering for the Services, you agree to (1) provide true, accurate, current and complete information about yourself as prompted by the Services’ registration form (the “Registration Data”); and (2) maintain and promptly update the Registration Data to keep it true, accurate, current and complete. You represent that you are (1) at least thirteen (13) years old; (2) of legal age to form a binding contract; and (3) not a person barred from using the Company Properties under the laws of the United States, your place of residence or any other applicable jurisdiction. You are responsible for all activities that occur under your Account. You agree that you shall monitor your Account to restrict use by minors, and you will accept full responsibility for any unauthorized use of the Company Properties by minors. You may not share your Account or password with anyone, and you agree to (1) notify the Company immediately of any unauthorized use of your password or any other breach of security; and (2) exit from your Account at the end of each session. If you provide any information that is untrue, inaccurate, not current or incomplete, or the Company has reasonable grounds to suspect that such information is untrue, inaccurate, not current or incomplete, the Company has the right to suspend or terminate your Account and refuse any and all current or future use of the Company Properties (or any portion thereof). You agree not to create an Account using a false identity or information, or on behalf of someone other than yourself. You agree that you shall not have more than one Account at any given time. The Company reserves the right to remove or reclaim any usernames at any time and for any reason, including but not limited to, claims by a third party that a username violates the third party’s rights. You agree not to create an Account or use the Company Properties if you have been previously removed by the Company, or if you have been previously banned from any of the Company Properties.\n\n**Necessary Equipment and Software:** You must provide all equipment and software necessary to connect to the Company Properties, including but not limited to, a mobile device that is suitable to connect with and use the Company Properties, in cases where the Services offer a mobile component. You are solely responsible for any fees, including Internet connection or mobile fees, that you incur when accessing the Company Properties.\n\n## Responsibility for Content\n\n**Types of Content:** You acknowledge that all Content, including the Company Properties, is the sole responsibility of the party from whom such Content originated. This means that you, and not the Company, are entirely responsible for all Content that you upload, post, e-mail, transmit or otherwise make available (“Make Available”) through the Company Properties (“Your Content”), and other Users of the Company Properties, and not the Company, are similarly responsible for all Content they Make Available through the Company Properties (“User Content”).\n\nNo Obligation to Pre-Screen Content: You acknowledge that the Company has no obligation to pre-screen Content (including, but not limited to, Your Content and User Content), although the Company reserves the right in its sole discretion to pre-screen, refuse or remove any Content. By entering into the Terms, you hereby provide your irrevocable consent to such monitoring. You acknowledge and agree that you have no expectation of privacy concerning the transmission of Your Content, including without limitation chat, text, or voice communications. In the event that the Company pre-screens, refuses or removes any Content, you acknowledge that the Company will do so for the Company’s benefit, not yours. Without limiting the foregoing, the Company shall have the right to remove any Content that violates the Terms or is otherwise objectionable.\n\n**Storage:** Unless expressly agreed to by the Company in writing elsewhere, the Company has no obligation to store any of Your Content that you Make Available on the Company Properties. The Company has no responsibility or liability for the deletion or accuracy of any Content, including Your Content; the failure to store, transmit or receive transmission of Content; or the security, privacy, storage, or transmission of other communications originating with or involving use of the Company Properties. Certain Services may enable you to specify the level at which such Services restrict access to Your Content. You are solely responsible for applying the appropriate level of access to Your Content. You agree that the Company retains the right to create reasonable limits on the Company’s use and storage of the Content, including Your Content, such as limits on file size, storage space, processing capacity, and similar limits described in the web pages accompanying the Services and as otherwise determined by the Company in its sole discretion.\n\n## Ownership\n\n**Company Properties:** Except with respect to Your Content and User Content, you agree that the Company and its suppliers own all rights, title and interest in the Company Properties. You will not remove, alter or obscure any copyright, trademark, service mark or other proprietary rights notices incorporated in or accompanying the Website, the Services, or the Company Properties.\n\n**Trademarks:** Company’s stylized name and other related graphics, logos, service marks and trade names used on or in connection with the Company Properties or in connection with the Services are the trademarks of the Company and may not be used without permission in connection with any third-party products or services. Other trademarks, service marks and trade names that may appear on or in the Company Properties are the property of their respective owners.\n\n**Other Content:** Except with respect to Your Content, you agree that you have no right or title in or to any Content that appears on or in the Company Properties.\n\n**Your Content:** The Company does not claim ownership of Your Content. However, when you as a User post or publish Your Content on or in the Company Properties, you represent that you own and/or have the rights to grant the license below in “License to Your Content” Section for Your Content.\n\n**License to Your Content:** Subject to any applicable account settings that you select, you grant the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, royalty-free, non-exclusive and fully sublicensable right (including any moral rights) and license to use, license, distribute, reproduce, modify, adapt, publicly perform, and publicly display, Your Content (in whole or in part) and/or to incorporate it in other works in any form, media or technology now known or later developed, for the purposes of operating and providing the Company Properties to you and to our other Users. Before that scares you off, keep reading. We know these rights seem broad, but we are trying to cover all of the use cases for Your Content in one sentence – otherwise, this Agreement would be even longer. Don’t worry – this does not mean that all Content you provide us will be made publicly available. We will use Your Content in accordance with the settings in which you submitted such Content, as detailed under our Privacy Policy . To be clear, if Your Content is a journal entry or page, the default is private to you. Please remember that other Users may search for, see, use, and reproduce any of Your Content that you “publish” on the Company Properties. You warrant that the holder of any worldwide intellectual property right, including moral rights, in Your Content, has completely and effectively waived all such rights and validly and irrevocably granted to you the right to grant the license stated above. You agree that you, not the Company, are responsible for all of Your Content that you Make Available on or in the Company Properties.\n\n**Username:** Notwithstanding anything contained herein to the contrary, by submitting Your Content to any forums, comments or any other area on the Company Properties, you hereby expressly permit the Company to identify you by your username (which may be a pseudonym) as the contributor of Your Content in any publication in any form, media or technology now known or later developed in connection with Your Content.\n\nYour Account. Notwithstanding anything to the contrary herein, you acknowledge and agree that you shall have no ownership or other property interest in your Account, and you further acknowledge and agree that all rights in and to your Account are and shall forever be owned by and inure to the benefit of the Company.\n\n**Your Profile**: Any Content posted by you in your profile may not contain nudity, violence, sexually explicit, or offensive subject matter. You may not post or submit for print services a photograph of another person without that person’s permission.\n\n**Feedback:** You agree that submission of any ideas, suggestions, documents, and/or proposals to the Company through its suggestion, feedback, wiki, forum or similar pages (“Feedback”) is at your own risk and that the Company has no obligations (including without limitation obligations of confidentiality) with respect to such Feedback. You represent and warrant that you have all rights necessary to submit the Feedback. You hereby grant to the Company a fully paid, royalty-free, perpetual, irrevocable, worldwide, non-exclusive, and fully sublicensable right and license to use, reproduce, perform, display, distribute, adapt, modify, re-format, create derivative works of, and otherwise commercially or non-commercially exploit in any manner, any and all Feedback, and to sublicense the foregoing rights, in connection with the operation and maintenance of the Company Properties.\n\n**Investigations:** The Company may, but is not obligated to, monitor or review the Company Properties and Content at any time. Without limiting the foregoing, the Company shall have the right, in its sole discretion, to remove any of Your Content for any reason (or no reason), including if such Content violates the Terms or any applicable law. Although the Company does not generally monitor user activity occurring in connection with the Company Properties or Content, if the Company becomes aware of any possible violations by you of any provision of the Terms, the Company reserves the right to investigate such violations, and the Company may, at its sole discretion, immediately terminate your license to use the Company Properties, or change, alter or remove Your Content, in whole or in part, without prior notice to you.\n\n## Interactions with Other Users\n\n**User Responsibility:** You are solely responsible for your interactions with other Users of the Services and any other parties with whom you interact through the Services; provided, however, that the Company reserves the right, but has no obligation, to intercede in such disputes. You agree that the Company will not be responsible for any liability incurred as the result of such interactions.\n\n**Content Provided by Other Users:** The Company Properties may contain User Content provided by other Users. The Company is not responsible for and does not control User Content. The Company has no obligation to review or monitor, and does not approve, endorse or make any representations or warranties with respect to User Content. You use all User Content and interact with other Users at your own risk.\n\n## Third-Party Services\n\n**Third-Party Websites & Ads:** The Company Properties may contain links to third-party websites (“Third-Party Websites”) and advertisements for third parties (collectively, “Third-Party Websites & Ads”). When you click on a link to a Third-Party Website or Ad, we will not warn you that you have left the Company Properties and are subject to the terms and conditions (including privacy policies) of another website or destination. Such Third-Party Websites are not under the control of the Company. The Company is not responsible for any Third-Party Websites & Ads. The Company provides these Third-Party Websites & Ads only as a convenience and does not review, approve, monitor, endorse, warrant, or make any representations with respect to Third-Party Websites & Ads, or their products or services. You use all links in Third-Party Websites & Ads at your own risk. When you leave our Website, our Terms and policies no longer govern. You should review applicable terms and policies, including privacy and data gathering practices, of any Third-Party Websites, and should make whatever investigation you feel necessary or appropriate before proceeding with any transaction with any third party.\n\n**App Stores:** You acknowledge and agree that the availability of the Application and the Services is dependent on the third party from which you received the Application license, e.g., the Apple iPhone or Android app stores (“App Store”). You acknowledge that the Terms are between you and the Company and not with the App Store. The Company, not the App Store, is solely responsible for the Company Properties, including the Application, the content thereof, maintenance, support services, and warranty therefor, and addressing any claims relating thereto (e.g., product liability, legal compliance or intellectual property infringement). In order to use the Application, you must have access to a wireless network, and you agree to pay all fees associated with such access. You also agree to pay all fees (if any) charged by the App Store in connection with the Company Properties, including the Application. You agree to comply with, and your license to use the Application is conditioned upon your compliance with, all applicable third-party terms of agreement (e.g., the App Store’s terms and policies) when using the Company Properties, including the Application. You acknowledge that the App Store (and its subsidiaries) are third-party beneficiaries of the Terms and will have the right to enforce them.\n\n## Fees and Purchase Terms\n\n**General Purpose of Terms: Sale of Service, not Software:** The purpose of the Terms is for you to secure access to the Services. All fees set forth within and paid by you under the Terms shall be considered solely in furtherance of this purpose. In no way are these fees paid considered payment for the sale, license, or use of the Company’s Software, and, furthermore, any use of the Company’s Software by you in furtherance of the Terms will be considered merely in support of the purpose of the Terms.\n\n**Payment:** You agree to pay all fees or charges to your Account in accordance with the fees, charges and billing terms in effect at the time a fee or charge is due and payable. Currently, all payments are made through the Application and/or the Website. You may be required to provide the Company with a valid credit card (Visa, MasterCard, or any other issuer accepted by us) or PayPal account (“Payment Provider”). Your Payment Provider agreement governs your use of the designated credit card or PayPal account, and you must refer to that agreement and not the Terms to determine your rights and liabilities. By providing the Company with your credit card number or PayPal account and associated payment information, you agree that the Company is authorized to immediately invoice your Account for all fees and charges due and payable to the Company hereunder and that no additional notice or consent is required. You agree to immediately notify the Company of any change in your billing address or the credit card or PayPal account used for payment hereunder. The Company reserves the right at any time to change its prices and billing methods, either immediately upon posting on the Company Properties or by e-mail delivery to you. In the course of your use of the Company’s Software, the Company and its third party payment service provider may receive and implement updated credit card information from your credit card issuer in order to prevent your subscription from being interrupted by an outdated or invalid card. This disbursement of the updated credit card information is provided to the Company and the Company’s third party payment service provider at the sole election of your credit card issuer. Your credit card issuer may give you the right to opt-out of the update service. Should you desire to do so, please contact your credit card issuer.\n\n**Service Subscription Fees:** You will be responsible for payment of the applicable fee for any Services (each, a “Service Subscription Fee”) at the time you upgrade to a premium subscription and/or purchase access to a paid Service (each, a “Service Commencement Date”). Except as set forth in the Terms, all fees for the Services are non-refundable. No contract will exist between you and the Company for the Services until the Company accepts your order by a confirmatory e-mail or other appropriate means of communication.\n\n**Taxes:** The Company’s fees are net of any applicable Sales Tax.  If any Services, or payments for any Services, under the Terms are subject to Sales Tax in any jurisdiction and you have not remitted the applicable Sales Tax to the Company, you will be responsible for the payment of such Sales Tax and any related penalties or interest to the relevant tax authority, and you will indemnify the Company for any liability or expense we may incur in connection with such Sales Taxes.  Upon our request, you will provide us with official receipts issued by the appropriate taxing authority, or other such evidence that you have paid all applicable taxes. For purposes of this section, “Sales Tax” shall mean any sales or use tax, and any other tax measured by sales proceeds, that the Company is permitted to pass to its customers, that is the functional equivalent of a sales tax where the applicable taxing jurisdiction does not otherwise impose a sales or use tax.\n\n**Withholding Taxes:** You agree to make all payments of fees to the Company free and clear of, and without reduction for, any withholding taxes. Any such taxes imposed on payments of fees to the Company will be your sole responsibility, and you will provide the Company with official receipts issued by the appropriate taxing authority, or such other evidence as we may reasonably request, to establish that such taxes have been paid.\n\n**Automatic Renewal.** Unless otherwise specified by the Company, your subscription will continue indefinitely until terminated in accordance with the Terms. After your initial subscription period, and again after any subsequent subscription period, your subscription will automatically commence on the first day following the end of such period (each a “Renewal Commencement Date”) and continue for an additional equivalent period, at the Company’s then-current price for such subscription. You agree that your Account will be subject to this automatic renewal feature unless you cancel your subscription at any time prior to the Renewal Commencement Date. If you cancel your subscription, you may use your subscription until the end of your then-current subscription term; your subscription will not be renewed after your then-current term expires. However, you will not be eligible for a prorated refund of any portion of the subscription fee paid for the then-current subscription period. By subscribing, you authorize the Company to charge your Payment Provider now, and again at the beginning of any subsequent subscription period. Upon renewal of your subscription, if the Company does not receive payment from your Payment Provider, (i) you agree to pay all amounts due on your Account upon demand, and/or (ii) you agree that the Company may either terminate or suspend your subscription and continue to attempt to charge your Payment Provider until payment is received (upon receipt of payment, your Account will be activated and for purposes of automatic renewal, your new subscription commitment period will begin as of the day payment was received).\n\n**Free Trials:** Any free trial or other promotion that provides Registered User level access to the Services must be used within the specified time of the trial. At the end of the trial period, your use of that Service will expire and any further use of the Service is prohibited unless you pay the applicable subscription fee. If indicated accordingly, the free trial may be followed by Automatic Renewal as defined in the previous section.\n\n**Other Promotions:** We may run promotional offers from time to time on the Website. The terms of any such promotion will be posted on the Website. Unless otherwise indicated, we may establish and modify, in our sole discretion, the terms of such offer and end such offer at any point.\n\n**Gifting:**“Gift Subscriptions” are pre-paid memberships to any Company Properties. A person who purchases the gift is referred to in these Terms as the “Giftor”. A person who receives and redeems a Gift Subscription to the Company Properties is referred to in these terms as the “Recipient”. Gift Subscriptions are paid for as a one-off upfront payment. Once bought, the Giftor will receive an Order confirmation and receipt. Unless otherwise specified by the Company, the Giftor will be responsible for sending the Gift Subscription to the Recipient. Only if so specified by the Company at the time of purchase, the Company Gift Subscription will be sent to the Recipient on the Giftor’s specified date. Gifting codes can only be used once in the country for which they were purchased and cannot be redeemed for cash, resold or combined with any other offers, including free trial. Please note that gifting codes cannot be redeemed if the Recipient has already purchased a subscription through the Apple iTunes Store or our iPhone application, or the Google Play Store or our Android application. We will automatically bill the Payment Method you provided for any purchased Gift Subscriptions at the time of purchase, not delivery. There are no refunds or other credits for Gift Subscription that are not redeemed. Company may notify the Recipient prior to the end of the Gift Subscription that the gift period is about to expire. Company is not responsible if a Gift Subscription is lost, stolen or used without permission.\n\n**Disputes:** You must notify us in writing within seven (7) days after receiving your credit card statement, if you dispute any of our charges on that statement or such dispute will be deemed waived. Billing disputes should be notified to the following email address: hello@triumphhq.com\n\n**Indemnification:** You agree to indemnify and hold the Company, its parents, subsidiaries, affiliates, officers, employees, agents, partners and licensors (collectively, the “Company Parties”) harmless from any losses, costs, liabilities and expenses (including reasonable attorneys’ fees) relating to or arising out of: (a) Your Content; (b) your use of, or inability to use, the Company Properties; (c) your violation of the Terms; (d) your violation of any rights of another party, including any Users; or (e) your violation of any applicable laws, rules or regulations. The Company reserves the right, at its own cost, to assume the exclusive defense and control of any matter otherwise subject to indemnification by you, in which event you will fully cooperate with the Company in asserting any available defenses. You agree that the provisions in this section will survive any termination of your Account, the Terms or your access to the Company Properties.\n\n## Disclaimer of Warranties.\n\nAs Is. YOU EXPRESSLY UNDERSTAND AND AGREE THAT TO THE EXTENT PERMITTED BY APPLICABLE LAW, YOUR USE OF THE COMPANY PROPERTIES IS AT YOUR SOLE RISK, AND THE COMPANY PROPERTIES ARE PROVIDED ON AN “AS IS” AND “AS AVAILABLE” BASIS, WITH ALL FAULTS. COMPANY PARTIES EXPRESSLY DISCLAIM ALL WARRANTIES, REPRESENTATIONS, AND CONDITIONS OF ANY KIND, WHETHER EXPRESS OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OR CONDITIONS OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.\n\nTHE COMPANY PARTIES MAKE NO WARRANTY, REPRESENTATION OR CONDITION THAT: (1) THE COMPANY PROPERTIES WILL MEET YOUR REQUIREMENTS; (2) YOUR USE OF THE COMPANY PROPERTIES WILL BE UNINTERRUPTED, TIMELY, SECURE OR ERROR-FREE; (3) THE RESULTS THAT MAY BE OBTAINED FROM USE OF THE COMPANY PROPERTIES WILL BE ACCURATE OR RELIABLE; OR (4) ANY ERRORS IN THE COMPANY PROPERTIES WILL BE CORRECTED.\n\nANY CONTENT DOWNLOADED FROM OR OTHERWISE ACCESSED THROUGH THE COMPANY PROPERTIES IS ACCESSED AT YOUR OWN RISK, AND YOU SHALL BE SOLELY RESPONSIBLE FOR ANY DAMAGE TO YOUR PROPERTY OR PERSON, INCLUDING, BUT NOT LIMITED TO, YOUR COMPUTER SYSTEM AND ANY DEVICE YOU USE TO ACCESS THE COMPANY PROPERTIES, OR ANY OTHER LOSS THAT RESULTS FROM ACCESSING SUCH CONTENT.\n\nTHE SERVICES MAY BE SUBJECT TO DELAYS, CANCELLATIONS AND OTHER DISRUPTIONS. COMPANY MAKES NO WARRANTY, REPRESENTATION OR CONDITION WITH RESPECT TO SERVICES, INCLUDING BUT NOT LIMITED TO, THE QUALITY, EFFECTIVENESS, REPUTATION AND OTHER CHARACTERISTICS OF SERVICES.\n\nNO ADVICE OR INFORMATION, WHETHER ORAL OR WRITTEN, OBTAINED FROM COMPANY OR THROUGH THE COMPANY PROPERTIES WILL CREATE ANY WARRANTY NOT EXPRESSLY MADE HEREIN.\n\nFrom time to time, THE Company may offer new “beta” features or tools with which its users may experiment. Such features or tools are offered solely for experimental purposes and without any warranty of any kind, and may be modified or discontinued at THE Company’s sole discretion. The provisions of this section apply with full force to such features or tools.\n\nNo Liability for Conduct of Third Parties. YOU ACKNOWLEDGE AND AGREE THAT THE COMPANY PARTIES ARE NOT LIABLE, AND YOU AGREE NOT TO SEEK TO HOLD THE COMPANY PARTIES LIABLE, FOR THE CONDUCT OF THIRD PARTIES, INCLUDING OPERATORS OF EXTERNAL SITES, AND THAT THE RISK OF INJURY FROM SUCH THIRD PARTIES RESTS ENTIRELY WITH YOU.\n\nNo Liability for Conduct of Other Users. YOU ARE SOLELY RESPONSIBLE FOR ALL OF YOUR COMMUNICATIONS AND INTERACTIONS WITH OTHER USERS OF THE COMPANY PROPERTIES. YOU UNDERSTAND THAT COMPANY DOES NOT MAKE ANY ATTEMPT TO VERIFY THE STATEMENTS OF USERS OF THE COMPANY PROPERTIES.\n\n## Limitation of Liability.\n\nDisclaimer of Certain Damages. YOU UNDERSTAND AND AGREE THAT IN NO EVENT SHALL COMPANY PARTIES BE LIABLE FOR ANY INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES ARISING OUT OF OR IN CONNECTION WITH THE COMPANY PROPERTIES, INCLUDING, WITHOUT LIMITATION, ANY DAMAGES RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT COMPANY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES, OR FOR ANY DAMAGES FOR PERSONAL OR BODILY INJURY OR EMOTIONAL DISTRESS ARISING OUT OF OR IN CONNECTION WITH THE TERMS, OR FROM ANY COMMUNICATIONS, INTERACTIONS OR MEETINGS WITH OTHER USERS OF THE COMPANY PROPERTIES, ON ANY THEORY OF LIABILITY, RESULTING FROM: (1) THE USE OR INABILITY TO USE THE COMPANY PROPERTIES; (2) THE COST OF PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES RESULTING FROM ANY GOODS, DATA, INFORMATION OR SERVICES PURCHASED OR OBTAINED OR MESSAGES RECEIVED FOR TRANSACTIONS ENTERED INTO THROUGH THE COMPANY PROPERTIES; (3) UNAUTHORIZED ACCESS TO OR ALTERATION OF YOUR TRANSMISSIONS OR DATA; (4) STATEMENTS OR CONDUCT OF ANY THIRD PARTY ON THE COMPANY PROPERTIES; OR (5) ANY OTHER MATTER RELATED TO THE COMPANY PROPERTIES, WHETHER BASED ON WARRANTY, COPYRIGHT, CONTRACT, TORT (INCLUDING NEGLIGENCE), PRODUCT LIABILITY OR ANY OTHER LEGAL THEORY.\n\n**Cap on Liability:** UNDER NO CIRCUMSTANCES WILL THE COMPANY PARTIES BE LIABLE TO YOU FOR MORE THAN THE AMOUNT RECEIVED BY THE COMPANY AS A RESULT OF YOUR USE OF THE COMPANY PROPERTIES IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT A CLAIM. IF YOU HAVE NOT PAID THE COMPANY ANY AMOUNTS IN THE SUBSCRIPTION PERIOD DURING WHICH YOU FIRST ASSERT ANY SUCH CLAIM, COMPANY’S SOLE AND EXCLUSIVE LIABILITY SHALL BE LIMITED TO FIFTY DOLLARS (\\$50).\n\n**User Content:** THE COMPANY PARTIES ASSUME NO RESPONSIBILITY FOR THE TIMELINESS, DELETION, MIS-DELIVERY OR FAILURE TO STORE ANY CONTENT (INCLUDING, BUT NOT LIMITED TO, YOUR CONTENT AND USER CONTENT), USER COMMUNICATIONS OR PERSONALIZATION SETTINGS.\n\n**Basis of the Bargain:** THE LIMITATIONS OF DAMAGES SET FORTH ABOVE ARE FUNDAMENTAL ELEMENTS OF THE BASIS OF THE BARGAIN BETWEEN COMPANY AND YOU.\n\n**EXCLUSION OF DAMAGES:** CERTAIN JURISDICTIONS DO NOT ALLOW THE EXCLUSION OR LIMITATION OF CERTAIN DAMAGES. IF THESE LAWS APPLY TO YOU, SOME OR ALL OF THE ABOVE EXCLUSIONS OR LIMITATIONS MAY NOT APPLY TO YOU, AND YOU MIGHT HAVE ADDITIONAL RIGHTS.\n\n**Procedure for Making Claims of Copyright Infringement.** It is the Company’s policy to terminate membership privileges of any User who repeatedly infringes copyright upon prompt notification to the Company by the copyright owner or the copyright owner’s legal agent. Without limiting the foregoing, if you believe that your work has been copied and posted on the Company Properties in a way that constitutes copyright infringement, please provide our Copyright Agent with the following information: (1) an electronic or physical signature of the person authorized to act on behalf of the owner of the copyright interest; (2) a description of the copyrighted work that you claim has been infringed; (3) a description of the location on the Company Properties of the material that you claim is infringing; (4) your address, telephone number and e-mail address; (5) a written statement by you that you have a good faith belief that the disputed use is not authorized by the copyright owner, its agent or the law; and (6) a statement by you, made under penalty of perjury, that the above information in your notice is accurate and that you are the copyright owner or authorized to act on the copyright owner’s behalf. Contact information for the Company’s Copyright Agent for notice of claims of copyright infringement is as follows: hello@triumphhq.com\n\n## Term and Termination.\n\n**Term:** The Terms commence on the date when you accept them (as described in the preamble above) and remain in full force and effect while you use the Company Properties, unless terminated earlier in accordance with the Terms.\n\n**Prior Use:** Notwithstanding the foregoing, if you used the Company Properties prior to the date you accepted the Terms, you hereby acknowledge and agree that the Terms commenced on the date you first used the Company Properties (whichever is earlier) and will remain in full force and effect while you use the Company Properties, unless earlier terminated in accordance with the Terms.\n\n**Termination of Services by Company:** If you do not have a subscription for the Company Properties, we may suspend, modify or terminate any of the Services or Company Properties at any time. If you become a paid user, you will have thirty (30) days from the Service Commencement Date, or any Renewal Commencement Date, for any Services hereunder, to cancel such Service, in which case the Company will refund your Service Subscription Fee, if already paid pursuant to Section 9.2 or 9.3, for the applicable Service. Except as set forth above, the Service Subscription Fee for any Service shall be non-refundable. If timely payment cannot be charged to your Payment Provider for any reason, if you have materially breached any provision of the Terms, or if the Company is required to do so by law (e.g., where the provision of the Website, the Application, the Software or the Services is, or becomes, unlawful), the Company has the right to suspend or terminate any Services provided to you. You agree that all terminations for cause shall be made in the Company’s sole discretion and that the Company shall not be liable to you or any third party for any termination of your Account.\n\n**Termination of Services by You:** If you want to terminate the Services provided by the Company, you may do so by (a) notifying the Company at any time and (b) closing your Account for all of the Services that you use. Your notice should be sent, in writing, to hello@triumphhq.com.\n\n**Effect of Termination:** Termination of any Service includes removal of access to such Service and barring of further use of the Service. Termination of all Services may also include deletion of your password and all related information, files and Content associated with or inside your Account (or any part thereof), including Your Content. Upon termination of any Service, your right to use such Service will automatically terminate immediately. You understand that any termination of Services may involve deletion of Your Content associated therewith from our live databases. The Company will not have any liability whatsoever to you for any suspension or termination, including for deletion of Your Content. All provisions of the Terms which by their nature should survive, shall survive termination of Services, including without limitation, ownership provisions, warranty disclaimers, and limitation of liability.\n\n## Remedies\n\n**Violations:** If the Company becomes aware of any possible violations by you of the Terms, the Company reserves the right to investigate such violations. If, as a result of the investigation, the Company believes that criminal activity has occurred, the Company reserves the right to refer the matter to, and to cooperate with, any and all applicable legal authorities. The Company is entitled, except to the extent prohibited by applicable law, to disclose any information or materials on or in the Company Properties, including Your Content, in the Company’s possession in connection with your use of the Company Properties, to (1) comply with applicable laws, legal process or governmental request; (2) enforce the Terms, (3) respond to any claims that Your Content violates the rights of third parties, (4) respond to your requests for customer service, or (5) protect the rights, property or personal safety of the Company, its Users or the public, and all enforcement or other government officials, as the Company in its sole discretion believes to be necessary or appropriate.\n\n**Breach.** In the event that the Company determines, in its sole discretion, that you have breached any portion of the Terms, or have otherwise demonstrated conduct inappropriate for the Company Properties, the Company reserves the right to:\n\n– Warn you via e-mail (to any e-mail address you have provided to the Company) that you have violated the Terms;\n\n– Delete any of Your Content provided by you or your agent(s) to the Company Properties;\n\n– Discontinue your registration(s) with the any of the Company Properties, including any Services or any Company community;\n\n– Discontinue your subscription to any Services;\n\n– Notify and/or send Content to and/or fully cooperate with the proper law enforcement authorities for further action; and/or\n\n– Pursue any other action which the Company deems to be appropriate.\n\n**No Subsequent Registration:** If your registration(s) with or ability to access the Company Properties, or any other Company community is discontinued by the Company due to your violation of any portion of the Terms or for conduct otherwise inappropriate for the community, then you agree that you shall not attempt to re-register with or access the Company Properties or any Company community through use of a different member name or otherwise, and you acknowledge that you will not be entitled to receive a refund for fees related to those Company Properties to which your access has been terminated. In the event that you violate the immediately preceding sentence, the Company reserves the right, in its sole discretion, to immediately take any or all of the actions set forth herein without any notice or warning to you.\n\n**International Users:** The Company Properties can be accessed from countries around the world and may contain references to Services and Content that are not available in your country. These references do not imply that the Company intends to announce such Services or Content in your country. The Company Properties are controlled and offered by the Company from its facilities in the United States of America. The Company makes no representations that the Company Properties are appropriate or available for use in other locations. Those who access or use the Company Properties from other jurisdictions do so at their own volition and are responsible for compliance with local law.\n\n## General Provisions\n\n**Electronic Communications:** The communications between you and the Company use electronic means, whether you visit the Company Properties or send the Company e-mails, or whether the Company posts notices on the Company Properties or communicates with you via e-mail. For contractual purposes, you (1) consent to receive communications from the Company in an electronic form; and (2) agree that all terms and conditions, agreements, notices, disclosures, and other communications that the Company provides to you electronically satisfy any legal requirement that such communications would satisfy if it were to be in writing. The foregoing does not affect your statutory rights.\n\n**Release:** You hereby release the Company Parties and their successors from claims, demands, any and all losses, damages, rights, and actions of any kind, including personal injuries, death, and property damage, that is either directly or indirectly related to or arises from your use of the Company Properties, including but not limited to, any interactions with or conduct of other Users or third-party websites of any kind arising in connection with or as a result of the Terms or your use of the Company Properties. If you are a California resident, you hereby waive California Civil Code Section 1542, which states, “A general release does not extend to claims which the creditor does not know or suspect to exist in his favor at the time of executing the release, which, if known by him must have materially affected his settlement with the debtor.”\n\n**Assignment:** The Terms, and your rights and obligations hereunder, may not be assigned, subcontracted, delegated or otherwise transferred by you without the Company’s prior written consent, and any attempted assignment, subcontract, delegation, or transfer in violation of the foregoing will be null and void.\n\n**Force Majeure.** The Company shall not be liable for any delay or failure to perform resulting from causes outside its reasonable control, including, but not limited to, acts of God, war, terrorism, riots, embargos, acts of civil or military authorities, fire, floods, accidents, strikes or shortages of transportation facilities, fuel, energy, labor or materials.\n\n**Compliance:** If you believe that the Company has not adhered to the Terms, please contact the Company by emailing us at hello@triumphhq.com. We will do our best to address your concerns. If you feel that your complaint has been addressed incompletely, we invite you to let us know for further investigation.\n\n**Limitations Period.** YOU AND THE COMPANY AGREE THAT ANY CAUSE OF ACTION ARISING OUT OF OR RELATED TO THE TERMS, THE COMPANY PROPERTIES OR THE CONTENT MUST COMMENCE WITHIN ONE (1) YEAR AFTER THE CAUSE OF ACTION ACCRUES. OTHERWISE, SUCH CAUSE OF ACTION IS PERMANENTLY BARRED.\n\n## Dispute Resolution\n\nAny claim or dispute (excluding claims for injunctive or other equitable relief as set forth below) in connection with the Terms where the total amount of the award sought is less than Five Thousand U.S. Dollars (US \\$5,000.00) may be resolved in a cost effective manner through binding non-appearance-based arbitration, at the option of the party seeking relief. Such arbitration shall be initiated through an established alternative dispute resolution provider (“ADR Provider”) that offers arbitration as set forth in this section and under the rules of such ADR Provider, except to the extent such rules are in conflict with the Terms. The party demanding arbitration will propose an ADR Provider and the other party shall not unreasonably withhold consent to use such ADR Provider. The ADR Provider and the parties must comply with the following rules: (1) the arbitration shall be conducted by telephone, online and/or be solely based on written submissions, the specific manner shall be chosen by the party initiating the arbitration; (2) all arbitration proceedings shall be held in English; (3) the arbitration shall not involve any personal appearance by the parties or witnesses unless otherwise mutually agreed to by the parties; and (4) any judgment on the award rendered by the arbitrator may be entered in any court of competent jurisdiction. Each party shall bear its own costs (including attorney fees) and disbursements arising out of the arbitration, and shall pay an equal share of the fees and costs of the ADR Provider. Notwithstanding the foregoing, the Company may seek injunctive or other equitable relief to protect its intellectual property rights in any court of competent jurisdiction. Please note that the laws of the jurisdiction where you are located may be different from California law, including the laws governing what can legally be sold, bought, exported, offered or imported. You shall always comply with all the international and domestic laws, ordinances, regulations and statutes that are applicable to your use of the Company Properties.\n\nAny other dispute (including whether the claims asserted are arbitrable) shall be referred to and finally determined by binding and confidential arbitration. Arbitration shall be subject to the Federal Arbitration Act and not any state arbitration law. The arbitration shall be conducted before one commercial arbitrator with substantial experience in resolving commercial contract disputes from the American Arbitration Association (“AAA”). As modified by the Terms, and unless otherwise agreed upon by the parties in writing, the arbitration will be governed by the AAA’s Commercial Arbitration Rules and, if the arbitrator deems them applicable, the Supplementary Procedures for Consumer Related Disputes (collectively “Rules and Procedures”).\n\nYou are thus GIVING UP YOUR RIGHT TO GO TO COURT to assert or defend your rights EXCEPT for matters that may be taken to small claims court. Your rights will be determined by a NEUTRAL ARBITRATOR and NOT a judge or jury. You are entitled to a FAIR HEARING, BUT the arbitration procedures are SIMPLER AND MORE LIMITED THAN RULES APPLICABLE IN COURT. Arbitrator decisions are as enforceable as any court order and are subject to VERY LIMITED REVIEW BY A COURT.\n\nYou and the Company must abide by the following rules: (i) ANY CLAIMS BROUGHT BY YOU OR THE COMPANY MUST BE BROUGHT IN THE PARTIES’ INDIVIDUAL CAPACITY, AND NOT AS A PLAINTIFF OR CLASS MEMBER IN ANY PURPORTED CLASS OR REPRESENTATIVE PROCEEDING; (ii) THE ARBITRATOR MAY NOT CONSOLIDATE MORE THAN ONE PERSON’S CLAIMS, MAY NOT OTHERWISE PRESIDE OVER ANY FORM OF A REPRESENTATIVE OR CLASS PROCEEDING, AND MAY NOT AWARD CLASS-WIDE RELIEF; (iii) in the event that you are able to demonstrate that the costs of arbitration will be prohibitive as compared to costs of litigation, the Company will pay as much of your filing and hearing fees in connection with the arbitration as the arbitrator deems necessary to prevent the arbitration from being cost-prohibitive as compared to the cost of litigation; (iv) the Company also reserves the right in its sole and exclusive discretion to assume responsibility for all of the costs of the arbitration; (v) the arbitrator shall honor claims of privilege and privacy recognized at law; (vi) the arbitration shall be confidential, and neither you nor we may disclose the existence, content or results of any arbitration, except as may be required by law or for the purposes of enforcement of the arbitration award; (vii) the arbitrator may award any individual relief or individual remedies that are permitted by applicable law; and (viii) each side pays its own attorneys’ fees and expenses unless there is a statutory provision that requires the prevailing party to be paid its fees and litigation expenses, and then in such instance, the fees and costs awarded shall be determined by applicable law.\n\nThe arbitral proceedings, and all pleadings and written evidence will be in the English language. Any written evidence originally in a language other than English will be submitted in English translation accompanied by the original or true copy thereof. The English language version will control. The arbitrator shall issue a written award and statement of decision describing the essential findings and conclusions on which the award is based, including the calculation of any damages awarded. The arbitrator will not have authority to award damages in excess of the amount, or other than the types, allowed by Section 12 of the Terms. Judgment on the award of the arbitrator may be entered by any court of competent jurisdiction. The arbitrator also shall be authorized to grant any temporary, preliminary or permanent equitable remedy or relief it deems just and equitable and within the scope of the Terms, including, without limitation, an injunction or order for specific performance. The arbitration award shall be final and binding upon the parties without appeal or review except as permitted by California law or United States federal law.\n\nNotwithstanding the foregoing, either you or the Company may bring an individual action in small claims court. Further, claims of defamation, violation of the Computer Fraud and Abuse Act, and infringement or misappropriation of the other party’s patent, copyright, trademark, or trade secret shall not be subject to this arbitration agreement. Such claims shall be exclusively brought in the state or federal courts located in Los Angeles County, California. Additionally, notwithstanding this agreement to arbitrate, either party may seek emergency equitable relief before the state or federal courts located in Los Angeles County, California, in order to maintain the status quo pending arbitration, and hereby agree to submit to the exclusive personal jurisdiction of the courts located within Los Angeles County, California for such purpose. A request for interim measures shall not be deemed a waiver of the right to arbitrate.\n\nWith the exception of (d)(i) and (ii) above (prohibiting arbitration on a class or collective basis), if any part of this arbitration provision is deemed to be invalid, unenforceable, or illegal, or otherwise conflicts with the Rules and Procedures, then the balance of this arbitration provision shall remain in effect and shall be construed in accordance with its terms as if the invalid, unenforceable, illegal or conflicting provision were not contained herein. If, however, either (d)(i) or (ii) is found to be invalid, unenforceable or illegal, then the entirety of this arbitration provision shall be null and void, and neither you nor the Company shall be entitled to arbitration. If for any reason, a claim proceeds in court rather than in arbitration, the dispute shall be exclusively brought in state or federal court in Los Angeles County, California. By using the Company Properties in any manner, you agree to the above arbitration provision.\n\nFor more information on AAA, its Rules and Procedures, and how to file an arbitration claim, you may call AAA at 800-778-7879 or visit the AAA website at http://www.adr.org.\n\n**Governing Law:** The Terms and any action related thereto will be governed and interpreted by and under the laws of the State of California, USA, consistent with the Federal Arbitration Act, without giving effect to any principles that provide for the application of the law of another jurisdiction. The United Nations Convention on Contracts for the International Sale of Goods does not apply to these Terms.\n\n**Choice of Language:** It is the express wish of the parties that the Terms and all related documents have been drawn up in English. C’est law volone expresse des parties que la presente convention ainsi que les documents qui s’y rattacent soient rediges en anglais.\n\n**Notice:** Where the Company requires that you provide an e-mail address, you are responsible for providing the Company with your most current e-mail address. In the event that the last e-mail address you provided to the Company is not valid, or for any reason is not capable of delivering to you any notices required/ permitted by the Terms, the Company’s dispatch of the e-mail containing such notice will nonetheless constitute effective notice. You may give notice to the Company at the following address: RCCI Group, Inc., 7011 Semrad Rd, West Hills, CA 91307. Such notice shall be deemed given when received by the Company by letter delivered by nationally recognized overnight delivery service or first class postage prepaid mail at the above address.\n\n**Waiver.** Any waiver or failure to enforce any provision of the Terms on one occasion will not be deemed a waiver of any other provision or of such provision on any other occasion.\n\nSeverability: If any provision of the Terms is, for any reason, held to be invalid or unenforceable, the other provisions of the Terms will remain enforceable, and the invalid or unenforceable provision will be deemed modified so that it is valid and enforceable to the maximum extent permitted by law.\n\n**Export Control:** You may not use, export, import, or transfer the Company Properties except as authorized by U.S. law, the laws of the jurisdiction in which you obtained the Company Properties, and any other applicable laws. In particular, but without limitation, the Company Properties may not be exported or re-exported (a) into any United States embargoed countries, or (b) to anyone on the U.S. Treasury Department’s list of Specially Designated Nationals or the U.S. Department of Commerce’s Denied Person’s List or Entity List. By using the Company Properties, you represent and warrant that (i) you are not located in a country that is subject to a U.S. Government embargo, or that has been designated by the U.S. Government as a “terrorist supporting” country and (ii) you are not listed on any U.S. Government list of prohibited or restricted parties. You also will not use the Company Properties for any purpose prohibited by U.S. law, including the development, design, manufacture or production of missiles, nuclear, chemical or biological weapons. You acknowledge and agree that products, services or technology provided by Company are subject to the export control laws and regulations of the United States. You shall comply with these laws and regulations and shall not, without prior U.S. government authorization, export, re-export, or transfer the Company products, services or technology, either directly or indirectly, to any country in violation of such laws and regulations.\n\n**Accessing and Download the Application from iTunes:** The following applies to any Application accessed through or downloaded from the Apple App Store (“App Store Sourced Application”):\n\nYou acknowledge and agree that (i) the Terms are concluded between you and the Company only, and not Apple, and (ii) the Company, not Apple, is solely responsible for the App Store Sourced Application and content thereof. Your use of the App Store Sourced Application must comply with the App Store Terms of Service.\n\nYou acknowledge that Apple has no obligation whatsoever to furnish any maintenance and support services with respect to the App Store Sourced Application.\n\nIn the event of any failure of the App Store Sourced Application to conform to any applicable warranty, you may notify Apple, and Apple will refund the purchase price for the App Store Sourced Application to you and to the maximum extent permitted by applicable law, Apple will have no other warranty obligation whatsoever with respect to the App Store Sourced Application. As between the Company and Apple, any other claims, losses, liabilities, damages, costs or expenses attributable to any failure to conform to any warranty will be the sole responsibility of the Company.\n\nYou and the Company acknowledge that, as between the Company and Apple, Apple is not responsible for addressing any claims you have or any claims of any third party relating to the App Store Sourced Application or your possession and use of the App Store Sourced Application, including, but not limited to: (i) product liability claims; (ii) any claim that the App Store Sourced Application fails to conform to any applicable legal or regulatory requirement; and (iii) claims arising under consumer protection or similar legislation.\n\nYou and the Company acknowledge that, in the event of any third-party claim that the App Store Sourced Application or your possession and use of that App Store Sourced Application infringes that third party’s intellectual property rights, as between the Company and Apple, the Company, not Apple, will be solely responsible for the investigation, defense, settlement and discharge of any such intellectual property infringement claim to the extent required by the Terms.\n\nYou and the Company acknowledge and agree that Apple, and Apple’s subsidiaries, are third-party beneficiaries of the Terms as related to your license of the App Store Sourced Application, and that, upon your acceptance of the terms and conditions of the Terms, Apple will have the right (and will be deemed to have accepted the right) to enforce the Terms as related to your license of the App Store Sourced Application against you as a third-party beneficiary thereof.\n\nWithout limiting any other terms of the Terms, you must comply with all applicable third-party terms of agreement when using the App Store Sourced Application.\n\n**Entire Agreement:** The Terms are the final, complete and exclusive agreement of the parties with respect to the subject matter hereof and supersedes and merges all prior discussions between the parties with respect to such subject matter.\n\n**International Provisions:** The following provisions shall apply only if you are located in the countries listed below.\n\n- United Kingdom. A third party who is not a party to the Terms has no right under the Contracts (Rights of Third Parties) Act 1999 to enforce any provision of the Terms, but this does not affect any right or remedy of such third party which exists or is available apart from that Act.\n- Germany. Notwithstanding anything to the contrary in Section 12, the Company is also not liable for acts of simple negligence (unless they cause injuries to or death of any person), except when they are caused by a breach of any substantial contractual obligations (vertragswesentliche Pflichten).\n\n## ACCEPTABLE USE POLICY\n\nWelcome to the Triumph Acceptable Use Policy, which describes the guidelines applicable to your use of the services provided by RCCI Group, Inc. for the Triumph series of mobile applications, website and related services (“Services”). You are responsible for ensuring that your use of the Services, including any content that you provide, upload, or otherwise make available to the Services (“Your Content”), complies with these guidelines.\n\nYou will not use, or permit or encourage others to use, the Services for any illegal, harmful, or offensive use or to transmit, store, display, distribute or otherwise make available User Content that is illegal, harmful, or offensive. Examples of prohibited use or content include:\n\n**Illegal Activities:** Any activities that violate applicable law, rule, or regulation, including advertising, transmitting, or making available gambling sites or services or distributing, uploading, downloading, enabling, or promoting child pornography.\n\n**Harmful or Fraudulent Activities:** Activities that may be harmful to others or our operations, business, or reputation, including offering fraudulent goods, services, schemes, or promotions (e.g., make-money-fast schemes, ponzi and pyramid schemes, phishing, or pharming), or engaging in other deceptive practices.\n\n**Infringing Content:** Content that may infringe, misappropriate, or violate the rights of any third party, such as, but not limited to, copyrights, trademarks, and rights of privacy or publicity.\n\n**Offensive Content:** Obscene, vulgar, or offensive content; defamatory content; content that harasses, threatens, or abuses other persons or groups; sexual content or nudity involving persons under the age of 18; and content depicting non-consensual sex acts.\n\n**Harmful Content:** Content or technology that may damage, interfere with, intercept, or expropriate any data, information, program, or systems, including viruses, malware, Trojan horses, worms, time bombs, corrupted files, or cancelbots.\n\n**Fraud or Impersonation:** Impersonate any person or entity, including, but not limited to, the Company personnel, or falsely state or otherwise misrepresent your affiliation with a person or entity.\n\n**Inappropriate Content:** Make available any content that you do not have a right to Make Available under any law or under contractual or fiduciary relationships (such as inside information, proprietary and confidential information learned or disclosed as part of employment relationships or under non-disclosure agreements);\n\nYou will not use the Services to violate the security or integrity of any network, computer or communications system, software application, or network or computing device (each, a “System”). Examples of prohibited use include:\n\n**Unauthorized Access:** Accessing or using any System without permission, including attempting to probe, scan, or test the vulnerability of a System or to breach any security, access control or authentication measures used by a System.\n\n**Interception:**\nMonitoring of data or traffic on a System without permission.\n\n**Falsification of Origin:** Forging TCP-IP packet headers, e-mail headers, or any part of a message describing its origin or route. This prohibition does not include the use of aliases or anonymous remailers.\n\nYou will not engage in activities of any kind that may interfere with or disrupt the functioning of any of the Services or the servers and networks used to provide any Services, including, but not limited to:\n\n**Unauthorized communication:** Making network connections to any users, hosts, or networks unless you have permission to communicate with them.\n\n**Monitoring or Crawling:** Monitoring or crawling of a System that impairs or disrupts the System being monitored or crawled.\n\n**Denial of Service (DoS):** Sending a target communications requests in a manner such that the target either cannot respond to legitimate traffic or responds so slowly that it becomes ineffective.\n\n**Intentional Interference:** Interfering with the proper functioning of any System, including any deliberate attempt to overload a system by mail bombing, news bombing, broadcast attacks, or flooding techniques.\n\n**Operation of Certain Network Services.** Operating network services like open proxies, open mail relays, or open recursive domain name servers.\n\n**Avoiding System Restrictions:** Using physical or electronic means to avoid any use limitations placed on any System, such as access and storage restrictions.\n\nYou will not use the Services for or any part thereof for any commercial purpose, including, but not limited to communicating or facilitating any commercial advertisement or solicitation. In addition, you may not market any goods or services for any business purposes, nor may you reproduce, duplicate, copy, sell, trade, resell or exploit for any commercial purpose any portion of the Services (including your Account), or access to or use of the Services;\n\nYou will not distribute, publish, send, or facilitate the sending of unsolicited commercial or mass e-mail or other messages, promotions, advertising, or solicitations (e.g., “spam”), including commercial advertising and informational announcements. You will not alter or obscure mail headers or assume a sender’s identity without the sender’s explicit permission. You will not collect replies to messages sent from another internet service provider if those messages violate this Acceptable Use Policy or the policies of that provider.\n\n\n\n\n"} +{"id": "ee0a113d-bdd5-48cf-ac9c-a7cadfbfb74b", "html": "\n\n\n\n\n\n\n\n\n\nHonda Civic 1.0 VTEC TURBO SR 5-Door Approved Used vehicle, by Campbell Honda Newry\n\n\n\n\n\n\n

    \n\n\n\t\t\t\t\t\n\t\t\t\n\t\t\n\t\t\n\t\n\t\t\t\t\t\t\t\t\t\t\t\t\t\n\n\n\t\t\n\t\ta\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\n\t\t\t\t\t\n\t\t\n\t\t\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n

    \n
    We've got cookies
    Our website uses cookies. If you use the site, that means you're happy for this to happen. Hope that's okay. Read our cookie policy
    FavouritesMy ComparisonSaved Searches
    \"Honda
     
    Campbell HondaShore RoadNewryBT34 3AA\n
    \n

    Honda Civic 1.0 VTEC TURBO SR 5-Door

    £16,295
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    Reg Number: OY67UBO
    1st reg date: 2017
    Exterior: Black Metallic
    Mileage: 11,500 miles
    Fuel Type: Petrol
    Transmission: Manual
    Consumption: 55 mpg
    CO2 Emission: 117 g/km
    Insurance: 15
    \n
    \n
    \n\"Honda\n
    \n
    \n
    Campbell Honda
    Shore Road
    Newry, , BT34 3AA

    \n
    \n
    \n

    Fitted as standard

    \n
    \n
      \n
        \n
      • Wheels and Tyres
      • 17In Alloy Wheels
      • Tyre Pressure Control
      • Instruments and Controls
      • Front/Rear Electric Windows
      • Satellite Navigation
      • Front/Rear Parking Aid
      • Audio/Gears Steering Wheel Mounted Controls
      • Rain Sensor
      • Speed Limiter
      • Safety
      • Electronic Brake Force Distribution
      • Anti-Lock Brakes
      • Driver, Passenger And Front Side Air Bags
      • Centre Rear Seat Belt
      • Security
      • Alarm
      • Remote Central Door Locking
      • Immobiliser
      • Exterior
      • Tinted Glass
      • Front Fog Lights
      • Electric/Heated Door Mirrors
      • LED Daytime Running Lights Exterior Lighting
      • Gear Knob Leather
      • Comfort and Convenience
      • Automatic Air Conditioning
      • Cruise Control
      • Front/Rear Armrest
      • Whiplash Protection System
      • Power-Assisted Steering
      • Heated Rear Screen
      • Map Interior Lights
      • Centre Console
      • Seating
      • Driver Seat Height Adjustment
      • Rear Seat - ISOFIX Anchorage Point
      • Driver Seat Lumbar Support
      • In Car Entertainment (ICE)
      • On-Board Monitor
      • Eight Speakers
      • Miscellaneous
      • Hill Holder
      • Safety System
      \n
    \n
    \n
    \n
    Performance
    Acceleration (0-60mph)
    10.9 secs
    Max torque
    200 nm
    Max torque imperial
    147.512 lb/ft
    Cubic Capacity
    988 cc
    Power
    127 PS
    Economy
    Litres/100 km Urban**
    6.40 l/100km
    Litres/100 km Extra Urban**
    4.40 l/100km
    Litres/100 km combined**
    5.10 l/100km
    Mpg urban**
    44.1 mpg
    Mpg extra urban**
    64.2 mpg
    Mpg combined**
    55.4 mpg
    Engine
    Tank capacity
    46 l
    Number of cylinders
    3
    Dimensions
    Kerb Weight
    1275 kg
    Vehicle Length
    4518 cm
    Vehicle Width
    2076 cm
    Vehicle Height
    1434 cm
    Vehicle Wheelbase
    2697 mm
    Environment
    Co2 Emissions**
    117.0 g/km
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    \"Honda
    Buying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.

    Complimentary 5-day drive-away insurance
    An optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.
    A range of financial solutions
    To help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.
    12 month Honda Approved Used Car Guarantee
    The guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.
    Rigorous checking and preparation
    Our Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.
    Assured vehicle history
    Your Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.
    Mileage certification
    Any vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.
    Preferential MOT Test
    Your Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.
    30-day exchange policy
    Your new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.

    Finance this car

    \"Honda

    Campbell Honda

    Call us:\nShore Road
    Newry, BT34 3AA
    Get directions
    \"Opening

    Car Sales Opening Hours

    Monday09:00 - 17:30
    Tuesday09:00 - 20:00
    Wednesday09:00 - 17:30
    Thursday09:00 - 20:00
    Friday09:00 - 17:30
    Saturday09:00 - 13:00
    \n
    \n\n
    \n

    Similar Vehicles

    /
    Please note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.
    Back to top
    \n\n", "groundtruth_content": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\nContact\n\nFavourite REMOVE FROM FAVOURITES\n\nCompare REMOVE FROM COMPARE\n\nCampbell Honda\n\n Shore Road\n\n Newry, , BT34 3AA\n\n## Fitted as standard\n\n- Wheels and Tyres\n- 17In Alloy Wheels\n- Tyre Pressure Control\n- Instruments and Controls\n- Front/Rear Electric Windows\n- Satellite Navigation\n- Front/Rear Parking Aid\n- Audio/Gears Steering Wheel Mounted Controls\n- Rain Sensor\n- Speed Limiter\n- Safety\n- Electronic Brake Force Distribution\n- Anti-Lock Brakes\n- Driver, Passenger And Front Side Air Bags\n- Centre Rear Seat Belt\n- Security\n- Alarm\n- Remote Central Door Locking\n- Immobiliser\n- Exterior\n- Tinted Glass\n- Front Fog Lights\n- Electric/Heated Door Mirrors\n- LED Daytime Running Lights Exterior Lighting\n- Gear Knob Leather\n- Comfort and Convenience\n- Automatic Air Conditioning\n- Cruise Control\n- Front/Rear Armrest\n- Whiplash Protection System\n- Power-Assisted Steering\n- Heated Rear Screen\n- Map Interior Lights\n- Centre Console\n- Seating\n- Driver Seat Height Adjustment\n- Rear Seat - ISOFIX Anchorage Point\n- Driver Seat Lumbar Support\n- In Car Entertainment (ICE)\n- On-Board Monitor\n- Eight Speakers\n- Miscellaneous\n- Hill Holder\n- Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km\n\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\n## Finance this car\n\n## Campbell Honda\n\nCall us: Shore Road\n\n Newry, BT34 3AA\n\n Get directions\n\n### Car Sales Opening Hours\n\n| Monday | 09:00 - 17:30 |\n|---|---|\n| Tuesday | 09:00 - 20:00 |\n| Wednesday | 09:00 - 17:30 |\n| Thursday | 09:00 - 20:00 |\n| Friday | 09:00 - 17:30 |\n| Saturday | 09:00 - 13:00 |\n", "groundtruth_content_list": [[{"type": "title", "raw_content": "

    Honda Civic 1.0 VTEC TURBO SR 5-Door

    ", "content": {"title_content": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "level": "1"}}, {"type": "paragraph", "raw_content": "
    £16,295
    ", "content": [{"c": "£16,295", "t": "text"}]}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "paragraph", "raw_content": "
    Reg Number: OY67UBO
    ", "content": [{"c": "Reg Number: OY67UBO", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    1st reg date: 2017
    ", "content": [{"c": "1st reg date: 2017", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Exterior: Black Metallic
    ", "content": [{"c": "Exterior: Black Metallic", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Mileage: 11,500 miles
    ", "content": [{"c": "Mileage: 11,500 miles", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Fuel Type: Petrol
    ", "content": [{"c": "Fuel Type: Petrol", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Transmission: Manual
    ", "content": [{"c": "Transmission: Manual", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Consumption: 55 mpg
    ", "content": [{"c": "Consumption: 55 mpg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    CO2 Emission: 117 g/km
    ", "content": [{"c": "CO2 Emission: 117 g/km", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Insurance: 15
    ", "content": [{"c": "Insurance: 15", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    ", "content": [{"c": "Contact", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    ", "content": [{"c": "Favourite REMOVE FROM FAVOURITES", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    ", "content": [{"c": "Compare REMOVE FROM COMPARE", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Campbell Honda
    Shore Road
    Newry, , BT34 3AA

    ", "content": [{"c": "Campbell Honda\n\n Shore Road\n\n Newry, , BT34 3AA\n\n", "t": "text"}]}, {"type": "title", "raw_content": "

    Fitted as standard

    ", "content": {"title_content": "Fitted as standard", "level": "2"}}, {"type": "list", "raw_content": "", "content": {"items": [{"c": "Wheels and Tyres"}, {"c": "17In Alloy Wheels"}, {"c": "Tyre Pressure Control"}, {"c": "Instruments and Controls"}, {"c": "Front/Rear Electric Windows"}, {"c": "Satellite Navigation"}, {"c": "Front/Rear Parking Aid"}, {"c": "Audio/Gears Steering Wheel Mounted Controls"}, {"c": "Rain Sensor"}, {"c": "Speed Limiter"}, {"c": "Safety"}, {"c": "Electronic Brake Force Distribution"}, {"c": "Anti-Lock Brakes"}, {"c": "Driver, Passenger And Front Side Air Bags"}, {"c": "Centre Rear Seat Belt"}, {"c": "Security"}, {"c": "Alarm"}, {"c": "Remote Central Door Locking"}, {"c": "Immobiliser"}, {"c": "Exterior"}, {"c": "Tinted Glass"}, {"c": "Front Fog Lights"}, {"c": "Electric/Heated Door Mirrors"}, {"c": "LED Daytime Running Lights Exterior Lighting"}, {"c": "Gear Knob Leather"}, {"c": "Comfort and Convenience"}, {"c": "Automatic Air Conditioning"}, {"c": "Cruise Control"}, {"c": "Front/Rear Armrest"}, {"c": "Whiplash Protection System"}, {"c": "Power-Assisted Steering"}, {"c": "Heated Rear Screen"}, {"c": "Map Interior Lights"}, {"c": "Centre Console"}, {"c": "Seating"}, {"c": "Driver Seat Height Adjustment"}, {"c": "Rear Seat - ISOFIX Anchorage Point"}, {"c": "Driver Seat Lumbar Support"}, {"c": "In Car Entertainment (ICE)"}, {"c": "On-Board Monitor"}, {"c": "Eight Speakers"}, {"c": "Miscellaneous"}, {"c": "Hill Holder"}, {"c": "Safety System"}], "list_attribute": "unordered", "list_nest_level": "2"}}, {"type": "paragraph", "raw_content": "
    Performance
    ", "content": [{"c": "Performance", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Acceleration (0-60mph)
    ", "content": [{"c": "Acceleration (0-60mph)", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    10.9 secs
    ", "content": [{"c": "10.9 secs", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Max torque
    ", "content": [{"c": "Max torque", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    200 nm
    ", "content": [{"c": "200 nm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Max torque imperial
    ", "content": [{"c": "Max torque imperial", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    147.512 lb/ft
    ", "content": [{"c": "147.512 lb/ft", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Cubic Capacity
    ", "content": [{"c": "Cubic Capacity", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    988 cc
    ", "content": [{"c": "988 cc", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Power
    ", "content": [{"c": "Power", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    127 PS
    ", "content": [{"c": "127 PS", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Economy
    ", "content": [{"c": "Economy", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Litres/100 km Urban**
    ", "content": [{"c": "Litres/100 km Urban**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    6.40 l/100km
    ", "content": [{"c": "6.40 l/100km", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Litres/100 km Extra Urban**
    ", "content": [{"c": "Litres/100 km Extra Urban**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    4.40 l/100km
    ", "content": [{"c": "4.40 l/100km", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Litres/100 km combined**
    ", "content": [{"c": "Litres/100 km combined**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    5.10 l/100km
    ", "content": [{"c": "5.10 l/100km", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Mpg urban**
    ", "content": [{"c": "Mpg urban**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    44.1 mpg
    ", "content": [{"c": "44.1 mpg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Mpg extra urban**
    ", "content": [{"c": "Mpg extra urban**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    64.2 mpg
    ", "content": [{"c": "64.2 mpg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Mpg combined**
    ", "content": [{"c": "Mpg combined**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    55.4 mpg
    ", "content": [{"c": "55.4 mpg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Engine
    ", "content": [{"c": "Engine", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Tank capacity
    ", "content": [{"c": "Tank capacity", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    46 l
    ", "content": [{"c": "46 l", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Number of cylinders
    ", "content": [{"c": "Number of cylinders", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    3
    ", "content": [{"c": "3", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Dimensions
    ", "content": [{"c": "Dimensions", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Kerb Weight
    ", "content": [{"c": "Kerb Weight", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    1275 kg
    ", "content": [{"c": "1275 kg", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Vehicle Length
    ", "content": [{"c": "Vehicle Length", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    4518 cm
    ", "content": [{"c": "4518 cm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Vehicle Width
    ", "content": [{"c": "Vehicle Width", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    2076 cm
    ", "content": [{"c": "2076 cm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Vehicle Height
    ", "content": [{"c": "Vehicle Height", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    1434 cm
    ", "content": [{"c": "1434 cm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Vehicle Wheelbase
    ", "content": [{"c": "Vehicle Wheelbase", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    2697 mm
    ", "content": [{"c": "2697 mm", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Environment
    ", "content": [{"c": "Environment", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Co2 Emissions**
    ", "content": [{"c": "Co2 Emissions**", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    117.0 g/km
    ", "content": [{"c": "117.0 g/km", "t": "text"}]}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_1.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_2.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_3.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_4.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_5.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_6.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_7.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_8.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "image", "raw_content": "
    \"Honda
    ", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/picserver1/userdata/46/500170/YheRBibsHrVCrF/xxl_kfz573821_kfz_573821_9.jpg", "data": null, "alt": "Honda Civic 1.0 VTEC TURBO SR 5-Door", "title": null, "caption": null}}, {"type": "paragraph", "raw_content": "
    Buying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.

    ", "content": [{"c": "Buying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\n\n\n", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Complimentary 5-day drive-away insurance
    ", "content": [{"c": "Complimentary 5-day drive-away insurance", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    An optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.
    ", "content": [{"c": "An optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    A range of financial solutions
    ", "content": [{"c": "A range of financial solutions", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    To help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.
    ", "content": [{"c": "To help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    12 month Honda Approved Used Car Guarantee
    ", "content": [{"c": "12 month Honda Approved Used Car Guarantee", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    The guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.
    ", "content": [{"c": "The guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Rigorous checking and preparation
    ", "content": [{"c": "Rigorous checking and preparation", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Our Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.
    ", "content": [{"c": "Our Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Assured vehicle history
    ", "content": [{"c": "Assured vehicle history", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Your Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.
    ", "content": [{"c": "Your Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Mileage certification
    ", "content": [{"c": "Mileage certification", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Any vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.
    ", "content": [{"c": "Any vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Preferential MOT Test
    ", "content": [{"c": "Preferential MOT Test", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Your Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.
    ", "content": [{"c": "Your Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    30-day exchange policy
    ", "content": [{"c": "30-day exchange policy", "t": "text"}]}, {"type": "paragraph", "raw_content": "
    Your new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.
    ", "content": [{"c": "Your new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.", "t": "text"}]}, {"type": "title", "raw_content": "

    Finance this car

    ", "content": {"title_content": "Finance this car", "level": "2"}}, {"type": "image", "raw_content": "\"Honda", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/userdata/500013/layout/honda-finance-logo.png", "data": null, "alt": "Honda Finance", "title": null, "caption": null}}, {"type": "title", "raw_content": "

    Campbell Honda

    ", "content": {"title_content": "Campbell Honda", "level": "2"}}, {"type": "paragraph", "raw_content": "
    Call us:Shore Road
    Newry, BT34 3AA
    Get directions
    ", "content": [{"c": "Call us: Shore Road\n\n Newry, BT34 3AA\n\n Get directions", "t": "text"}]}, {"type": "image", "raw_content": "\"Opening", "content": {"url": "http://campbellhonda-newry.usedcars.honda.co.uk/userdata/500013/layout/opening-status-closed.png", "data": null, "alt": "Opening Image", "title": null, "caption": null}}, {"type": "title", "raw_content": "

    Car Sales Opening Hours

    ", "content": {"title_content": "Car Sales Opening Hours", "level": "3"}}, {"type": "simple_table", "raw_content": "
    Monday09:00 - 17:30
    Tuesday09:00 - 20:00
    Wednesday09:00 - 17:30
    Thursday09:00 - 20:00
    Friday09:00 - 17:30
    Saturday09:00 - 13:00
    ", "content": {"html": "
    Monday09:00 - 17:30
    Tuesday09:00 - 20:00
    Wednesday09:00 - 17:30
    Thursday09:00 - 20:00
    Friday09:00 - 17:30
    Saturday09:00 - 13:00
    ", "is_complex": false, "table_nest_level": "1"}}]], "content_list": null, "content": null, "llm_webkit_md": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](98f447e22b7c937df0d22085062d8e10a77bdce81481250f1ac2ff03e1674d7b)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](60e5b1ed1492508b76f04eefd08ffa561e117c705fe831fb9e4128e0c59de25a)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](da6220a4975e63b4a63549a6dc86e957abb4a5326300748639d7794832a772c1)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](4d8bb59651fb67f4012b97dd10700f3016ae8e9c2cf814b88607f30e411a89f0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5aa17c902597afd905170c17e06795bf8b4211774ef4b52c5a97889e8d8b6326)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](7db3721d8d0bae00a1c85bcecb0e471933b05709af5d0a36c4cb123ce6228da0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](f207f790ca62b578065f5dad23f5b643456bf5b4bad5fb520ac7d25fb206e247)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](bb6d9f937339ab810cd073c81d82e2f585522465b1b456bb84ca8eb6bf6b7dbb)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5fa8c643b7b8063d3a4a079784f223565c65f318f6c3641ad38ae08ed8fb74cf)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](98f447e22b7c937df0d22085062d8e10a77bdce81481250f1ac2ff03e1674d7b)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](60e5b1ed1492508b76f04eefd08ffa561e117c705fe831fb9e4128e0c59de25a)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](da6220a4975e63b4a63549a6dc86e957abb4a5326300748639d7794832a772c1)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](4d8bb59651fb67f4012b97dd10700f3016ae8e9c2cf814b88607f30e411a89f0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5aa17c902597afd905170c17e06795bf8b4211774ef4b52c5a97889e8d8b6326)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](7db3721d8d0bae00a1c85bcecb0e471933b05709af5d0a36c4cb123ce6228da0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](f207f790ca62b578065f5dad23f5b643456bf5b4bad5fb520ac7d25fb206e247)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](bb6d9f937339ab810cd073c81d82e2f585522465b1b456bb84ca8eb6bf6b7dbb)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5fa8c643b7b8063d3a4a079784f223565c65f318f6c3641ad38ae08ed8fb74cf)\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\n## Fitted as standard\n\n- \n - Wheels and Tyres\n - 17In Alloy Wheels\n - Tyre Pressure Control\n - Instruments and Controls\n - Front/Rear Electric Windows\n - Satellite Navigation\n - Front/Rear Parking Aid\n - Audio/Gears Steering Wheel Mounted Controls\n - Rain Sensor\n - Speed Limiter\n - Safety\n - Electronic Brake Force Distribution\n - Anti-Lock Brakes\n - Driver, Passenger And Front Side Air Bags\n - Centre Rear Seat Belt\n - Security\n - Alarm\n - Remote Central Door Locking\n - Immobiliser\n - Exterior\n - Tinted Glass\n - Front Fog Lights\n - Electric/Heated Door Mirrors\n - LED Daytime Running Lights Exterior Lighting\n - Gear Knob Leather\n - Comfort and Convenience\n - Automatic Air Conditioning\n - Cruise Control\n - Front/Rear Armrest\n - Whiplash Protection System\n - Power-Assisted Steering\n - Heated Rear Screen\n - Map Interior Lights\n - Centre Console\n - Seating\n - Driver Seat Height Adjustment\n - Rear Seat - ISOFIX Anchorage Point\n - Driver Seat Lumbar Support\n - In Car Entertainment (ICE)\n - On-Board Monitor\n - Eight Speakers\n - Miscellaneous\n - Hill Holder\n - Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](98f447e22b7c937df0d22085062d8e10a77bdce81481250f1ac2ff03e1674d7b)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](60e5b1ed1492508b76f04eefd08ffa561e117c705fe831fb9e4128e0c59de25a)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](da6220a4975e63b4a63549a6dc86e957abb4a5326300748639d7794832a772c1)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](4d8bb59651fb67f4012b97dd10700f3016ae8e9c2cf814b88607f30e411a89f0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5aa17c902597afd905170c17e06795bf8b4211774ef4b52c5a97889e8d8b6326)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](7db3721d8d0bae00a1c85bcecb0e471933b05709af5d0a36c4cb123ce6228da0)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](f207f790ca62b578065f5dad23f5b643456bf5b4bad5fb520ac7d25fb206e247)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](bb6d9f937339ab810cd073c81d82e2f585522465b1b456bb84ca8eb6bf6b7dbb)\n\n![Honda Civic 1.0 VTEC TURBO SR 5-Door](5fa8c643b7b8063d3a4a079784f223565c65f318f6c3641ad38ae08ed8fb74cf)\n", "llm_webkit_html": "\n\n
    \n
    \n
    \n

    Honda Civic 1.0 VTEC TURBO SR 5-Door

    \n
    £16,295
    \n
    \n
    \n
    \n
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \n
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \n
    \n
    \n
    \n
    \n
    \nReg Number: OY67UBO\n
    \n
    \n1st reg date: 2017\n
    \n
    \nExterior: Black Metallic\n
    \n
    \nMileage: 11,500 miles\n
    \n
    \nFuel Type: Petrol\n
    \n
    \nTransmission: Manual\n
    \n
    \nConsumption: 55 mpg\n
    \n
    \nCO2 Emission: 117 g/km\n
    \n
    \nInsurance: 15\n
    \n
    \n
    \n
    \n
    \n
    \n
    \n
    \n

    Fitted as standard

    \n
      \n
        \n
      • Wheels and Tyres
      • \n
      • 17In Alloy Wheels
      • \n
      • Tyre Pressure Control
      • \n
      • Instruments and Controls
      • \n
      • Front/Rear Electric Windows
      • \n
      • Satellite Navigation
      • \n
      • Front/Rear Parking Aid
      • \n
      • Audio/Gears Steering Wheel Mounted Controls
      • \n
      • Rain Sensor
      • \n
      • Speed Limiter
      • \n
      • Safety
      • \n
      • Electronic Brake Force Distribution
      • \n
      • Anti-Lock Brakes
      • \n
      • Driver, Passenger And Front Side Air Bags
      • \n
      • Centre Rear Seat Belt
      • \n
      • Security
      • \n
      • Alarm
      • \n
      • Remote Central Door Locking
      • \n
      • Immobiliser
      • \n
      • Exterior
      • \n
      • Tinted Glass
      • \n
      • Front Fog Lights
      • \n
      • Electric/Heated Door Mirrors
      • \n
      • LED Daytime Running Lights Exterior Lighting
      • \n
      • Gear Knob Leather
      • \n
      • Comfort and Convenience
      • \n
      • Automatic Air Conditioning
      • \n
      • Cruise Control
      • \n
      • Front/Rear Armrest
      • \n
      • Whiplash Protection System
      • \n
      • Power-Assisted Steering
      • \n
      • Heated Rear Screen
      • \n
      • Map Interior Lights
      • \n
      • Centre Console
      • \n
      • Seating
      • \n
      • Driver Seat Height Adjustment
      • \n
      • Rear Seat - ISOFIX Anchorage Point
      • \n
      • Driver Seat Lumbar Support
      • \n
      • In Car Entertainment (ICE)
      • \n
      • On-Board Monitor
      • \n
      • Eight Speakers
      • \n
      • Miscellaneous
      • \n
      • Hill Holder
      • \n
      • Safety System
      \n
    \n
    \n
    \n
    \n
    Performance
    \n
    \n
    Acceleration (0-60mph)
    \n
    10.9 secs
    \n
    \n
    \n
    Max torque
    \n
    200 nm
    \n
    \n
    \n
    Max torque imperial
    \n
    147.512 lb/ft
    \n
    \n
    \n
    Cubic Capacity
    \n
    988 cc
    \n
    \n
    \n
    Power
    \n
    127 PS
    \n
    \n
    \n
    \n
    Economy
    \n
    \n
    Litres/100 km Urban**
    \n
    6.40 l/100km
    \n
    \n
    \n
    Litres/100 km Extra Urban**
    \n
    4.40 l/100km
    \n
    \n
    \n
    Litres/100 km combined**
    \n
    5.10 l/100km
    \n
    \n
    \n
    Mpg urban**
    \n
    44.1 mpg
    \n
    \n
    \n
    Mpg extra urban**
    \n
    64.2 mpg
    \n
    \n
    \n
    Mpg combined**
    \n
    55.4 mpg
    \n
    \n
    \n
    \n
    Engine
    \n
    \n
    Tank capacity
    \n
    46 l
    \n
    \n
    \n
    Number of cylinders
    \n
    3
    \n
    \n
    \n
    \n
    Dimensions
    \n
    \n
    Kerb Weight
    \n
    1275 kg
    \n
    \n
    \n
    Vehicle Length
    \n
    4518 cm
    \n
    \n
    \n
    Vehicle Width
    \n
    2076 cm
    \n
    \n
    \n
    Vehicle Height
    \n
    1434 cm
    \n
    \n
    \n
    Vehicle Wheelbase
    \n
    2697 mm
    \n
    \n
    \n
    \n
    Environment
    \n
    \n
    Co2 Emissions**
    \n
    117.0 g/km
    \n
    \n
    \n
    \n
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \"Honda
    \n
    \n
    \n
    \n
    \n", "main_html": null, "url": "http://campbellhonda-newry.usedcars.honda.co.uk/en/used-cars/approved-cars/honda/civic-10-vtec-turbo-sr-5-door/details-r1bsa77", "domain": null, "language": "en", "content_type": null, "difficulty": null, "tags": null, "extracted_results": null, "llm-webkit_content": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\n## Fitted as standard\n\n- \n - Wheels and Tyres\n - 17In Alloy Wheels\n - Tyre Pressure Control\n - Instruments and Controls\n - Front/Rear Electric Windows\n - Satellite Navigation\n - Front/Rear Parking Aid\n - Audio/Gears Steering Wheel Mounted Controls\n - Rain Sensor\n - Speed Limiter\n - Safety\n - Electronic Brake Force Distribution\n - Anti-Lock Brakes\n - Driver, Passenger And Front Side Air Bags\n - Centre Rear Seat Belt\n - Security\n - Alarm\n - Remote Central Door Locking\n - Immobiliser\n - Exterior\n - Tinted Glass\n - Front Fog Lights\n - Electric/Heated Door Mirrors\n - LED Daytime Running Lights Exterior Lighting\n - Gear Knob Leather\n - Comfort and Convenience\n - Automatic Air Conditioning\n - Cruise Control\n - Front/Rear Armrest\n - Whiplash Protection System\n - Power-Assisted Steering\n - Heated Rear Screen\n - Map Interior Lights\n - Centre Console\n - Seating\n - Driver Seat Height Adjustment\n - Rear Seat - ISOFIX Anchorage Point\n - Driver Seat Lumbar Support\n - In Car Entertainment (ICE)\n - On-Board Monitor\n - Eight Speakers\n - Miscellaneous\n - Hill Holder\n - Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km", "llm-webkit_content_list": [], "llm-webkit_success": true, "llm-webkit_time": 0.04138970375061035, "llm-webkit_text_edit_score": 0.30216197666437883, "llm-webkit_table_edit_score": 0.0, "llm-webkit_table_TEDS_score": 0.0, "llm-webkit_overall_score": 0.10072065888812627, "llm-webkit_predicted_code": "", "llm-webkit_predicted_formula": "", "llm-webkit_predicted_table": "", "llm-webkit_predicted_text": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\n## Fitted as standard\n\n- \n - Wheels and Tyres\n - 17In Alloy Wheels\n - Tyre Pressure Control\n - Instruments and Controls\n - Front/Rear Electric Windows\n - Satellite Navigation\n - Front/Rear Parking Aid\n - Audio/Gears Steering Wheel Mounted Controls\n - Rain Sensor\n - Speed Limiter\n - Safety\n - Electronic Brake Force Distribution\n - Anti-Lock Brakes\n - Driver, Passenger And Front Side Air Bags\n - Centre Rear Seat Belt\n - Security\n - Alarm\n - Remote Central Door Locking\n - Immobiliser\n - Exterior\n - Tinted Glass\n - Front Fog Lights\n - Electric/Heated Door Mirrors\n - LED Daytime Running Lights Exterior Lighting\n - Gear Knob Leather\n - Comfort and Convenience\n - Automatic Air Conditioning\n - Cruise Control\n - Front/Rear Armrest\n - Whiplash Protection System\n - Power-Assisted Steering\n - Heated Rear Screen\n - Map Interior Lights\n - Centre Console\n - Seating\n - Driver Seat Height Adjustment\n - Rear Seat - ISOFIX Anchorage Point\n - Driver Seat Lumbar Support\n - In Car Entertainment (ICE)\n - On-Board Monitor\n - Eight Speakers\n - Miscellaneous\n - Hill Holder\n - Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km", "magic-html_content": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\nReg Number: **OY67UBO**\n\n1st reg date: **2017**\n\nExterior: **Black Metallic**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nCampbell Honda \nShore Road \nNewry, , BT34 3AA \n\n\n## Fitted as standard\n\n * Wheels and Tyres\n * 17In Alloy Wheels\n * Tyre Pressure Control\n * Instruments and Controls\n * Front/Rear Electric Windows\n * Satellite Navigation\n * Front/Rear Parking Aid\n * Audio/Gears Steering Wheel Mounted Controls\n * Rain Sensor\n * Speed Limiter\n * Safety\n * Electronic Brake Force Distribution\n * Anti-Lock Brakes\n * Driver, Passenger And Front Side Air Bags\n * Centre Rear Seat Belt\n * Security\n * Alarm\n * Remote Central Door Locking\n * Immobiliser\n * Exterior\n * Tinted Glass\n * Front Fog Lights\n * Electric/Heated Door Mirrors\n * LED Daytime Running Lights Exterior Lighting\n * Gear Knob Leather\n * Comfort and Convenience\n * Automatic Air Conditioning\n * Cruise Control\n * Front/Rear Armrest\n * Whiplash Protection System\n * Power-Assisted Steering\n * Heated Rear Screen\n * Map Interior Lights\n * Centre Console\n * Seating\n * Driver Seat Height Adjustment\n * Rear Seat - ISOFIX Anchorage Point\n * Driver Seat Lumbar Support\n * In Car Entertainment (ICE)\n * On-Board Monitor\n * Eight Speakers\n * Miscellaneous\n * Hill Holder\n * Safety System\n\n\n\n**Performance**\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque imperial\n\n147.512 lb/ft\n\n**Economy**\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg extra urban**\n\n64.2 mpg\n\n**Environment**\n\nCo2 Emissions**\n\n117.0 g/km\n\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee. Honda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience. At any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere. \n \n\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work. Your car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.* *Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\n## Finance this car\n\n### Car Sales Opening Hours\n\nMonday| 09:00 - 17:30 \n---|--- \nTuesday| 09:00 - 20:00 \nWednesday| 09:00 - 17:30 \nThursday| 09:00 - 20:00 \nFriday| 09:00 - 17:30 \nSaturday| 09:00 - 13:00 \n \nPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\n", "magic-html_content_list": [], "magic-html_success": true, "magic-html_time": 0.06598615646362305, "magic-html_text_edit_score": 0.8226575809199319, "magic-html_table_edit_score": 1.0, "magic-html_table_TEDS_score": 1.0, "magic-html_overall_score": 0.940885860306644, "magic-html_predicted_code": "", "magic-html_predicted_formula": "", "magic-html_predicted_table": "Monday| 09:00 - 17:30 \n---|--- \nTuesday| 09:00 - 20:00 \nWednesday| 09:00 - 17:30 \nThursday| 09:00 - 20:00 \nFriday| 09:00 - 17:30 \nSaturday| 09:00 - 13:00 ", "magic-html_predicted_text": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\nReg Number: **OY67UBO**\n\n1st reg date: **2017**\n\nExterior: **Black Metallic**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nCampbell Honda \nShore Road \nNewry, , BT34 3AA \n\n\n## Fitted as standard\n\n * Wheels and Tyres\n * 17In Alloy Wheels\n * Tyre Pressure Control\n * Instruments and Controls\n * Front/Rear Electric Windows\n * Satellite Navigation\n * Front/Rear Parking Aid\n * Audio/Gears Steering Wheel Mounted Controls\n * Rain Sensor\n * Speed Limiter\n * Safety\n * Electronic Brake Force Distribution\n * Anti-Lock Brakes\n * Driver, Passenger And Front Side Air Bags\n * Centre Rear Seat Belt\n * Security\n * Alarm\n * Remote Central Door Locking\n * Immobiliser\n * Exterior\n * Tinted Glass\n * Front Fog Lights\n * Electric/Heated Door Mirrors\n * LED Daytime Running Lights Exterior Lighting\n * Gear Knob Leather\n * Comfort and Convenience\n * Automatic Air Conditioning\n * Cruise Control\n * Front/Rear Armrest\n * Whiplash Protection System\n * Power-Assisted Steering\n * Heated Rear Screen\n * Map Interior Lights\n * Centre Console\n * Seating\n * Driver Seat Height Adjustment\n * Rear Seat - ISOFIX Anchorage Point\n * Driver Seat Lumbar Support\n * In Car Entertainment (ICE)\n * On-Board Monitor\n * Eight Speakers\n * Miscellaneous\n * Hill Holder\n * Safety System\n\n\n\n**Performance**\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque imperial\n\n147.512 lb/ft\n\n**Economy**\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg extra urban**\n\n64.2 mpg\n\n**Environment**\n\nCo2 Emissions**\n\n117.0 g/km\n\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee. Honda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience. At any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere. \n \n\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work. Your car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.* *Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\n## Finance this car\n\n### Car Sales Opening Hours\n\nMonday| 09:00 - 17:30 \n---|--- \nTuesday| 09:00 - 20:00 \nWednesday| 09:00 - 17:30 \nThursday| 09:00 - 20:00 \nFriday| 09:00 - 17:30 \nSaturday| 09:00 - 13:00 \n \nPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\n", "trafilatura_content": "Reg Number:\n\n**CSZ5535**1st reg date:\n\n**2017**Exterior:\n\n**Blue**Mileage:\n\n**5,000 miles**Fuel Type:\n\n**Petrol**Transmission:\n\n**Automatic**Consumption:\n\n**57 mpg**CO2 Emission:\n\n**114 g/km**Insurance:\n\nMar 2017Blue5,000 milesCSZ5535PetrolAutomatic**15**Reg Number: **OY67UBO**\n\n1st reg date: ** 2017**\n\nExterior: **Black Metallic**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\n|\nCampbell Honda\nShore Road\nNewry, , BT34 3AA\n\nWheels and Tyres\n-\n17In Alloy Wheels\n-\nTyre Pressure Control\n-\nInstruments and Controls\n-\nFront/Rear Electric Windows\n-\nSatellite Navigation\n-\nFront/Rear Parking Aid\n-\nAudio/Gears Steering Wheel Mounted Controls\n-\nRain Sensor\n-\nSpeed Limiter\n-\nSafety\n-\nElectronic Brake Force Distribution\n-\nAnti-Lock Brakes\n-\nDriver, Passenger And Front Side Air Bags\n-\nCentre Rear Seat Belt\n-\nSecurity\n-\nAlarm\n-\nRemote Central Door Locking\n-\nImmobiliser\n-\nExterior\n-\nTinted Glass\n-\nFront Fog Lights\n-\nElectric/Heated Door Mirrors\n-\nLED Daytime Running Lights Exterior Lighting\n-\nGear Knob Leather\n-\nComfort and Convenience\n-\nAutomatic Air Conditioning\n-\nCruise Control\n-\nFront/Rear Armrest\n-\nWhiplash Protection System\n-\nPower-Assisted Steering\n-\nHeated Rear Screen\n-\nMap Interior Lights\n-\nCentre Console\n-\nSeating\n-\nDriver Seat Height Adjustment\n-\nRear Seat - ISOFIX Anchorage Point\n-\nDriver Seat Lumbar Support\n-\nIn Car Entertainment (ICE)\n-\nOn-Board Monitor\n-\nEight Speakers\n-\nMiscellaneous\n-\nHill Holder\n-\nSafety System\n-\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nCo2 Emissions**\n\n117.0 g/km\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\nGet directions\n\nMonday | 09:00 - 17:30 |\nTuesday | 09:00 - 20:00 |\nWednesday | 09:00 - 17:30 |\nThursday | 09:00 - 20:00 |\nFriday | 09:00 - 17:30 |\nSaturday | 09:00 - 13:00 |\nReg Number: **CSZ5535**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **5,000 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **57 mpg**\n\nCO2 Emission: **114 g/km**\n\nInsurance: **15**\n\nMar 2017Blue5,000 milesCSZ5535PetrolAutomaticReg Number: **BSZ7899**\n\n1st reg date: ** 2018**\n\nExterior: **White**\n\nMileage: **2,200 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nMar 2018White2,200 milesBSZ7899PetrolManualReg Number: **RF67HHY**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **12,800 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nJan 2018Blue12,800 milesRF67HHYPetrolManualReg Number: **OW17ZFR**\n\n1st reg date: ** 2017**\n\nExterior: **White**\n\nMileage: **12,400 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **57 mpg**\n\nCO2 Emission: **114 g/km**\n\nInsurance: **15**\n\nJul 2017White12,400 milesOW17ZFRPetrolAutomaticReg Number: **OY67UBO**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nSep 2017Black11,500 milesOY67UBOPetrolManualReg Number: **BSZ7461**\n\n1st reg date: ** 2018**\n\nExterior: **Silver**\n\nMileage: **3,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **168 g/km**\n\nInsurance: **22**\n\nFeb 2018Silver3,500 milesBSZ7461PetrolManualReg Number: **CSZ5474**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **10 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **71 mpg**\n\nCO2 Emission: **104 g/km**\n\nInsurance: **20**\n\nSep 2018Blue10 milesCSZ5474DieselManualReg Number: **OY18XNS**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **11,850 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nMar 2018Blue11,850 milesOY18XNSDieselManualReg Number: **LGZ2840**\n\n1st reg date: ** 2015**\n\nExterior: **Black**\n\nMileage: **19,635 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **37 mpg**\n\nCO2 Emission: **179 g/km**\n\nInsurance: **23**\n\nMar 2015Black19,635 milesLGZ2840PetrolAutomaticReg Number: **BSZ1531**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **3,191 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **170 g/km**\n\nInsurance: **33**\n\nAug 2017Black3,191 milesBSZ1531PetrolManualReg Number: **OY18OCE**\n\n1st reg date: ** 2018**\n\nExterior: **Red**\n\nMileage: **11,243 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **58 mpg**\n\nCO2 Emission: **129 g/km**\n\nInsurance: **27**\n\nMar 2018Red11,243 milesOY18OCEDieselManualReg Number: **OV18OAX**\n\n1st reg date: ** 2018**\n\nExterior: **Brown**\n\nMileage: **13,134 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nApr 2018Brown13,134 milesOV18OAXDieselManualReg Number: **OY18VDR**\n\n1st reg date: ** 2018**\n\nExterior: **Black**\n\nMileage: **12,160 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nMar 2018Black12,160 milesOY18VDRDieselManualReg Number: **OY67ZWX**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **13,274 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nSep 2017Blue13,274 milesOY67ZWXDieselManualReg Number: **LXZ9923**\n\n1st reg date: ** 2017**\n\nExterior: **Silver**\n\nMileage: **18,200 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Automatic**\n\nConsumption: **53 mpg**\n\nCO2 Emission: **139 g/km**\n\nInsurance: **27**\n\nJan 2017Silver18,200 milesLXZ9923DieselAutomaticReg Number: **OY67ZWV**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **9,548 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nSep 2017Black9,548 milesOY67ZWVDieselManualReg Number: **BSZ9747**\n\n1st reg date: ** 2018**\n\nExterior: **White**\n\nMileage: **1,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **170 g/km**\n\nInsurance: **33**\n\nMay 2018White1,500 milesBSZ9747PetrolManualReg Number: **RE67VXB**\n\n1st reg date: ** 2017**\n\nExterior: **Silver**\n\nMileage: **13,125 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **133 g/km**\n\nInsurance: **27**\n\nDec 2017Silver13,125 milesRE67VXBDieselManualReg Number: **OV67OFW**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **11,800 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nOct 2017Blue11,800 milesOV67OFWDieselManualReg Number: **BXZ4737**\n\n1st reg date: ** 2011**\n\nExterior: **Yellow**\n\nMileage: **93,000 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **44 mpg**\n\nCO2 Emission: **171 g/km**\n\nInsurance: **28**\n\nApr 2011Yellow93,000 milesBXZ4737DieselManualPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\n", "trafilatura_content_list": [], "trafilatura_success": true, "trafilatura_time": 0.09360408782958984, "trafilatura_text_edit_score": 0.3727152817034106, "trafilatura_table_edit_score": 0.0, "trafilatura_table_TEDS_score": 0.0, "trafilatura_overall_score": 0.1242384272344702, "trafilatura_predicted_code": "", "trafilatura_predicted_formula": "", "trafilatura_predicted_table": "", "trafilatura_predicted_text": "Reg Number:\n\n**CSZ5535**1st reg date:\n\n**2017**Exterior:\n\n**Blue**Mileage:\n\n**5,000 miles**Fuel Type:\n\n**Petrol**Transmission:\n\n**Automatic**Consumption:\n\n**57 mpg**CO2 Emission:\n\n**114 g/km**Insurance:\n\nMar 2017Blue5,000 milesCSZ5535PetrolAutomatic**15**Reg Number: **OY67UBO**\n\n1st reg date: ** 2017**\n\nExterior: **Black Metallic**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\n|\nCampbell Honda\nShore Road\nNewry, , BT34 3AA\n\nWheels and Tyres\n-\n17In Alloy Wheels\n-\nTyre Pressure Control\n-\nInstruments and Controls\n-\nFront/Rear Electric Windows\n-\nSatellite Navigation\n-\nFront/Rear Parking Aid\n-\nAudio/Gears Steering Wheel Mounted Controls\n-\nRain Sensor\n-\nSpeed Limiter\n-\nSafety\n-\nElectronic Brake Force Distribution\n-\nAnti-Lock Brakes\n-\nDriver, Passenger And Front Side Air Bags\n-\nCentre Rear Seat Belt\n-\nSecurity\n-\nAlarm\n-\nRemote Central Door Locking\n-\nImmobiliser\n-\nExterior\n-\nTinted Glass\n-\nFront Fog Lights\n-\nElectric/Heated Door Mirrors\n-\nLED Daytime Running Lights Exterior Lighting\n-\nGear Knob Leather\n-\nComfort and Convenience\n-\nAutomatic Air Conditioning\n-\nCruise Control\n-\nFront/Rear Armrest\n-\nWhiplash Protection System\n-\nPower-Assisted Steering\n-\nHeated Rear Screen\n-\nMap Interior Lights\n-\nCentre Console\n-\nSeating\n-\nDriver Seat Height Adjustment\n-\nRear Seat - ISOFIX Anchorage Point\n-\nDriver Seat Lumbar Support\n-\nIn Car Entertainment (ICE)\n-\nOn-Board Monitor\n-\nEight Speakers\n-\nMiscellaneous\n-\nHill Holder\n-\nSafety System\n-\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nCo2 Emissions**\n\n117.0 g/km\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\nGet directions\n\nMonday | 09:00 - 17:30 |\nTuesday | 09:00 - 20:00 |\nWednesday | 09:00 - 17:30 |\nThursday | 09:00 - 20:00 |\nFriday | 09:00 - 17:30 |\nSaturday | 09:00 - 13:00 |\nReg Number: **CSZ5535**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **5,000 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **57 mpg**\n\nCO2 Emission: **114 g/km**\n\nInsurance: **15**\n\nMar 2017Blue5,000 milesCSZ5535PetrolAutomaticReg Number: **BSZ7899**\n\n1st reg date: ** 2018**\n\nExterior: **White**\n\nMileage: **2,200 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nMar 2018White2,200 milesBSZ7899PetrolManualReg Number: **RF67HHY**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **12,800 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nJan 2018Blue12,800 milesRF67HHYPetrolManualReg Number: **OW17ZFR**\n\n1st reg date: ** 2017**\n\nExterior: **White**\n\nMileage: **12,400 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **57 mpg**\n\nCO2 Emission: **114 g/km**\n\nInsurance: **15**\n\nJul 2017White12,400 milesOW17ZFRPetrolAutomaticReg Number: **OY67UBO**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **11,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **117 g/km**\n\nInsurance: **15**\n\nSep 2017Black11,500 milesOY67UBOPetrolManualReg Number: **BSZ7461**\n\n1st reg date: ** 2018**\n\nExterior: **Silver**\n\nMileage: **3,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **168 g/km**\n\nInsurance: **22**\n\nFeb 2018Silver3,500 milesBSZ7461PetrolManualReg Number: **CSZ5474**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **10 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **71 mpg**\n\nCO2 Emission: **104 g/km**\n\nInsurance: **20**\n\nSep 2018Blue10 milesCSZ5474DieselManualReg Number: **OY18XNS**\n\n1st reg date: ** 2018**\n\nExterior: **Blue**\n\nMileage: **11,850 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nMar 2018Blue11,850 milesOY18XNSDieselManualReg Number: **LGZ2840**\n\n1st reg date: ** 2015**\n\nExterior: **Black**\n\nMileage: **19,635 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Automatic**\n\nConsumption: **37 mpg**\n\nCO2 Emission: **179 g/km**\n\nInsurance: **23**\n\nMar 2015Black19,635 milesLGZ2840PetrolAutomaticReg Number: **BSZ1531**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **3,191 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **170 g/km**\n\nInsurance: **33**\n\nAug 2017Black3,191 milesBSZ1531PetrolManualReg Number: **OY18OCE**\n\n1st reg date: ** 2018**\n\nExterior: **Red**\n\nMileage: **11,243 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **58 mpg**\n\nCO2 Emission: **129 g/km**\n\nInsurance: **27**\n\nMar 2018Red11,243 milesOY18OCEDieselManualReg Number: **OV18OAX**\n\n1st reg date: ** 2018**\n\nExterior: **Brown**\n\nMileage: **13,134 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nApr 2018Brown13,134 milesOV18OAXDieselManualReg Number: **OY18VDR**\n\n1st reg date: ** 2018**\n\nExterior: **Black**\n\nMileage: **12,160 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nMar 2018Black12,160 milesOY18VDRDieselManualReg Number: **OY67ZWX**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **13,274 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nSep 2017Blue13,274 milesOY67ZWXDieselManualReg Number: **LXZ9923**\n\n1st reg date: ** 2017**\n\nExterior: **Silver**\n\nMileage: **18,200 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Automatic**\n\nConsumption: **53 mpg**\n\nCO2 Emission: **139 g/km**\n\nInsurance: **27**\n\nJan 2017Silver18,200 milesLXZ9923DieselAutomaticReg Number: **OY67ZWV**\n\n1st reg date: ** 2017**\n\nExterior: **Black**\n\nMileage: **9,548 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **64 mpg**\n\nCO2 Emission: **115 g/km**\n\nInsurance: **23**\n\nSep 2017Black9,548 milesOY67ZWVDieselManualReg Number: **BSZ9747**\n\n1st reg date: ** 2018**\n\nExterior: **White**\n\nMileage: **1,500 miles**\n\nFuel Type: **Petrol**\n\nTransmission: **Manual**\n\nConsumption: **39 mpg**\n\nCO2 Emission: **170 g/km**\n\nInsurance: **33**\n\nMay 2018White1,500 milesBSZ9747PetrolManualReg Number: **RE67VXB**\n\n1st reg date: ** 2017**\n\nExterior: **Silver**\n\nMileage: **13,125 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **55 mpg**\n\nCO2 Emission: **133 g/km**\n\nInsurance: **27**\n\nDec 2017Silver13,125 milesRE67VXBDieselManualReg Number: **OV67OFW**\n\n1st reg date: ** 2017**\n\nExterior: **Blue**\n\nMileage: **11,800 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **69 mpg**\n\nCO2 Emission: **108 g/km**\n\nInsurance: **20**\n\nOct 2017Blue11,800 milesOV67OFWDieselManualReg Number: **BXZ4737**\n\n1st reg date: ** 2011**\n\nExterior: **Yellow**\n\nMileage: **93,000 miles**\n\nFuel Type: **Diesel**\n\nTransmission: **Manual**\n\nConsumption: **44 mpg**\n\nCO2 Emission: **171 g/km**\n\nInsurance: **28**\n\nApr 2011Yellow93,000 milesBXZ4737DieselManualPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\n", "resiliparse_content": "a\n\nWe've got cookies\nOur website uses cookies. If you use the site, that means you're happy for this to happen. Hope that's okay. Read our cookie policy\nLet's move on\nFavouritesMy ComparisonSaved Searches\nHonda Logo\n \nCampbell HondaShore RoadNewryBT34 3AA\nCampbell Honda\n028 417 38463\nBack\nPrevious vehicleNext vehicle\n\nHonda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nReg Number: OY67UBO\n1st reg date: 2017\nExterior: Black Metallic\nMileage: 11,500 miles\nFuel Type: Petrol\nTransmission: Manual\nConsumption: 55 mpg\nCO2 Emission: 117 g/km\nInsurance: 15\nHonda Quality Plus\nContact\nFavouriteREMOVE FROM FAVOURITES\nCompareREMOVE FROM COMPARE\nCampbell Honda\nShore Road\nNewry, , BT34 3AA\n\nGet directions\n\nEquipmentSpecificationLarger ImagesApproved Benefits\n\nFitted as standard\n\n • Wheels and Tyres\n • 17In Alloy Wheels\n • Tyre Pressure Control\n • Instruments and Controls\n • Front/Rear Electric Windows\n • Satellite Navigation\n • Front/Rear Parking Aid\n • Audio/Gears Steering Wheel Mounted Controls\n • Rain Sensor\n • Speed Limiter\n • Safety\n • Electronic Brake Force Distribution\n • Anti-Lock Brakes\n • Driver, Passenger And Front Side Air Bags\n • Centre Rear Seat Belt\n • Security\n • Alarm\n • Remote Central Door Locking\n • Immobiliser\n • Exterior\n • Tinted Glass\n • Front Fog Lights\n • Electric/Heated Door Mirrors\n • LED Daytime Running Lights Exterior Lighting\n • Gear Knob Leather\n • Comfort and Convenience\n • Automatic Air Conditioning\n • Cruise Control\n • Front/Rear Armrest\n • Whiplash Protection System\n • Power-Assisted Steering\n • Heated Rear Screen\n • Map Interior Lights\n • Centre Console\n • Seating\n • Driver Seat Height Adjustment\n • Rear Seat - ISOFIX Anchorage Point\n • Driver Seat Lumbar Support\n • In Car Entertainment (ICE)\n • On-Board Monitor\n • Eight Speakers\n • Miscellaneous\n • Hill Holder\n • Safety System\nPerformance\nAcceleration (0-60mph)\n10.9 secs\nMax torque\n200 nm\nMax torque imperial\n147.512 lb/ft\nCubic Capacity\n988 cc\nPower\n127 PS\nEconomy\nLitres/100 km Urban**\n6.40 l/100km\nLitres/100 km Extra Urban**\n4.40 l/100km\nLitres/100 km combined**\n5.10 l/100km\nMpg urban**\n44.1 mpg\nMpg extra urban**\n64.2 mpg\nMpg combined**\n55.4 mpg\nEngine\nTank capacity\n46 l\nNumber of cylinders\n3\nDimensions\nKerb Weight\n1275 kg\nVehicle Length\n4518 cm\nVehicle Width\n2076 cm\nVehicle Height\n1434 cm\nVehicle Wheelbase\n2697 mm\nEnvironment\nCo2 Emissions**\n117.0 g/km\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee. Honda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience. At any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\nComplimentary 5-day drive-away insurance\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\nA range of financial solutions\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n12 month Honda Approved Used Car Guarantee\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\nRigorous checking and preparation\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work. Your car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\nAssured vehicle history\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\nMileage certification\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\nPreferential MOT Test\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n30-day exchange policy\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.* *Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\nFinance this car\n\nHonda Finance\n\nCampbell Honda\n\nCall us: Shore Road\nNewry, BT34 3AA\nGet directions\nOpening Image\n\nCar Sales Opening Hours\n\nMonday09:00 - 17:30\nTuesday09:00 - 20:00\nWednesday09:00 - 17:30\nThursday09:00 - 20:00\nFriday09:00 - 17:30\nSaturday09:00 - 13:00\n\nCustomer reviews by logo reevoo\n\nAppointment for test-driveMake an enquiry\n\nSimilar Vehicles\n\n/\nPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\nBack to top", "resiliparse_content_list": [], "resiliparse_success": true, "resiliparse_time": 0.002187013626098633, "resiliparse_text_edit_score": 0.7493870879869245, "resiliparse_table_edit_score": 0.0, "resiliparse_table_TEDS_score": 0.0, "resiliparse_overall_score": 0.24979569599564153, "resiliparse_predicted_code": "", "resiliparse_predicted_formula": "", "resiliparse_predicted_table": "", "resiliparse_predicted_text": "a\n\nWe've got cookies\nOur website uses cookies. If you use the site, that means you're happy for this to happen. Hope that's okay. Read our cookie policy\nLet's move on\nFavouritesMy ComparisonSaved Searches\nHonda Logo\n \nCampbell HondaShore RoadNewryBT34 3AA\nCampbell Honda\n028 417 38463\nBack\nPrevious vehicleNext vehicle\n\nHonda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nHonda Civic 1.0 VTEC TURBO SR 5-Door\nReg Number: OY67UBO\n1st reg date: 2017\nExterior: Black Metallic\nMileage: 11,500 miles\nFuel Type: Petrol\nTransmission: Manual\nConsumption: 55 mpg\nCO2 Emission: 117 g/km\nInsurance: 15\nHonda Quality Plus\nContact\nFavouriteREMOVE FROM FAVOURITES\nCompareREMOVE FROM COMPARE\nCampbell Honda\nShore Road\nNewry, , BT34 3AA\n\nGet directions\n\nEquipmentSpecificationLarger ImagesApproved Benefits\n\nFitted as standard\n\n • Wheels and Tyres\n • 17In Alloy Wheels\n • Tyre Pressure Control\n • Instruments and Controls\n • Front/Rear Electric Windows\n • Satellite Navigation\n • Front/Rear Parking Aid\n • Audio/Gears Steering Wheel Mounted Controls\n • Rain Sensor\n • Speed Limiter\n • Safety\n • Electronic Brake Force Distribution\n • Anti-Lock Brakes\n • Driver, Passenger And Front Side Air Bags\n • Centre Rear Seat Belt\n • Security\n • Alarm\n • Remote Central Door Locking\n • Immobiliser\n • Exterior\n • Tinted Glass\n • Front Fog Lights\n • Electric/Heated Door Mirrors\n • LED Daytime Running Lights Exterior Lighting\n • Gear Knob Leather\n • Comfort and Convenience\n • Automatic Air Conditioning\n • Cruise Control\n • Front/Rear Armrest\n • Whiplash Protection System\n • Power-Assisted Steering\n • Heated Rear Screen\n • Map Interior Lights\n • Centre Console\n • Seating\n • Driver Seat Height Adjustment\n • Rear Seat - ISOFIX Anchorage Point\n • Driver Seat Lumbar Support\n • In Car Entertainment (ICE)\n • On-Board Monitor\n • Eight Speakers\n • Miscellaneous\n • Hill Holder\n • Safety System\nPerformance\nAcceleration (0-60mph)\n10.9 secs\nMax torque\n200 nm\nMax torque imperial\n147.512 lb/ft\nCubic Capacity\n988 cc\nPower\n127 PS\nEconomy\nLitres/100 km Urban**\n6.40 l/100km\nLitres/100 km Extra Urban**\n4.40 l/100km\nLitres/100 km combined**\n5.10 l/100km\nMpg urban**\n44.1 mpg\nMpg extra urban**\n64.2 mpg\nMpg combined**\n55.4 mpg\nEngine\nTank capacity\n46 l\nNumber of cylinders\n3\nDimensions\nKerb Weight\n1275 kg\nVehicle Length\n4518 cm\nVehicle Width\n2076 cm\nVehicle Height\n1434 cm\nVehicle Wheelbase\n2697 mm\nEnvironment\nCo2 Emissions**\n117.0 g/km\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee. Honda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience. At any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\nComplimentary 5-day drive-away insurance\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\nA range of financial solutions\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n12 month Honda Approved Used Car Guarantee\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\nRigorous checking and preparation\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work. Your car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\nAssured vehicle history\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\nMileage certification\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\nPreferential MOT Test\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n30-day exchange policy\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.* *Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\nFinance this car\n\nHonda Finance\n\nCampbell Honda\n\nCall us: Shore Road\nNewry, BT34 3AA\nGet directions\nOpening Image\n\nCar Sales Opening Hours\n\nMonday09:00 - 17:30\nTuesday09:00 - 20:00\nWednesday09:00 - 17:30\nThursday09:00 - 20:00\nFriday09:00 - 17:30\nSaturday09:00 - 13:00\n\nCustomer reviews by logo reevoo\n\nAppointment for test-driveMake an enquiry\n\nSimilar Vehicles\n\n/\nPlease note some vehicles advertised on this website may have been used for business purposes (e.g. previous manufacturers vehicle, previous fleet vehicle) and/or had multiple users. Please ensure you ask the selling Dealer about your chosen vehicle(s) when making your enquiry.\nBack to top", "groundtruth_groundtruth_code": "", "groundtruth_groundtruth_formula": "", "groundtruth_groundtruth_table": "| Monday | 09:00 - 17:30 |\n|---|---|\n| Tuesday | 09:00 - 20:00 |\n| Wednesday | 09:00 - 17:30 |\n| Thursday | 09:00 - 20:00 |\n| Friday | 09:00 - 17:30 |\n| Saturday | 09:00 - 13:00 |", "groundtruth_groundtruth_text": "# Honda Civic 1.0 VTEC TURBO SR 5-Door\n\n£16,295\n\nReg Number: OY67UBO\n\n1st reg date: 2017\n\nExterior: Black Metallic\n\nMileage: 11,500 miles\n\nFuel Type: Petrol\n\nTransmission: Manual\n\nConsumption: 55 mpg\n\nCO2 Emission: 117 g/km\n\nInsurance: 15\n\nContact\n\nFavourite REMOVE FROM FAVOURITES\n\nCompare REMOVE FROM COMPARE\n\nCampbell Honda\n\n Shore Road\n\n Newry, , BT34 3AA\n\n## Fitted as standard\n\n- Wheels and Tyres\n- 17In Alloy Wheels\n- Tyre Pressure Control\n- Instruments and Controls\n- Front/Rear Electric Windows\n- Satellite Navigation\n- Front/Rear Parking Aid\n- Audio/Gears Steering Wheel Mounted Controls\n- Rain Sensor\n- Speed Limiter\n- Safety\n- Electronic Brake Force Distribution\n- Anti-Lock Brakes\n- Driver, Passenger And Front Side Air Bags\n- Centre Rear Seat Belt\n- Security\n- Alarm\n- Remote Central Door Locking\n- Immobiliser\n- Exterior\n- Tinted Glass\n- Front Fog Lights\n- Electric/Heated Door Mirrors\n- LED Daytime Running Lights Exterior Lighting\n- Gear Knob Leather\n- Comfort and Convenience\n- Automatic Air Conditioning\n- Cruise Control\n- Front/Rear Armrest\n- Whiplash Protection System\n- Power-Assisted Steering\n- Heated Rear Screen\n- Map Interior Lights\n- Centre Console\n- Seating\n- Driver Seat Height Adjustment\n- Rear Seat - ISOFIX Anchorage Point\n- Driver Seat Lumbar Support\n- In Car Entertainment (ICE)\n- On-Board Monitor\n- Eight Speakers\n- Miscellaneous\n- Hill Holder\n- Safety System\n\nPerformance\n\nAcceleration (0-60mph)\n\n10.9 secs\n\nMax torque\n\n200 nm\n\nMax torque imperial\n\n147.512 lb/ft\n\nCubic Capacity\n\n988 cc\n\nPower\n\n127 PS\n\nEconomy\n\nLitres/100 km Urban**\n\n6.40 l/100km\n\nLitres/100 km Extra Urban**\n\n4.40 l/100km\n\nLitres/100 km combined**\n\n5.10 l/100km\n\nMpg urban**\n\n44.1 mpg\n\nMpg extra urban**\n\n64.2 mpg\n\nMpg combined**\n\n55.4 mpg\n\nEngine\n\nTank capacity\n\n46 l\n\nNumber of cylinders\n\n3\n\nDimensions\n\nKerb Weight\n\n1275 kg\n\nVehicle Length\n\n4518 cm\n\nVehicle Width\n\n2076 cm\n\nVehicle Height\n\n1434 cm\n\nVehicle Wheelbase\n\n2697 mm\n\nEnvironment\n\nCo2 Emissions**\n\n117.0 g/km\n\nBuying you next new Honda is an exciting experience. You will be benefiting from our legendary reliability and be assured that your car is prepared to the highest standards by Honda trained technicians and supported by a full Honda guarantee.\n\nHonda cars offer exceptional long-term value, technical innovation, distinctive looks and character. You will also be able to choose from a range of bespoke service packages to keep your car as good as new. With around 200 dealers nationwide the network ensures outstanding customer service at your convenience.\n\nAt any one time there are up to 8,000 used cars to choose from on this website, providing you with the best choice of Approved Honda cars anywhere.\n\nComplimentary 5-day drive-away insurance\n\nAn optional service that starts the second you leave the dealership. This means you can enjoy driving your Honda immediately, safe in the knowledge that we’ve got everything covered.\n\nA range of financial solutions\n\nTo help you buy the car of your dreams, we can provide flexible finance options that are tailored to your personal requirements.\n\n12 month Honda Approved Used Car Guarantee\n\nThe guarantee, just like the new car warranty, is provided by Honda and includes Hondacare Assistance, our bespoke roadside assistance package, which provides cover in the UK and Europe. We’ll even come out to you should you have a puncture or a flat battery. You also have the option to extend your guarantee at the end of 12 months.\n\nRigorous checking and preparation\n\nOur Honda ‘Multipoint’ check, carried out by Honda trained technicians, ensures that your new car meets our high quality standards. Our multi-point includes lighting equipment and instruments, steering and suspension, brakes, and even body work.\n\nYour car will also undergo a detailed engine check and a thorough road test for your safety and satisfaction. Finally, your car goes through an in-depth valet and polish so that it’s fully prepared when you come to drive it away.\n\nAssured vehicle history\n\nYour Approved used Honda is comprehensively checked to confirm; previous ownership, any outstanding finance has been settled, has incurred no major accident damage, and any registration number change are noted. You will be provided with certification on delivery of your vehicle.\n\nMileage certification\n\nAny vehicle which has not been owned and used by Honda UK or our Dealer Network will have the mileage checked against previous history, including writing to previous owners to ensure that there are no mileage irregularities. You will be provided with certification on delivery of your vehicle.\n\nPreferential MOT Test\n\nYour Honda dealer will carry out or arrange the ANNUAL MOT TEST on your car at preferential terms in conjunction with your annual scheduled service. You will benefit from this reduced cost on the understanding that the MOT TEST is carried out by your supplying dealer.\n\n30-day exchange policy\n\nYour new Honda approved used car has been subject to rigorous Multi Point Pre Sales check to give you the assurance that you are purchasing an unrivalled quality car, however, we undertake that, should any mechanical or electrical defect occur within the first 30 days or 1000 miles of your ownership which cannot be rectified by an authorised Honda dealer, and providing that the car is in the same condition when purchased then your supplying dealer will exchange it for another of equivalent or greater value.*\n\n*Please refer to your nearest dealer for specific terms and conditions or refer to link on this site.\n\n## Finance this car\n\n## Campbell Honda\n\nCall us: Shore Road\n\n Newry, BT34 3AA\n\n Get directions\n\n### Car Sales Opening Hours\n\n| Monday | 09:00 - 17:30 |\n|---|---|\n| Tuesday | 09:00 - 20:00 |\n| Wednesday | 09:00 - 17:30 |\n| Thursday | 09:00 - 20:00 |\n| Friday | 09:00 - 17:30 |\n| Saturday | 09:00 - 13:00 |\n"} +{"id": "33e291cd-5b26-48b1-977f-3c63b45e6d13", "html": "\n\n\nLOGO\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
    top of page
    \"THE

    THE PALM INSTITUTE LOGO

    PREMIUM GRAPHIC DESIGN

    ORDER YOUR LOGO

    - Graphic, typographic and colorimetric research and proposal

    - Delivery of your files in High Resolution

     

    SATISFACTION GUARANTEED

    - The number of modifications is unlimited so that you are fully satisfied

      CHF1,290.00 Regular Price
      CHF903.00Sale Price
      bottom of page
      \n\n\n\n\n\n\n\n\n\n\n", "groundtruth_content": "## THE PALM INSTITUTE LOGO\n\n### PREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n\\- Graphic, typographic and colorimetric research and proposal\n\n \\- Delivery of your files in High Resolution\n ### SATISFACTION GUARANTEED\n \\- The number of modifications is unlimited so that you are fully satisfied\n", "groundtruth_content_list": [[{"type": "image", "raw_content": "\"THE", "content": {"url": "https://static.wixstatic.com/media/ea415c_4f8a0408b44d41d78a56f69071579e2d~mv2.jpg/v1/fill/w_980,h_601,al_c,q_85,usm_0.66_1.00_0.01,enc_auto/ea415c_4f8a0408b44d41d78a56f69071579e2d~mv2.jpg", "data": null, "alt": "THE PALM INSTITUTE LOGO", "title": null, "caption": null}}, {"type": "title", "raw_content": "

      THE PALM INSTITUTE LOGO

      ", "content": {"title_content": "THE PALM INSTITUTE LOGO", "level": "1"}}, {"type": "paragraph", "raw_content": "

      PREMIUM GRAPHIC DESIGN

      ORDER YOUR LOGO

      - Graphic, typographic and colorimetric research and proposal

      - Delivery of your files in High Resolution

      SATISFACTION GUARANTEED

      - The number of modifications is unlimited so that you are fully satisfied

      ", "content": [{"c": "PREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n- Graphic, typographic and colorimetric research and proposal\n - Delivery of your files in High Resolution\n SATISFACTION GUARANTEED\n - The number of modifications is unlimited so that you are fully satisfied", "t": "text"}]}]], "content_list": null, "content": null, "llm_webkit_md": "# THE PALM INSTITUTE LOGO\n\n```\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n - Delivery of your files in High Resolution\n\n SATISFACTION GUARANTEED\n\n - The number of modifications is unlimited so that you are fully satisfied\n```\n", "llm_webkit_html": "\n\n
      \n
      \n
      \n
      \n
      \n

      THE PALM INSTITUTE LOGO

      \n

      PREMIUM GRAPHIC DESIGN

      ORDER YOUR LOGO

      \n

      - Graphic, typographic and colorimetric research and proposal

      \n

      - Delivery of your files in High Resolution

      \n

      SATISFACTION GUARANTEED

      \n

      - The number of modifications is unlimited so that you are fully satisfied

      \n
      \n
      \n
      \n
      \n
      \n
      \n\n", "main_html": null, "url": "https://www.creativia.ch/en/product-page/logo-palm-institute", "domain": null, "language": "en", "content_type": null, "difficulty": null, "tags": null, "extracted_results": null, "llm-webkit_content": "# THE PALM INSTITUTE LOGO\n\n```\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n - Delivery of your files in High Resolution\n\n SATISFACTION GUARANTEED\n\n - The number of modifications is unlimited so that you are fully satisfied\n```", "llm-webkit_content_list": [], "llm-webkit_success": true, "llm-webkit_time": 0.005243778228759766, "llm-webkit_code_edit_score": 0.0, "llm-webkit_text_edit_score": 0.9446366782006921, "llm-webkit_overall_score": 0.47231833910034604, "llm-webkit_predicted_code": "PREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n - Delivery of your files in High Resolution\n\n SATISFACTION GUARANTEED\n\n - The number of modifications is unlimited so that you are fully satisfied", "llm-webkit_predicted_formula": "", "llm-webkit_predicted_table": "", "llm-webkit_predicted_text": "# THE PALM INSTITUTE LOGO\n\n```\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n - Delivery of your files in High Resolution\n\n SATISFACTION GUARANTEED\n\n - The number of modifications is unlimited so that you are fully satisfied\n```", "magic-html_content": "# THE PALM INSTITUTE LOGO\n \n \n **PREMIUM GRAPHIC DESIGN**\n \n ORDER YOUR LOGO\n \n - Graphic, typographic and colorimetric research and proposal\n \n - Delivery of your files in High Resolution\n \n \n \n **SATISFACTION GUARANTEED**\n \n - The number of modifications is unlimited so that you are fully satisfied\n\nCHF1,290.00 Regular Price\n\nCHF903.00Sale Price\n", "magic-html_content_list": [], "magic-html_success": true, "magic-html_time": 0.020375728607177734, "magic-html_text_edit_score": 0.6932668329177057, "magic-html_overall_score": 0.6932668329177057, "magic-html_predicted_code": "", "magic-html_predicted_formula": "", "magic-html_predicted_table": "", "magic-html_predicted_text": "# THE PALM INSTITUTE LOGO\n \n \n **PREMIUM GRAPHIC DESIGN**\n \n ORDER YOUR LOGO\n \n - Graphic, typographic and colorimetric research and proposal\n \n - Delivery of your files in High Resolution\n \n \n \n **SATISFACTION GUARANTEED**\n \n - The number of modifications is unlimited so that you are fully satisfied\n\nCHF1,290.00 Regular Price\n\nCHF903.00Sale Price\n", "trafilatura_content": "# THE PALM INSTITUTE LOGO\nPREMIUM GRAPHIC DESIGNORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n- Delivery of your files in High Resolution\n\n\n\nSATISFACTION GUARANTEED- The number of modifications is unlimited so that you are fully satisfied\n\nCHF1,290.00 Regular Price\n\nCHF903.00Sale Price\n", "trafilatura_content_list": [], "trafilatura_success": true, "trafilatura_time": 0.020328044891357422, "trafilatura_text_edit_score": 0.7912772585669782, "trafilatura_overall_score": 0.7912772585669782, "trafilatura_predicted_code": "", "trafilatura_predicted_formula": "", "trafilatura_predicted_table": "", "trafilatura_predicted_text": "# THE PALM INSTITUTE LOGO\nPREMIUM GRAPHIC DESIGNORDER YOUR LOGO\n\n- Graphic, typographic and colorimetric research and proposal\n\n- Delivery of your files in High Resolution\n\n\n\nSATISFACTION GUARANTEED- The number of modifications is unlimited so that you are fully satisfied\n\nCHF1,290.00 Regular Price\n\nCHF903.00Sale Price\n", "resiliparse_content": "top of page\nTHE PALM INSTITUTE LOGO\n\nTHE PALM INSTITUTE LOGO\n\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n- Graphic, typographic and colorimetric research and proposal\n - Delivery of your files in High Resolution\n  \n SATISFACTION GUARANTEED\n - The number of modifications is unlimited so that you are fully satisfied\n CHF1,290.00 Regular Price\n CHF903.00Sale Price\n bottom of page", "resiliparse_content_list": [], "resiliparse_success": true, "resiliparse_time": 0.0011968612670898438, "resiliparse_text_edit_score": 0.7012987012987013, "resiliparse_overall_score": 0.7012987012987013, "resiliparse_predicted_code": "", "resiliparse_predicted_formula": "", "resiliparse_predicted_table": "", "resiliparse_predicted_text": "top of page\nTHE PALM INSTITUTE LOGO\n\nTHE PALM INSTITUTE LOGO\n\nPREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n- Graphic, typographic and colorimetric research and proposal\n - Delivery of your files in High Resolution\n  \n SATISFACTION GUARANTEED\n - The number of modifications is unlimited so that you are fully satisfied\n CHF1,290.00 Regular Price\n CHF903.00Sale Price\n bottom of page", "groundtruth_groundtruth_code": "", "groundtruth_groundtruth_formula": "", "groundtruth_groundtruth_table": "", "groundtruth_groundtruth_text": "## THE PALM INSTITUTE LOGO\n\n### PREMIUM GRAPHIC DESIGN\n ORDER YOUR LOGO\n\n\\- Graphic, typographic and colorimetric research and proposal\n\n \\- Delivery of your files in High Resolution\n ### SATISFACTION GUARANTEED\n \\- The number of modifications is unlimited so that you are fully satisfied\n"} diff --git a/results/evaluation_results.json b/results/evaluation_results.json index f5f5a98..b2ccb01 100644 --- a/results/evaluation_results.json +++ b/results/evaluation_results.json @@ -3,7 +3,7 @@ "metadata": { "dataset_name": "sample_dataset", "extractor_name": "llm-webkit", - "timestamp": "2025-09-04T15:01:19.530463", + "timestamp": "2025-09-12T16:00:30.550898", "total_samples": 4 }, "overall_metrics": { @@ -18,18 +18,18 @@ { "sample_id": "7cdb7231-9337-4104-a562-9b8f285add7d", "extraction_success": true, - "extraction_time": 0.7293002605438232, + "extraction_time": 0.6670150756835938, "metrics": { "code_edit": { "score": 1.0, "success": true, "details": { "distance": 0, - "predicted_length": 854, - "groundtruth_length": 854, + "predicted_length": 767, + "groundtruth_length": 767, "normalized": true, - "predicted_code_length": 854, - "groundtruth_code_length": 854, + "predicted_code_length": 767, + "groundtruth_code_length": 767, "content_type": "code" } }, @@ -62,7 +62,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -101,7 +102,7 @@ { "sample_id": "3026972b-8a26-48c3-bc00-c181138702f2", "extraction_success": true, - "extraction_time": 0.06506109237670898, + "extraction_time": 0.08066821098327637, "metrics": { "code_edit": { "score": 0.0, @@ -142,7 +143,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -180,7 +182,7 @@ { "sample_id": "ee0a113d-bdd5-48cf-ac9c-a7cadfbfb74b", "extraction_success": true, - "extraction_time": 0.0364222526550293, + "extraction_time": 0.04138970375061035, "metrics": { "code_edit": { "score": 0.0, @@ -219,26 +221,23 @@ "score": 0.0, "success": true, "details": { - "distance": 179, + "distance": 299, "predicted_length": 0, - "groundtruth_length": 179, + "groundtruth_length": 299, "normalized": true, "predicted_table_length": 0, - "groundtruth_table_length": 179, - "content_type": "table" + "groundtruth_table_length": 299, + "content_type": "table", + "normalization": "teds_based" } }, "table_TEDS": { "score": 0.0, "success": true, "details": { - "edit_distance": 26.0, - "predicted_nodes": 3, - "groundtruth_nodes": 19, - "max_nodes": 19, - "structure_only": false, - "algorithm": "TEDS", - "content_type": "table" + "note": "One table is empty or invalid", + "content_type": "table", + "algorithm": "TEDS" } }, "overall": { @@ -268,7 +267,7 @@ { "sample_id": "33e291cd-5b26-48b1-977f-3c63b45e6d13", "extraction_success": true, - "extraction_time": 0.004807949066162109, + "extraction_time": 0.005243778228759766, "metrics": { "code_edit": { "score": 0.0, @@ -312,7 +311,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -376,33 +376,33 @@ "metadata": { "dataset_name": "sample_dataset", "extractor_name": "magic-html", - "timestamp": "2025-09-04T15:01:19.877934", + "timestamp": "2025-09-12T16:00:30.888988", "total_samples": 4 }, "overall_metrics": { - "text_edit": 0.769258630408185, - "code_edit": 0.10070257611241218, - "table_edit": 0.0, - "table_TEDS": 0.0, + "text_edit": 0.8417712212665027, + "code_edit": 0.9739243807040417, + "table_edit": 1.0, + "table_TEDS": 1.0, "formula_edit": 0.0, - "overall": 0.17399224130411944 + "overall": 0.7631391203941089 }, "sample_results": [ { "sample_id": "7cdb7231-9337-4104-a562-9b8f285add7d", "extraction_success": true, - "extraction_time": 0.0339200496673584, + "extraction_time": 0.034438133239746094, "metrics": { "code_edit": { - "score": 0.10070257611241218, + "score": 0.9739243807040417, "success": true, "details": { - "distance": 768, - "predicted_length": 86, - "groundtruth_length": 854, + "distance": 20, + "predicted_length": 755, + "groundtruth_length": 767, "normalized": true, - "predicted_code_length": 86, - "groundtruth_code_length": 854, + "predicted_code_length": 755, + "groundtruth_code_length": 767, "content_type": "code" } }, @@ -417,14 +417,14 @@ "error": "Both predicted and groundtruth are empty" }, "text_edit": { - "score": 0.8570119156736938, + "score": 0.8536585365853658, "success": true, "details": { - "distance": 312, - "predicted_length": 2182, + "distance": 318, + "predicted_length": 2173, "groundtruth_length": 1977, "normalized": true, - "predicted_text_length": 2182, + "predicted_text_length": 2173, "groundtruth_text_length": 1977, "content_type": "text" } @@ -435,7 +435,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -449,7 +450,7 @@ "error": "Skipped due to table_edit failure: unknown reason" }, "overall": { - "score": 0.478857245893053, + "score": 0.9137914586447038, "success": true, "details": { "source": "average_of_all_metrics", @@ -457,8 +458,8 @@ "successful_metrics": 2, "failed_metrics": 3, "individual_scores": { - "code_edit": 0.10070257611241218, - "text_edit": 0.8570119156736938 + "code_edit": 0.9739243807040417, + "text_edit": 0.8536585365853658 } } } @@ -474,7 +475,7 @@ { "sample_id": "3026972b-8a26-48c3-bc00-c181138702f2", "extraction_success": true, - "extraction_time": 0.06366896629333496, + "extraction_time": 0.057988643646240234, "metrics": { "code_edit": { "score": 0.0, @@ -490,24 +491,24 @@ "score": 0.0, "success": true, "details": { - "distance": 11580, - "predicted_length": 11580, + "distance": 11579, + "predicted_length": 11579, "groundtruth_length": 0, "normalized": true, - "predicted_formula_length": 11580, + "predicted_formula_length": 11579, "groundtruth_formula_length": 0, "content_type": "formula" } }, "text_edit": { - "score": 0.9848316283613274, + "score": 0.9975019346430074, "success": true, "details": { - "distance": 1118, - "predicted_length": 73706, + "distance": 184, + "predicted_length": 73657, "groundtruth_length": 73498, "normalized": true, - "predicted_text_length": 73706, + "predicted_text_length": 73657, "groundtruth_text_length": 73498, "content_type": "text" } @@ -518,7 +519,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -532,7 +534,7 @@ "error": "Skipped due to table_edit failure: unknown reason" }, "overall": { - "score": 0.4924158141806637, + "score": 0.4987509673215037, "success": true, "details": { "source": "average_of_all_metrics", @@ -541,7 +543,7 @@ "failed_metrics": 3, "individual_scores": { "formula_edit": 0.0, - "text_edit": 0.9848316283613274 + "text_edit": 0.9975019346430074 } } } @@ -557,7 +559,7 @@ { "sample_id": "ee0a113d-bdd5-48cf-ac9c-a7cadfbfb74b", "extraction_success": true, - "extraction_time": 0.06996703147888184, + "extraction_time": 0.06598615646362305, "metrics": { "code_edit": { "score": 0.0, @@ -580,37 +582,38 @@ "error": "Both predicted and groundtruth are empty" }, "text_edit": { - "score": 0.5453646748681897, + "score": 0.8226575809199319, "success": true, "details": { - "distance": 4139, - "predicted_length": 9104, + "distance": 1041, + "predicted_length": 5870, "groundtruth_length": 5828, "normalized": true, - "predicted_text_length": 9104, + "predicted_text_length": 5870, "groundtruth_text_length": 5828, "content_type": "text" } }, "table_edit": { - "score": 0.0, + "score": 1.0, "success": true, "details": { - "distance": 179, - "predicted_length": 0, - "groundtruth_length": 179, + "distance": 0, + "predicted_length": 299, + "groundtruth_length": 299, "normalized": true, - "predicted_table_length": 0, - "groundtruth_table_length": 179, - "content_type": "table" + "predicted_table_length": 299, + "groundtruth_table_length": 299, + "content_type": "table", + "normalization": "teds_based" } }, "table_TEDS": { - "score": 0.0, + "score": 1.0, "success": true, "details": { - "edit_distance": 26.0, - "predicted_nodes": 3, + "edit_distance": 0.0, + "predicted_nodes": 19, "groundtruth_nodes": 19, "max_nodes": 19, "structure_only": false, @@ -619,7 +622,7 @@ } }, "overall": { - "score": 0.18178822495606325, + "score": 0.940885860306644, "success": true, "details": { "source": "average_of_all_metrics", @@ -627,9 +630,9 @@ "successful_metrics": 3, "failed_metrics": 2, "individual_scores": { - "text_edit": 0.5453646748681897, - "table_edit": 0.0, - "table_TEDS": 0.0 + "text_edit": 0.8226575809199319, + "table_edit": 1.0, + "table_TEDS": 1.0 } } } @@ -645,7 +648,7 @@ { "sample_id": "33e291cd-5b26-48b1-977f-3c63b45e6d13", "extraction_success": true, - "extraction_time": 0.020486116409301758, + "extraction_time": 0.020375728607177734, "metrics": { "code_edit": { "score": 0.0, @@ -668,14 +671,14 @@ "error": "Both predicted and groundtruth are empty" }, "text_edit": { - "score": 0.6898263027295286, + "score": 0.6932668329177057, "success": true, "details": { - "distance": 125, - "predicted_length": 403, + "distance": 123, + "predicted_length": 401, "groundtruth_length": 289, "normalized": true, - "predicted_text_length": 403, + "predicted_text_length": 401, "groundtruth_text_length": 289, "content_type": "text" } @@ -686,7 +689,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -700,7 +704,7 @@ "error": "Skipped due to table_edit failure: unknown reason" }, "overall": { - "score": 0.6898263027295286, + "score": 0.6932668329177057, "success": true, "details": { "source": "average_of_all_metrics", @@ -708,7 +712,7 @@ "successful_metrics": 1, "failed_metrics": 4, "individual_scores": { - "text_edit": 0.6898263027295286 + "text_edit": 0.6932668329177057 } } } @@ -724,12 +728,12 @@ ], "category_metrics": { "unknown": { - "text_edit": 0.769258630408185, - "code_edit": 0.10070257611241218, - "table_edit": 0.0, - "table_TEDS": 0.0, + "text_edit": 0.8417712212665027, + "code_edit": 0.9739243807040417, + "table_edit": 1.0, + "table_TEDS": 1.0, "formula_edit": 0.0, - "overall": 0.17399224130411944 + "overall": 0.7631391203941089 } }, "error_analysis": { @@ -746,33 +750,33 @@ "metadata": { "dataset_name": "sample_dataset", "extractor_name": "trafilatura", - "timestamp": "2025-09-04T15:01:20.121846", + "timestamp": "2025-09-12T16:00:31.127664", "total_samples": 4 }, "overall_metrics": { - "text_edit": 0.5618017579282533, - "code_edit": 0.10070257611241218, + "text_edit": 0.5603024791013755, + "code_edit": 0.0, "table_edit": 0.0, "table_TEDS": 0.0, "formula_edit": 0.0, - "overall": 0.13250086680813308 + "overall": 0.11206049582027511 }, "sample_results": [ { "sample_id": "7cdb7231-9337-4104-a562-9b8f285add7d", "extraction_success": true, - "extraction_time": 0.030450820922851562, + "extraction_time": 0.030469894409179688, "metrics": { "code_edit": { - "score": 0.10070257611241218, + "score": 0.0, "success": true, "details": { - "distance": 768, - "predicted_length": 86, - "groundtruth_length": 854, + "distance": 767, + "predicted_length": 0, + "groundtruth_length": 767, "normalized": true, - "predicted_code_length": 86, - "groundtruth_code_length": 854, + "predicted_code_length": 0, + "groundtruth_code_length": 767, "content_type": "code" } }, @@ -805,7 +809,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -819,7 +824,7 @@ "error": "Skipped due to table_edit failure: unknown reason" }, "overall": { - "score": 0.42187379690800175, + "score": 0.37152250885179566, "success": true, "details": { "source": "average_of_all_metrics", @@ -827,7 +832,7 @@ "successful_metrics": 2, "failed_metrics": 3, "individual_scores": { - "code_edit": 0.10070257611241218, + "code_edit": 0.0, "text_edit": 0.7430450177035913 } } @@ -844,7 +849,7 @@ { "sample_id": "3026972b-8a26-48c3-bc00-c181138702f2", "extraction_success": true, - "extraction_time": 0.017701148986816406, + "extraction_time": 0.018096923828125, "metrics": { "code_edit": { "score": 0.0, @@ -885,7 +890,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -923,7 +929,7 @@ { "sample_id": "ee0a113d-bdd5-48cf-ac9c-a7cadfbfb74b", "extraction_success": true, - "extraction_time": 0.09441804885864258, + "extraction_time": 0.09360408782958984, "metrics": { "code_edit": { "score": 0.0, @@ -946,14 +952,14 @@ "error": "Both predicted and groundtruth are empty" }, "text_edit": { - "score": 0.37871239701092163, + "score": 0.3727152817034106, "success": true, "details": { - "distance": 6485, - "predicted_length": 10438, + "distance": 6658, + "predicted_length": 10614, "groundtruth_length": 5828, "normalized": true, - "predicted_text_length": 10438, + "predicted_text_length": 10614, "groundtruth_text_length": 5828, "content_type": "text" } @@ -962,30 +968,27 @@ "score": 0.0, "success": true, "details": { - "distance": 179, + "distance": 299, "predicted_length": 0, - "groundtruth_length": 179, + "groundtruth_length": 299, "normalized": true, "predicted_table_length": 0, - "groundtruth_table_length": 179, - "content_type": "table" + "groundtruth_table_length": 299, + "content_type": "table", + "normalization": "teds_based" } }, "table_TEDS": { "score": 0.0, "success": true, "details": { - "edit_distance": 26.0, - "predicted_nodes": 3, - "groundtruth_nodes": 19, - "max_nodes": 19, - "structure_only": false, - "algorithm": "TEDS", - "content_type": "table" + "note": "One table is empty or invalid", + "content_type": "table", + "algorithm": "TEDS" } }, "overall": { - "score": 0.12623746567030722, + "score": 0.1242384272344702, "success": true, "details": { "source": "average_of_all_metrics", @@ -993,7 +996,7 @@ "successful_metrics": 3, "failed_metrics": 2, "individual_scores": { - "text_edit": 0.37871239701092163, + "text_edit": 0.3727152817034106, "table_edit": 0.0, "table_TEDS": 0.0 } @@ -1011,7 +1014,7 @@ { "sample_id": "33e291cd-5b26-48b1-977f-3c63b45e6d13", "extraction_success": true, - "extraction_time": 0.019816160202026367, + "extraction_time": 0.020328044891357422, "metrics": { "code_edit": { "score": 0.0, @@ -1052,7 +1055,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -1090,12 +1094,12 @@ ], "category_metrics": { "unknown": { - "text_edit": 0.5618017579282533, - "code_edit": 0.10070257611241218, + "text_edit": 0.5603024791013755, + "code_edit": 0.0, "table_edit": 0.0, "table_TEDS": 0.0, "formula_edit": 0.0, - "overall": 0.13250086680813308 + "overall": 0.11206049582027511 } }, "error_analysis": { @@ -1112,7 +1116,7 @@ "metadata": { "dataset_name": "sample_dataset", "extractor_name": "resiliparse", - "timestamp": "2025-09-04T15:01:20.300011", + "timestamp": "2025-09-12T16:00:31.298157", "total_samples": 4 }, "overall_metrics": { @@ -1127,18 +1131,18 @@ { "sample_id": "7cdb7231-9337-4104-a562-9b8f285add7d", "extraction_success": true, - "extraction_time": 0.0033152103424072266, + "extraction_time": 0.004547119140625, "metrics": { "code_edit": { "score": 0.0, "success": true, "details": { - "distance": 854, + "distance": 767, "predicted_length": 0, - "groundtruth_length": 854, + "groundtruth_length": 767, "normalized": true, "predicted_code_length": 0, - "groundtruth_code_length": 854, + "groundtruth_code_length": 767, "content_type": "code" } }, @@ -1171,7 +1175,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -1210,7 +1215,7 @@ { "sample_id": "3026972b-8a26-48c3-bc00-c181138702f2", "extraction_success": true, - "extraction_time": 0.0029952526092529297, + "extraction_time": 0.0031251907348632812, "metrics": { "code_edit": { "score": 0.0, @@ -1254,7 +1259,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, @@ -1293,7 +1299,7 @@ { "sample_id": "ee0a113d-bdd5-48cf-ac9c-a7cadfbfb74b", "extraction_success": true, - "extraction_time": 0.002476930618286133, + "extraction_time": 0.002187013626098633, "metrics": { "code_edit": { "score": 0.0, @@ -1332,26 +1338,23 @@ "score": 0.0, "success": true, "details": { - "distance": 179, + "distance": 299, "predicted_length": 0, - "groundtruth_length": 179, + "groundtruth_length": 299, "normalized": true, "predicted_table_length": 0, - "groundtruth_table_length": 179, - "content_type": "table" + "groundtruth_table_length": 299, + "content_type": "table", + "normalization": "teds_based" } }, "table_TEDS": { "score": 0.0, "success": true, "details": { - "edit_distance": 26.0, - "predicted_nodes": 3, - "groundtruth_nodes": 19, - "max_nodes": 19, - "structure_only": false, - "algorithm": "TEDS", - "content_type": "table" + "note": "One table is empty or invalid", + "content_type": "table", + "algorithm": "TEDS" } }, "overall": { @@ -1381,7 +1384,7 @@ { "sample_id": "33e291cd-5b26-48b1-977f-3c63b45e6d13", "extraction_success": true, - "extraction_time": 0.0013070106506347656, + "extraction_time": 0.0011968612670898438, "metrics": { "code_edit": { "score": 0.0, @@ -1422,7 +1425,8 @@ "details": { "predicted_table_length": 0, "groundtruth_table_length": 0, - "content_type": "table" + "content_type": "table", + "normalization": "teds_based" }, "error": "Both predicted and groundtruth are empty" }, diff --git a/results/leaderboard.csv b/results/leaderboard.csv index 97a7502..76286d6 100644 --- a/results/leaderboard.csv +++ b/results/leaderboard.csv @@ -1,5 +1,5 @@ -extractor,dataset,total_samples,success_rate,overall,code_edit,formula_edit,table_TEDS,table_edit,text_edit -llm-webkit,sample_dataset,4,1.0,0.262,0.5,0.0,0.0,0.0,0.81 -magic-html,sample_dataset,4,1.0,0.174,0.1007,0.0,0.0,0.0,0.7693 -resiliparse,sample_dataset,4,1.0,0.1667,0.0,0.0,0.0,0.0,0.8333 -trafilatura,sample_dataset,4,1.0,0.1325,0.1007,0.0,0.0,0.0,0.5618 +extractor,dataset,total_samples,success_rate,overall,code_edit,formula_edit,table_TEDS,table_edit,text_edit +llm-webkit,sample_dataset,4,1.0,0.262,0.5,0.0,0.0,0.0,0.81 +magic-html,sample_dataset,4,1.0,0.174,0.1007,0.0,0.0,0.0,0.7693 +resiliparse,sample_dataset,4,1.0,0.1667,0.0,0.0,0.0,0.0,0.8333 +trafilatura,sample_dataset,4,1.0,0.1325,0.1007,0.0,0.0,0.0,0.5618 \ No newline at end of file diff --git a/scripts/language_classify.py b/scripts/language_classify.py new file mode 100644 index 0000000..1d16b8d --- /dev/null +++ b/scripts/language_classify.py @@ -0,0 +1,526 @@ +#!/usr/bin/env python3 +""" +语言分类工具 +用于为数据集中的文本内容添加语言标签(ISO 639-1 标准) +""" + +import json +import argparse +import sys +from pathlib import Path +from typing import List, Dict, Any, Optional +import re +import os +from collections import Counter +import time + +class LanguageClassifier: + """语言分类器""" + + def __init__(self, api_key: Optional[str] = None, model: str = "gpt-5", base_url: str = "https://api.deepseek.com/v1"): + """ + 初始化语言分类器 + + Args: + api_key: OpenAI API密钥(如果使用LLM) + model: 使用的模型名称 + base_url: 模型请求的基础URL地址 + """ + self.api_key = api_key + self.model = model + self.base_url = base_url + self.supported_languages = self._get_supported_languages() + + def _get_supported_languages(self) -> Dict[str, str]: + """获取支持的语言列表(ISO 639-1 标准)""" + return { + # 主要语言 + 'en': 'English', + 'zh': 'Chinese', + 'es': 'Spanish', + 'fr': 'French', + 'de': 'German', + 'ja': 'Japanese', + 'ko': 'Korean', + 'ru': 'Russian', + 'ar': 'Arabic', + 'pt': 'Portuguese', + 'it': 'Italian', + 'nl': 'Dutch', + 'sv': 'Swedish', + 'no': 'Norwegian', + 'da': 'Danish', + 'fi': 'Finnish', + 'pl': 'Polish', + 'tr': 'Turkish', + 'th': 'Thai', + 'vi': 'Vietnamese', + 'hi': 'Hindi', + 'bn': 'Bengali', + 'ta': 'Tamil', + 'te': 'Telugu', + 'ur': 'Urdu', + 'fa': 'Persian', + 'he': 'Hebrew', + 'cs': 'Czech', + 'sk': 'Slovak', + 'hu': 'Hungarian', + 'ro': 'Romanian', + 'bg': 'Bulgarian', + 'hr': 'Croatian', + 'sr': 'Serbian', + 'sl': 'Slovenian', + 'et': 'Estonian', + 'lv': 'Latvian', + 'lt': 'Lithuanian', + 'uk': 'Ukrainian', + 'be': 'Belarusian', + 'ka': 'Georgian', + 'hy': 'Armenian', + 'az': 'Azerbaijani', + 'kk': 'Kazakh', + 'ky': 'Kyrgyz', + 'uz': 'Uzbek', + 'tg': 'Tajik', + 'mn': 'Mongolian', + 'my': 'Burmese', + 'km': 'Khmer', + 'lo': 'Lao', + 'si': 'Sinhala', + 'ne': 'Nepali', + 'ml': 'Malayalam', + 'kn': 'Kannada', + 'gu': 'Gujarati', + 'or': 'Odia', + 'pa': 'Punjabi', + 'as': 'Assamese', + 'mt': 'Maltese', + 'is': 'Icelandic', + 'ga': 'Irish', + 'cy': 'Welsh', + 'eu': 'Basque', + 'ca': 'Catalan', + 'gl': 'Galician', + 'af': 'Afrikaans', + 'sq': 'Albanian', + 'mk': 'Macedonian', + 'bs': 'Bosnian', + 'me': 'Montenegrin', + 'id': 'Indonesian', + 'ms': 'Malay', + 'tl': 'Filipino', + 'sw': 'Swahili', + 'am': 'Amharic', + 'ti': 'Tigrinya', + 'so': 'Somali', + 'zu': 'Zulu', + 'xh': 'Xhosa', + 'st': 'Southern Sotho', + 'tn': 'Tswana', + 'ss': 'Swazi', + 've': 'Venda', + 'ts': 'Tsonga', + 'nr': 'Southern Ndebele' + } + + def get_language_detection_prompt(self, text: str) -> str: + """ + 生成语言检测的prompt + + Args: + text: 需要检测语言的文本 + + Returns: + 格式化的prompt + """ + # 构建支持的语言列表字符串 + lang_list = ", ".join([f"{code} ({name})" for code, name in sorted(self.supported_languages.items())]) + + prompt = f"""Please identify the primary language of the following text and return ONLY the ISO 639-1 two-letter language code. + +SUPPORTED LANGUAGES: +{lang_list} + +RULES: +1. Return ONLY the two-letter ISO 639-1 code (e.g., "en", "zh", "es") +2. If the text contains multiple languages, return the code for the DOMINANT language +3. If the text is empty or contains only symbols/numbers, return "en" as default +4. If the language is not in the supported list, return the closest supported language +5. For Chinese text, return "zh" regardless of Traditional/Simplified variant +6. Do not include any explanation, punctuation, or additional text + +TEXT TO ANALYZE: +{text[:2000]}{"..." if len(text) > 2000 else ""} + +LANGUAGE CODE:""" + + return prompt + + + def detect_language_llm(self, text: str) -> str: + """ + 使用LLM进行语言检测 + + Args: + text: 需要检测的文本 + + Returns: + ISO 639-1 语言代码 + """ + try: + from openai import OpenAI + + if not self.api_key: + raise ValueError("API key is required for LLM detection") + + # 配置OpenAI客户端 + client = OpenAI( + base_url = self.base_url, + api_key = self.api_key + ) + + prompt = self.get_language_detection_prompt(text) + + response = client.chat.completions.create( + model=self.model, + messages=[ + {"role": "user", "content": prompt} + ], + temperature=0 + ) + + result = response.choices[0].message.content.strip().lower() + + # 验证返回的语言代码 + if result in self.supported_languages: + return result + else: + print(f"⚠️ LLM返回了无效的语言代码: {result},返回默认语言") + return "en" + + except Exception as e: + print(f"⚠️ LLM检测失败: {e},返回默认语言") + return "en" + + def detect_language(self, text: str) -> str: + """ + 使用LLM检测文本语言 + + Args: + text: 需要检测的文本 + + Returns: + ISO 639-1 语言代码 + """ + return self.detect_language_llm(text) + + def process_jsonl(self, input_file: str, output_file: str, + batch_size: int = 100) -> None: + """ + 处理JSONL文件,添加语言标签 + + Args: + input_file: 输入文件路径 + output_file: 输出文件路径 + batch_size: 批处理大小 + """ + print(f"🔄 开始处理语言分类...") + print(f"📄 输入文件: {input_file}") + print(f"📄 输出文件: {output_file}") + print(f"🧠 检测方法: LLM") + print(f"🌐 模型地址: {self.base_url}") + print(f"🤖 使用模型: {self.model}") + + # 统计信息 + total_count = 0 + processed_count = 0 + language_stats = Counter() + + try: + with open(input_file, 'r', encoding='utf-8') as infile, \ + open(output_file, 'w', encoding='utf-8') as outfile: + + batch = [] + + for line_num, line in enumerate(infile, 1): + if not line.strip(): + continue + + try: + data = json.loads(line) + total_count += 1 + batch.append(data) + + if len(batch) >= batch_size: + self._process_batch(batch, outfile, language_stats) + processed_count += len(batch) + batch = [] + + print(f" 📊 已处理 {processed_count:,} 条数据...") + + except json.JSONDecodeError as e: + print(f"⚠️ 第{line_num}行JSON解析错误: {e}") + continue + + # 处理最后一批 + if batch: + self._process_batch(batch, outfile, language_stats) + processed_count += len(batch) + + except FileNotFoundError: + print(f"❌ 文件未找到: {input_file}") + return + except Exception as e: + print(f"❌ 处理过程中出错: {e}") + return + + # 输出统计结果 + print(f"\n✅ 处理完成!") + print(f"📊 总计处理: {processed_count:,} 条数据") + print(f"📊 语言分布:") + + for lang_code, count in language_stats.most_common(): + lang_name = self.supported_languages.get(lang_code, "Unknown") + percentage = (count / processed_count) * 100 if processed_count > 0 else 0 + print(f" {lang_code} ({lang_name}): {count:,} ({percentage:.1f}%)") + + def analyze_language_statistics(self, input_file: str, output_csv: str = None) -> None: + """ + 分析JSONL文件中的语言统计信息并保存到CSV文件 + + Args: + input_file: 输入JSONL文件路径 + output_csv: 输出CSV文件路径,默认为输入文件名_language_stats.csv + """ + if output_csv is None: + input_path = Path(input_file) + output_csv = str(input_path.parent / f"{input_path.stem}_language_stats.csv") + + print(f"🔍 开始分析语言统计信息...") + print(f"📄 输入文件: {input_file}") + print(f"📄 输出CSV: {output_csv}") + + # 统计信息 + total_count = 0 + processed_count = 0 + language_stats = Counter() + + try: + with open(input_file, 'r', encoding='utf-8') as infile: + for line_num, line in enumerate(infile, 1): + if not line.strip(): + continue + + try: + data = json.loads(line) + total_count += 1 + + # 从meta字段中获取language信息 + language = None + if 'meta' in data and isinstance(data['meta'], dict): + language = data['meta'].get('language') + + if language: + language_stats[language] += 1 + processed_count += 1 + else: + # 如果没有language字段,记录为未知 + language_stats['unknown'] += 1 + processed_count += 1 + + if line_num % 1000 == 0: + print(f" 📊 已分析 {line_num:,} 行数据...") + + except json.JSONDecodeError as e: + print(f"⚠️ 第{line_num}行JSON解析错误: {e}") + continue + + except FileNotFoundError: + print(f"❌ 文件未找到: {input_file}") + return + except Exception as e: + print(f"❌ 分析过程中出错: {e}") + return + + # 生成统计数据 + stats_data = [] + for lang_code, count in language_stats.most_common(): + lang_name = self.supported_languages.get(lang_code, "Unknown" if lang_code != 'unknown' else "未检测到语言") + percentage = (count / processed_count) * 100 if processed_count > 0 else 0 + stats_data.append({ + 'language_code': lang_code, + 'language_name': lang_name, + 'count': count, + 'percentage': round(percentage, 2) + }) + + # 保存到CSV文件 + try: + import csv + with open(output_csv, 'w', newline='', encoding='utf-8') as csvfile: + fieldnames = ['language_code', 'language_name', 'count', 'percentage'] + writer = csv.DictWriter(csvfile, fieldnames=fieldnames) + + writer.writeheader() + for row in stats_data: + writer.writerow(row) + + print(f"\n✅ 语言统计分析完成!") + print(f"📊 总计分析: {processed_count:,} 条数据") + print(f"📊 语言分布:") + + for row in stats_data: + print(f" {row['language_code']} ({row['language_name']}): {row['count']:,} ({row['percentage']:.1f}%)") + + print(f"\n💾 统计结果已保存到: {output_csv}") + + except Exception as e: + print(f"❌ 保存CSV文件时出错: {e}") + return + + def _process_batch(self, batch: List[Dict], outfile, language_stats: Counter) -> None: + """ + 处理一批数据 + + Args: + batch: 数据批次 + outfile: 输出文件对象 + language_stats: 语言统计计数器 + """ + for data in batch: + # 获取文本内容 + text = data.get('convert_main_content', '') + + # 如果没有convert_main_content,尝试其他字段 + if not text: + text = data.get('groundtruth_content', '') + if not text: + text = data.get('content', '') + + # 检测语言 + if text: + language = self.detect_language(text) + else: + language = "en" # 默认英语 + + # 更新数据 + if 'meta' not in data: + data['meta'] = {} + data['meta']['language'] = language + + # 统计 + language_stats[language] += 1 + + # 写入输出文件 + outfile.write(json.dumps(data, ensure_ascii=False) + '\n') + + # 添加延迟避免速率限制 + time.sleep(0.1) + + +def main(): + """主函数""" + parser = argparse.ArgumentParser( + description="为JSONL数据集添加语言标签 (ISO 639-1 标准) 或统计语言分布", + formatter_class=argparse.RawDescriptionHelpFormatter, + epilog=""" +示例用法: + # 使用LLM进行语言检测 + python scripts/language_classify.py data/input.jsonl --output data/output.jsonl --api-key YOUR_API_KEY + + # 指定自定义模型地址和批处理大小 + python scripts/language_classify.py data/input.jsonl --output data/output.jsonl --api-key YOUR_API_KEY --base-url http://custom-url:8080/ --batch-size 50 + + # 使用默认地址和指定模型 + python scripts/language_classify.py data/input.jsonl --output data/output.jsonl --api-key YOUR_API_KEY --model gpt-4 + + # 统计已有文件的语言分布 + python scripts/language_classify.py data/WebMainBench_7887_language_output.jsonl --analyze-only --output-csv data/language_stats.csv + """ + ) + + parser.add_argument( + "input_file", + help="输入JSONL文件路径" + ) + + parser.add_argument( + "--output", "-o", + help="输出JSONL文件路径(仅在非分析模式下必需)" + ) + + parser.add_argument( + "--analyze-only", + action="store_true", + help="仅分析语言统计信息,不进行语言检测" + ) + + parser.add_argument( + "--output-csv", + help="语言统计结果CSV输出文件路径(仅在分析模式下使用)" + ) + + parser.add_argument( + "--api-key", + default=os.getenv("OPENAI_API_KEY"), + help="OpenAI API密钥(仅在语言检测模式下需要)" + ) + + parser.add_argument( + "--model", + default="gpt-5", + help="LLM模型名称 (默认: gpt-5)" + ) + + parser.add_argument( + "--base-url", + default="https://api.deepseek.com/v1/", + help="模型请求的基础URL地址" + ) + + parser.add_argument( + "--batch-size", + type=int, + default=100, + help="批处理大小 (默认: 100)" + ) + + args = parser.parse_args() + + # 验证参数 + if not Path(args.input_file).exists(): + print(f"❌ 输入文件不存在: {args.input_file}") + sys.exit(1) + + # 创建分类器 + classifier = LanguageClassifier( + api_key=args.api_key, + model=args.model, + base_url=args.base_url + ) + + if args.analyze_only: + # 仅进行语言统计分析 + classifier.analyze_language_statistics( + input_file=args.input_file, + output_csv=args.output_csv + ) + else: + # 进行语言检测和分类 + if not args.output: + print("❌ 在语言检测模式下,--output 参数是必需的") + sys.exit(1) + + if not args.api_key: + print("❌ 在语言检测模式下,--api-key 参数是必需的") + sys.exit(1) + + classifier.process_jsonl( + input_file=args.input_file, + output_file=args.output, + batch_size=args.batch_size + ) + + +if __name__ == "__main__": + main() diff --git a/scripts/statics.py b/scripts/statics.py index 56b8b7b..ab84632 100644 --- a/scripts/statics.py +++ b/scripts/statics.py @@ -12,7 +12,7 @@ from bs4 import BeautifulSoup import argparse -from llm_web_kit.simple import extract_content_from_main_html +from llm_web_kit.simple import extract_content_from_html_with_magic_html, extract_content_from_main_html from llm_web_kit.input.datajson import ContentList @@ -72,7 +72,7 @@ def generate_content_list(self, data): return data # 提取内容 - result = extract_content_from_main_html(url, html_content, 'json') + result = extract_content_from_html_with_magic_html(url, html_content, 'json') # 解析JSON try: @@ -833,6 +833,9 @@ def update_data(self): self.detect_equations(data) self.detect_code(data) self.calculate_level_score(data) # 只计算复杂度得分,不分类 + # 删除content_list字段 + if 'content_list' in data: + del data['content_list'] # 显示进度 if (i + 1) % 100 == 0: @@ -1067,9 +1070,9 @@ def main(): # data/sample_dataset.jsonl # data/WebMainBench_1827_v1_WebMainBench_dataset_merge_with_llm_webkit.jsonl parser.add_argument("input_file", nargs='?', - default="data/WebMainBench_1827_v1_WebMainBench_dataset_merge_with_llm_webkit.jsonl", + default="data/WebMainBench_7887_language_output.jsonl", help="输入JSONL文件路径") - parser.add_argument("--output", default="data/sample_dataset_with_stats.jsonl", type=str, help="输出文件路径") + parser.add_argument("--output", default="data/WebMainBench_7887_language_output_with_stats.jsonl", type=str, help="输出文件路径") args = parser.parse_args() diff --git a/scripts/style_classify.py b/scripts/style_classify.py new file mode 100644 index 0000000..43cb78b --- /dev/null +++ b/scripts/style_classify.py @@ -0,0 +1,380 @@ +#!/usr/bin/env python3 +""" +网页类型分类工具 +用于为数据集中的网页内容添加类型标签 +""" + +import json +import argparse +import sys +import os +from pathlib import Path +from typing import List, Dict, Any, Optional +import re +from collections import Counter +import time + +class StyleClassifier: + """网页类型分类器""" + + def __init__(self, api_key: Optional[str] = None, model: str = "gpt-5", base_url: str = "https://api.deepseek.com/v1"): + """ + 初始化网页类型分类器 + + Args: + api_key: OpenAI API密钥 + model: 使用的模型名称 + base_url: 模型请求的基础URL地址 + """ + self.api_key = api_key + self.model = model + self.base_url = base_url + self.supported_categories = self._get_supported_categories() + + def _get_supported_categories(self) -> Dict[str, List[str]]: + """获取支持的网页类型分类""" + return { + "Article": [ + "Blog", "News", "Tutorial", "Multiple data article", + "Product page", "other article" + ], + "Forum_or_Article_with_commentsection": [ + "Forum", "Article_with_commentsection" + ], + "Content Listing": [ + "navigation listing", "irrelevant content listing" + ], + "Other": [ + "login", "register", "error", "paywall", "truncated", "other" + ] + } + + def get_style_classification_prompt(self, url: str, html_content: str) -> str: + """ + 生成网页类型分类的prompt + + Args: + url: 网页URL + html_content: 网页HTML内容 + + Returns: + 格式化的prompt + """ + prompt = f"""You are an expert in web page classification with a strong focus on web page layout, content analysis, and user interaction. Your task is to accurately classify the provided simplified HTML source code into one of the main categories listed below, while also identifying an appropriate subcategory if applicable. Pay attention to html tag name and significant structural elements. + +When faced with multiple classifications, choose the one that best represents the overall purpose and structure of the page. **Key distinctions include**: +- **Article**: + - These pages feature in-depth narratives or detailed discussions without comment section, also includes product detail page. + - subcategory: Blog, News, Tutorial, Multiple data article, Product page, other article. + - Examples: wikipedia, bbc news, product detail page. + - Note: Some article pages may have advertiment or posts in the middle, but it is not the primary focus. + +- **Forum_or_Article_with_commentsection**: + - This page must have comment section. The main content includes tree-like discussion forum or Article around a topic with multiple posts or comments from different users at the end, except for mailing list archive pages. Some pages set comment section but with no comments temporarily. + - subcategory: Forum, Article_with_commentsection + - Example: Forum like reddit, stackoverflow, quora, etc. Article_with_commentsection like weibo, zhihu, etc. + - Note: Forum homepage is intend to navigation, so it is classified as **Content Listing**. Some forum use article tag to display topic, but it is intend to discussion, classify as **Forum_or_Article_with_commentsection**. + +- **Content Listing**: + - Pages primarily serving as navigation tools with minimal content on irrelevant topics(e.g., product catalogs or sitemaps) fall into this category. + - subcategory: navigation listing, irrelevant content listing + - Example: product catalogs, news listings with short snippets of articles, Forum Topic Listing Page. + - Note: If the content is relevant, it cannot count in this category, such as different parts in an article. + +- **Other**: + - Any pages with incomplete, generic, or non-informative content (e.g., error pages, login forms) that do not fit the above categories. + - subcategory: login, register, error, paywall, truncated, other + +**Instructions for Classification**: +1. Identify the main content of the page by looking at the HTML structure and the presence of significant tags like `
      `, `
      `, `
      `, etc. +2. Determine if the page contains a discussion forum or a comment section by checking for
      or
      elements like `
      `, `