# Materials

## TLOCK Reward Rate Table

### Complete Reputation & Reward Structure

| Level  | Reward Rate | Comment Reward | Like Reward |
| ------ | ----------- | -------------- | ----------- |
| **0**  | 0%          | 0 TOK          | 0 TOK       |
| **1**  | 1%          | 1 TOK          | 0.01 TOK    |
| **2**  | 2%          | 2 TOK          | 0.02 TOK    |
| **3**  | 4%          | 4 TOK          | 0.04 TOK    |
| **4**  | 8%          | 8 TOK          | 0.08 TOK    |
| **5**  | 16%         | 16 TOK         | 0.16 TOK    |
| **6**  | 32%         | 32 TOK         | 0.32 TOK    |
| **7**  | 64%         | 64 TOK         | 0.64 TOK    |
| **7+** | **100%**    | **100 TOK**    | **1 TOK**   |

***

### Daily Earning Limits

| Activity     | Daily Limit | Max Daily TOK (Level 1) | Max Daily TOK (Level 7+) |
| ------------ | ----------- | ----------------------- | ------------------------ |
| **Comments** | 5 per day   | 5 TOK                   | 500 TOK                  |
| **Likes**    | 20 per day  | 0.2 TOK                 | 20 TOK                   |
| **Total**    | -           | **5.2 TOK/day**         | **520 TOK/day**          |

***

### Monthly Income Estimates (30 days)

| Level  | Daily Income | Monthly Income | At $0.0001/TOK | At $0.001/TOK | At $0.01/TOK |
| ------ | ------------ | -------------- | -------------- | ------------- | ------------ |
| **1**  | 5.2 TOK      | 156 TOK        | $0.016         | $0.16         | $1.56        |
| **3**  | 20.8 TOK     | 624 TOK        | $0.062         | $0.62         | $6.24        |
| **5**  | 83.2 TOK     | 2,496 TOK      | $0.25          | $2.50         | $24.96       |
| **7+** | 520 TOK      | 15,600 TOK     | $1.56          | $15.60        | $156.00      |

***

### Bypass Option: Staking

| Method         | Requirement       | Reward Rate                | Reversible?                 |
| -------------- | ----------------- | -------------------------- | --------------------------- |
| **Reputation** | Time + engagement | 1% - 100% (based on level) | No (permanent score)        |
| **Staking**    | Stake 100,000 TOK | 100% (immediate)           | Yes (reverts when unstaked) |

***

### Score Accumulation Examples

#### Example 1: New User Getting Help from High-Level User

| Interaction     | Giver Level | Score Gained | New Total | Level After |
| --------------- | ----------- | ------------ | --------- | ----------- |
| Start           | -           | 0            | 0         | Level 0     |
| Verification    | -           | -            | -         | **Level 1** |
| 1× L5 comment   | 5           | 625          | 625       | Level 1     |
| 1× L6 comment   | 6           | 3,125        | 3,750     | **Level 3** |
| 50× L3 comments | 3           | 1,250        | 5,000     | **Level 3** |

#### Example 2: Time to Level Up with Self-Farm (1,000 fake accounts)

| Target Level    | Total Score Needed | Daily Capacity (1K L1 accounts) | Days Required | Months   |
| --------------- | ------------------ | ------------------------------- | ------------- | -------- |
| **Level 2**     | 1,000,000          | 5,000                           | 200           | 6.7      |
| **Level 3**     | 5,000,000          | 25,000 (now L2)                 | 200           | 6.7      |
| **Level 4**     | 25,000,000         | 125,000 (now L3)                | 200           | 6.7      |
| **Level 5**     | 125,000,000        | 625,000 (now L4)                | 200           | 6.7      |
| **Total to L5** | -                  | -                               | **800 days**  | **26.7** |

***

### Formula Reference

```javascript
// Reward Rate
Rate_n = 2^(n-1) / 100
// Capped at 100% for level 7+

// Score Contribution Per Comment
Score = 5^(n-1)

// Level Upgrade Threshold
ScoreLevel_n = 1000 × 5^(n-2)

// Daily Earnings
Daily = (5 comments × Rate × 100 TOK) + (20 likes × Rate × 1 TOK)
```

###
