# Security Contracts

**Master Chef:** [**https://bscscan.com/address/0xc79e59c8755F56b29228586754203EAF9FD00C87#code**](https://bscscan.com/address/0xc79e59c8755F56b29228586754203EAF9FD00C87#code)

**Master Chef V2:** [**https://bscscan.com/address/0x2556fDd7c00f17C211ec56D16055FaF5E8656590**](https://bscscan.com/address/0x2556fDd7c00f17C211ec56D16055FaF5E8656590)

**CLIMB:** [**https://bscscan.com/token/0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d#balances**](https://bscscan.com/token/0x2a1d286ed5edad78befd6e0d8beb38791e8cd69d#balances)

**MNTN:** [**https://bscscan.com/token/0xa7fcb2baabda9db593e24b25a1a32bfb5168018b**](https://bscscan.com/token/0xa7fcb2baabda9db593e24b25a1a32bfb5168018b)

**MARS:** *(coming soon)*

**LP Burn:** <https://bscscan.com/tx/0x936db89529dc7c293621b9a1dbaf54e0aa707be28375f34b96e9f95beec5058e>

**Rugpull Migrator Code:** \
\
We have published an article about Pancake swap can take all your money within 6 hours. That is why we have eliminated this code to not be like them and to give our users the greatest security.

Although they might not do it, the code is still present in their contract and this code is exactly how all the rug pulls were done. We have removed the following migrator code from our contract which was forked out from Pancake swap. You can see the following code is still present in pancake swap’s contract and github.

You can see the following migrator code is still present in the following link Link: <https://github.com/pancakeswap/pancake-farm/blob/master/contracts/MasterChef.sol>

```

    // Migrate lp token to another lp contract. Can be called by anyone. We trust that migrator contract is good.
    function migrate(uint256 _pid) public {
        require(address(migrator) != address(0), "migrate: no migrator");
        PoolInfo storage pool = poolInfo[_pid];
        IBEP20 lpToken = pool.lpToken;
        uint256 bal = lpToken.balanceOf(address(this));
        lpToken.safeApprove(address(migrator), bal);
        IBEP20 newLpToken = migrator.migrate(lpToken);
        require(bal == newLpToken.balanceOf(address(this)), "migrate: bad");
        pool.lpToken = newLpToken;
    }
```

**Emergency Withdraw:**&#x20;

![](/files/-MXVN-x8Ti3Awi_Mg3Ci)

**Ownership burn:**&#x20;

![](/files/-MXVv2YKd7Dr9sCrs_er)

**The CLIMB contractowner is: 0x000000000000000000000000000000000000dead**

This means that ownership is burned and there will be no possibilities to manipulate the blockchain in any way.

We cannot burn tokens from users wallets (only those that we buy back to burn), also we cannot remove them (tokens) from users' wallets.[<br>](https://vikingswap.gitbook.io/viking-swap/in-the-pipeworks/viking-nft)


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://climbtoken.gitbook.io/climb-token/contracts.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
