More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 349 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 17377008 | 610 days ago | IN | 0 ETH | 0.0013297 | ||||
Approve | 17376994 | 610 days ago | IN | 0 ETH | 0.0013818 | ||||
Approve | 17376968 | 611 days ago | IN | 0 ETH | 0.00144825 | ||||
Approve | 17376881 | 611 days ago | IN | 0 ETH | 0.00227741 | ||||
Approve | 16654452 | 712 days ago | IN | 0 ETH | 0.00056164 | ||||
Approve | 16643930 | 714 days ago | IN | 0 ETH | 0.00098662 | ||||
Approve | 16574540 | 724 days ago | IN | 0 ETH | 0.00050233 | ||||
Approve | 14627404 | 1015 days ago | IN | 0 ETH | 0.0008889 | ||||
Approve | 13256333 | 1229 days ago | IN | 0 ETH | 0.00219256 | ||||
Transfer | 13246650 | 1231 days ago | IN | 0 ETH | 0.00314299 | ||||
Approve | 13239912 | 1232 days ago | IN | 0 ETH | 0.0025088 | ||||
Approve | 12510600 | 1345 days ago | IN | 0 ETH | 0.00158276 | ||||
Approve | 12424695 | 1358 days ago | IN | 0 ETH | 0.00526037 | ||||
Approve | 12353114 | 1369 days ago | IN | 0 ETH | 0.00135 | ||||
Approve | 12353105 | 1369 days ago | IN | 0 ETH | 0.00141983 | ||||
Approve | 12325490 | 1374 days ago | IN | 0 ETH | 0.00246725 | ||||
Approve | 12268433 | 1383 days ago | IN | 0 ETH | 0.00516727 | ||||
Approve | 12126661 | 1404 days ago | IN | 0 ETH | 0.00391177 | ||||
Approve | 12095206 | 1409 days ago | IN | 0 ETH | 0.00466746 | ||||
Approve | 12013831 | 1422 days ago | IN | 0 ETH | 0.00408958 | ||||
Approve | 12010987 | 1422 days ago | IN | 0 ETH | 0.0045341 | ||||
Approve | 12002099 | 1424 days ago | IN | 0 ETH | 0.0066228 | ||||
Approve | 11998088 | 1424 days ago | IN | 0 ETH | 0.00417848 | ||||
Approve | 11985741 | 1426 days ago | IN | 0 ETH | 0.00306718 | ||||
Approve | 11978764 | 1427 days ago | IN | 0 ETH | 0.00816583 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
12017678 | 1421 days ago | 0.11123596 ETH | ||||
12017678 | 1421 days ago | 0.11123596 ETH | ||||
11973051 | 1428 days ago | 0.13507545 ETH | ||||
11973051 | 1428 days ago | 0.13507545 ETH | ||||
11964019 | 1429 days ago | 0.1434524 ETH | ||||
11964019 | 1429 days ago | 0.1434524 ETH | ||||
11958854 | 1430 days ago | 0.15695437 ETH | ||||
11958854 | 1430 days ago | 0.15695437 ETH | ||||
11953805 | 1431 days ago | 0.15852563 ETH | ||||
11953805 | 1431 days ago | 0.15852563 ETH | ||||
11952794 | 1431 days ago | 0.23501137 ETH | ||||
11952794 | 1431 days ago | 0.23501137 ETH | ||||
11951389 | 1431 days ago | 0.20166419 ETH | ||||
11951389 | 1431 days ago | 0.20166419 ETH | ||||
11948594 | 1432 days ago | 0.26200598 ETH | ||||
11948594 | 1432 days ago | 0.26200598 ETH | ||||
11945679 | 1432 days ago | 0.24540239 ETH | ||||
11945679 | 1432 days ago | 0.24540239 ETH | ||||
11944485 | 1432 days ago | 0.26584219 ETH | ||||
11944485 | 1432 days ago | 0.26584219 ETH | ||||
11943400 | 1433 days ago | 0.29619157 ETH | ||||
11943400 | 1433 days ago | 0.29619157 ETH | ||||
11942869 | 1433 days ago | 0.32616333 ETH | ||||
11942869 | 1433 days ago | 0.32616333 ETH | ||||
11942664 | 1433 days ago | 0.36260829 ETH |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
Monte
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2021-02-27 */ // File: @openzeppelin\contracts\math\SafeMath.sol // SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } } // File: node_modules\@openzeppelin\contracts\utils\Context.sol pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin\contracts\access\Ownable.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () internal { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } // File: node_modules\@openzeppelin\contracts\token\ERC20\IERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin\contracts\token\ERC20\ERC20.sol pragma solidity >=0.6.0 <0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for {name} and {symbol}, initializes {decimals} with * a default value of 18. * * To select a different value for {decimals}, use {_setupDecimals}. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) public { _name = name_; _symbol = symbol_; _decimals = 18; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless {_setupDecimals} is * called. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(addedValue)); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Sets {decimals} to a value other than the default one of 18. * * WARNING: This function should only be called from the constructor. Most * applications that interact with token contracts will not expect * {decimals} to ever change, and may work incorrectly if it does. */ function _setupDecimals(uint8 decimals_) internal virtual { _decimals = decimals_; } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } } // File: contracts\uniswap\IUniswapV2Factory.sol pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File: contracts\uniswap\IUniswapV2Router01.sol pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); } // File: contracts\uniswap\IUniswapV2Router02.sol pragma solidity >=0.6.2; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File: contracts\IStaking.sol pragma solidity ^0.6.0; interface IStaking { function distribute() external payable; } // File: contracts\Monte.sol pragma solidity ^0.6.0; contract Monte is Context, Ownable, ERC20 { using SafeMath for uint256; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; address public stakingPool; uint256 public taxFee = 300; uint256 public taxFeeTotal; bool public isTaxActive = false; mapping(address => bool) public isTaxless; uint256 public minTokenBeforeSwap = 10e18; bool private inSwap; bool public isSwapEnabled = true; uint256 public totalEthDistributed; event SwapedTokenForEth(uint256 ethAmount, uint256 tokenAmount); modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor() ERC20("Monte.finance","MONTE") public { uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _mint(_msgSender(),8200e18); isTaxless[address(this)] = true; isTaxless[_msgSender()] = true; } function setPairAddress(address pair) external onlyOwner { uniswapV2Pair = pair; } function setTaxActive(bool _value) external onlyOwner { isTaxActive = _value; } function setTaxless(address account, bool _value) external onlyOwner { isTaxless[account] = _value; } function setTaxFee(uint256 _taxFee) external onlyOwner { require(_taxFee > 0 && _taxFee <= 10, "MONTE: Tax Fee out of range!"); taxFee = _taxFee; } function setStakingPool(address _stakingPool) external onlyOwner { require(stakingPool == address(0), "Staking pool already set."); stakingPool = _stakingPool; isTaxless[_stakingPool] = true; } function setSwapEnabled(bool _value) external onlyOwner { isSwapEnabled = _value; } function setMinTokenBeforeSwap(uint256 amount) external onlyOwner { minTokenBeforeSwap = amount; } function transferFrom(address sender, address recipient, uint amount) public override returns (bool) { _transfer(sender, recipient, amount); if(_msgSender() == stakingPool) return true; _approve(sender, _msgSender(), allowance(sender,_msgSender()).sub(amount, "MONTE: transfer amount exceeds allowance")); return true; } function _transfer(address sender, address recipient, uint256 amount) internal override { if(isSwapEnabled && !inSwap && sender != uniswapV2Pair){ swapAndDistribute(); } uint256 transferAmount = amount; if(isTaxActive && !isTaxless[sender] && !isTaxless[recipient]) { uint256 fee = amount.mul(taxFee).div(10_000); super._transfer(sender,address(this),fee); transferAmount = amount.sub(fee); taxFeeTotal = taxFeeTotal.add(fee); } super._transfer(sender, recipient, transferAmount); } function swapAndDistribute() private lockTheSwap { uint256 tokenAmount = balanceOf(address(this)); if(tokenAmount < minTokenBeforeSwap) return; uint256 ethAmount = address(this).balance; address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); ethAmount = address(this).balance.sub(ethAmount); emit SwapedTokenForEth(tokenAmount,ethAmount); uint256 amountToDistribute = address(this).balance; totalEthDistributed = totalEthDistributed.add(amountToDistribute); IStaking(stakingPool).distribute{value: amountToDistribute}(); } receive() external payable {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"ethAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"SwapedTokenForEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isTaxActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"isTaxless","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTokenBeforeSwap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"setMinTokenBeforeSwap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"}],"name":"setPairAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_stakingPool","type":"address"}],"name":"setStakingPool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_value","type":"bool"}],"name":"setTaxActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxFee","type":"uint256"}],"name":"setTaxFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"_value","type":"bool"}],"name":"setTaxless","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxFeeTotal","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalEthDistributed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405261012c600955600b805460ff19169055678ac7230489e80000600d55600e805461ff0019166101001790553480156200003c57600080fd5b506040518060400160405280600d81526020016c4d6f6e74652e66696e616e636560981b815250604051806040016040528060058152602001644d4f4e544560d81b815250600062000093620001b360201b60201c565b600080546001600160a01b0319166001600160a01b0383169081178255604051929350917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3508151620000f290600490602085019062000331565b5080516200010890600590602084019062000331565b505060068054601260ff1990911617610100600160a81b031916747a250d5630b4cf539739df2c5dacb4c659f2488d00179055506200015b6200014a620001b3565b6901bc85dc2a89bb200000620001b7565b306000908152600c602081905260408220805460ff191660019081179091559162000185620001b3565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055620003cd565b3390565b6001600160a01b03821662000213576040805162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b6200022160008383620002ca565b6200023d81600354620002cf60201b620010561790919060201c565b6003556001600160a01b0382166000908152600160209081526040909120546200027291839062001056620002cf821b17901c565b6001600160a01b03831660008181526001602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b505050565b6000828201838110156200032a576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f106200037457805160ff1916838001178555620003a4565b82800160010185558215620003a4579182015b82811115620003a457825182559160200191906001019062000387565b50620003b2929150620003b6565b5090565b5b80821115620003b25760008155600101620003b7565b611a2c80620003dd6000396000f3fe6080604052600436106101dc5760003560e01c806349bd5a5e11610102578063a457c2d711610095578063c4081a4c11610064578063c4081a4c14610676578063dd62ed3e146106a0578063e01af92c146106db578063f2fde38b14610707576101e3565b8063a457c2d7146105a7578063a5ae2d2f146105e0578063a9059cbb14610613578063afbec0fe1461064c576101e3565b806395d89b41116100d157806395d89b411461053557806398a0dd091461054a578063a071dcf41461055f578063a22d483214610574576101e3565b806349bd5a5e146104c357806370a08231146104d8578063715018a61461050b5780638da5cb5b14610520576101e3565b806323b872dd1161017a578063351a964d11610149578063351a964d14610425578063395093511461043a578063419adcd81461047357806347f2dc5b14610488576101e3565b806323b872dd146103565780632ffc1628146103995780633028f63a146103c7578063313ce567146103fa576101e3565b80630c56ae3b116101b65780630c56ae3b146102e65780631694505e1461031757806318160ddd1461032c5780631e6ee83014610341576101e3565b806302a71bde146101e857806306fdde031461020f578063095ea7b314610299576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61073a565b60408051918252519081900360200190f35b34801561021b57600080fd5b50610224610740565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025e578181015183820152602001610246565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a557600080fd5b506102d2600480360360408110156102bc57600080fd5b506001600160a01b0381351690602001356107d6565b604080519115158252519081900360200190f35b3480156102f257600080fd5b506102fb6107f4565b604080516001600160a01b039092168252519081900360200190f35b34801561032357600080fd5b506102fb610803565b34801561033857600080fd5b506101fd610817565b34801561034d57600080fd5b506101fd61081d565b34801561036257600080fd5b506102d26004803603606081101561037957600080fd5b506001600160a01b03813581169160208101359091169060400135610823565b3480156103a557600080fd5b506103c5600480360360208110156103bc57600080fd5b503515156108ac565b005b3480156103d357600080fd5b506103c5600480360360208110156103ea57600080fd5b50356001600160a01b0316610921565b34801561040657600080fd5b5061040f610a1b565b6040805160ff9092168252519081900360200190f35b34801561043157600080fd5b506102d2610a24565b34801561044657600080fd5b506102d26004803603604081101561045d57600080fd5b506001600160a01b038135169060200135610a32565b34801561047f57600080fd5b506101fd610a80565b34801561049457600080fd5b506103c5600480360360408110156104ab57600080fd5b506001600160a01b0381351690602001351515610a86565b3480156104cf57600080fd5b506102fb610b13565b3480156104e457600080fd5b506101fd600480360360208110156104fb57600080fd5b50356001600160a01b0316610b22565b34801561051757600080fd5b506103c5610b3d565b34801561052c57600080fd5b506102fb610be9565b34801561054157600080fd5b50610224610bf8565b34801561055657600080fd5b506102d2610c59565b34801561056b57600080fd5b506101fd610c62565b34801561058057600080fd5b506103c56004803603602081101561059757600080fd5b50356001600160a01b0316610c68565b3480156105b357600080fd5b506102d2600480360360408110156105ca57600080fd5b506001600160a01b038135169060200135610cec565b3480156105ec57600080fd5b506102d26004803603602081101561060357600080fd5b50356001600160a01b0316610d54565b34801561061f57600080fd5b506102d26004803603604081101561063657600080fd5b506001600160a01b038135169060200135610d69565b34801561065857600080fd5b506103c56004803603602081101561066f57600080fd5b5035610d7d565b34801561068257600080fd5b506103c56004803603602081101561069957600080fd5b5035610de4565b3480156106ac57600080fd5b506101fd600480360360408110156106c357600080fd5b506001600160a01b0381358116916020013516610ead565b3480156106e757600080fd5b506103c5600480360360208110156106fe57600080fd5b50351515610ed8565b34801561071357600080fd5b506103c56004803603602081101561072a57600080fd5b50356001600160a01b0316610f54565b600f5481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b60006107ea6107e36110b0565b84846110b4565b5060015b92915050565b6008546001600160a01b031681565b60065461010090046001600160a01b031681565b60035490565b600a5481565b60006108308484846111a0565b6008546001600160a01b03166108446110b0565b6001600160a01b0316141561085b575060016108a5565b6108a1846108676110b0565b61089c856040518060600160405280602881526020016118fa602891396108958a6108906110b0565b610ead565b9190611298565b6110b4565b5060015b9392505050565b6108b46110b0565b6001600160a01b03166108c5610be9565b6001600160a01b03161461090e576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600b805460ff1916911515919091179055565b6109296110b0565b6001600160a01b031661093a610be9565b6001600160a01b031614610983576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b6008546001600160a01b0316156109e1576040805162461bcd60e51b815260206004820152601960248201527f5374616b696e6720706f6f6c20616c7265616479207365742e00000000000000604482015290519081900360640190fd5b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600c60205260409020805460ff19166001179055565b60065460ff1690565b600e54610100900460ff1681565b60006107ea610a3f6110b0565b8461089c8560026000610a506110b0565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611056565b600d5481565b610a8e6110b0565b6001600160a01b0316610a9f610be9565b6001600160a01b031614610ae8576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b610b456110b0565b6001600160a01b0316610b56610be9565b6001600160a01b031614610b9f576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107cc5780601f106107a1576101008083540402835291602001916107cc565b600b5460ff1681565b60095481565b610c706110b0565b6001600160a01b0316610c81610be9565b6001600160a01b031614610cca576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60006107ea610cf96110b0565b8461089c856040518060600160405280602581526020016119d26025913960026000610d236110b0565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611298565b600c6020526000908152604090205460ff1681565b60006107ea610d766110b0565b84846111a0565b610d856110b0565b6001600160a01b0316610d96610be9565b6001600160a01b031614610ddf576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600d55565b610dec6110b0565b6001600160a01b0316610dfd610be9565b6001600160a01b031614610e46576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600081118015610e575750600a8111155b610ea8576040805162461bcd60e51b815260206004820152601c60248201527f4d4f4e54453a2054617820466565206f7574206f662072616e67652100000000604482015290519081900360640190fd5b600955565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610ee06110b0565b6001600160a01b0316610ef1610be9565b6001600160a01b031614610f3a576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600e80549115156101000261ff0019909216919091179055565b610f5c6110b0565b6001600160a01b0316610f6d610be9565b6001600160a01b031614610fb6576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b6001600160a01b038116610ffb5760405162461bcd60e51b81526004018080602001828103825260268152602001806118b26026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156108a5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166110f95760405162461bcd60e51b81526004018080602001828103825260248152602001806119ae6024913960400191505060405180910390fd5b6001600160a01b03821661113e5760405162461bcd60e51b81526004018080602001828103825260228152602001806118d86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600e54610100900460ff1680156111ba5750600e5460ff16155b80156111d457506007546001600160a01b03848116911614155b156111e1576111e161132f565b600b54819060ff16801561120e57506001600160a01b0384166000908152600c602052604090205460ff16155b801561123357506001600160a01b0383166000908152600c602052604090205460ff16155b1561128757600061125b6127106112556009548661160f90919063ffffffff16565b90611668565b90506112688530836116cf565b611272838261182c565b600a549092506112829082611056565b600a55505b6112928484836116cf565b50505050565b600081848411156113275760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112ec5781810151838201526020016112d4565b50505050905090810190601f1680156113195780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600e805460ff19166001179055600061134730610b22565b9050600d548110156113595750611603565b60408051600280825260608083018452479390929190602083019080368337019050509050308160008151811061138c57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050600660019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156113fa57600080fd5b505afa15801561140e573d6000803e3d6000fd5b505050506040513d602081101561142457600080fd5b505181518290600190811061143557fe5b6001600160a01b039283166020918202929092010152600654611460913091610100900416856110b4565b600660019054906101000a90046001600160a01b03166001600160a01b031663791ac9478460008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156114fa5781810151838201526020016114e2565b505050509050019650505050505050600060405180830381600087803b15801561152357600080fd5b505af1158015611537573d6000803e3d6000fd5b5050505061154e824761182c90919063ffffffff16565b604080518581526020810183905281519294507fc7930294ac86944079f9f4a60abedac1187a74a770c6928ea39d9455ebeaf90f929081900390910190a1600f54479061159b9082611056565b600f556008546040805163e4fc6b6d60e01b815290516001600160a01b039092169163e4fc6b6d918491600480830192600092919082900301818588803b1580156115e557600080fd5b505af11580156115f9573d6000803e3d6000fd5b5050505050505050505b600e805460ff19169055565b60008261161e575060006107ee565b8282028284828161162b57fe5b04146108a55760405162461bcd60e51b81526004018080602001828103825260218152602001806119486021913960400191505060405180910390fd5b60008082116116be576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816116c757fe5b049392505050565b6001600160a01b0383166117145760405162461bcd60e51b81526004018080602001828103825260258152602001806119896025913960400191505060405180910390fd5b6001600160a01b0382166117595760405162461bcd60e51b815260040180806020018281038252602381526020018061188f6023913960400191505060405180910390fd5b611764838383611889565b6117a181604051806060016040528060268152602001611922602691396001600160a01b0386166000908152600160205260409020549190611298565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546117d09082611056565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611883576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d4f4e54453a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ec6f2107a6d8847ca349455f0b48476c004aa00fe65a1cdf244a24036889de2864736f6c634300060c0033
Deployed Bytecode
0x6080604052600436106101dc5760003560e01c806349bd5a5e11610102578063a457c2d711610095578063c4081a4c11610064578063c4081a4c14610676578063dd62ed3e146106a0578063e01af92c146106db578063f2fde38b14610707576101e3565b8063a457c2d7146105a7578063a5ae2d2f146105e0578063a9059cbb14610613578063afbec0fe1461064c576101e3565b806395d89b41116100d157806395d89b411461053557806398a0dd091461054a578063a071dcf41461055f578063a22d483214610574576101e3565b806349bd5a5e146104c357806370a08231146104d8578063715018a61461050b5780638da5cb5b14610520576101e3565b806323b872dd1161017a578063351a964d11610149578063351a964d14610425578063395093511461043a578063419adcd81461047357806347f2dc5b14610488576101e3565b806323b872dd146103565780632ffc1628146103995780633028f63a146103c7578063313ce567146103fa576101e3565b80630c56ae3b116101b65780630c56ae3b146102e65780631694505e1461031757806318160ddd1461032c5780631e6ee83014610341576101e3565b806302a71bde146101e857806306fdde031461020f578063095ea7b314610299576101e3565b366101e357005b600080fd5b3480156101f457600080fd5b506101fd61073a565b60408051918252519081900360200190f35b34801561021b57600080fd5b50610224610740565b6040805160208082528351818301528351919283929083019185019080838360005b8381101561025e578181015183820152602001610246565b50505050905090810190601f16801561028b5780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156102a557600080fd5b506102d2600480360360408110156102bc57600080fd5b506001600160a01b0381351690602001356107d6565b604080519115158252519081900360200190f35b3480156102f257600080fd5b506102fb6107f4565b604080516001600160a01b039092168252519081900360200190f35b34801561032357600080fd5b506102fb610803565b34801561033857600080fd5b506101fd610817565b34801561034d57600080fd5b506101fd61081d565b34801561036257600080fd5b506102d26004803603606081101561037957600080fd5b506001600160a01b03813581169160208101359091169060400135610823565b3480156103a557600080fd5b506103c5600480360360208110156103bc57600080fd5b503515156108ac565b005b3480156103d357600080fd5b506103c5600480360360208110156103ea57600080fd5b50356001600160a01b0316610921565b34801561040657600080fd5b5061040f610a1b565b6040805160ff9092168252519081900360200190f35b34801561043157600080fd5b506102d2610a24565b34801561044657600080fd5b506102d26004803603604081101561045d57600080fd5b506001600160a01b038135169060200135610a32565b34801561047f57600080fd5b506101fd610a80565b34801561049457600080fd5b506103c5600480360360408110156104ab57600080fd5b506001600160a01b0381351690602001351515610a86565b3480156104cf57600080fd5b506102fb610b13565b3480156104e457600080fd5b506101fd600480360360208110156104fb57600080fd5b50356001600160a01b0316610b22565b34801561051757600080fd5b506103c5610b3d565b34801561052c57600080fd5b506102fb610be9565b34801561054157600080fd5b50610224610bf8565b34801561055657600080fd5b506102d2610c59565b34801561056b57600080fd5b506101fd610c62565b34801561058057600080fd5b506103c56004803603602081101561059757600080fd5b50356001600160a01b0316610c68565b3480156105b357600080fd5b506102d2600480360360408110156105ca57600080fd5b506001600160a01b038135169060200135610cec565b3480156105ec57600080fd5b506102d26004803603602081101561060357600080fd5b50356001600160a01b0316610d54565b34801561061f57600080fd5b506102d26004803603604081101561063657600080fd5b506001600160a01b038135169060200135610d69565b34801561065857600080fd5b506103c56004803603602081101561066f57600080fd5b5035610d7d565b34801561068257600080fd5b506103c56004803603602081101561069957600080fd5b5035610de4565b3480156106ac57600080fd5b506101fd600480360360408110156106c357600080fd5b506001600160a01b0381358116916020013516610ead565b3480156106e757600080fd5b506103c5600480360360208110156106fe57600080fd5b50351515610ed8565b34801561071357600080fd5b506103c56004803603602081101561072a57600080fd5b50356001600160a01b0316610f54565b600f5481565b60048054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107cc5780601f106107a1576101008083540402835291602001916107cc565b820191906000526020600020905b8154815290600101906020018083116107af57829003601f168201915b5050505050905090565b60006107ea6107e36110b0565b84846110b4565b5060015b92915050565b6008546001600160a01b031681565b60065461010090046001600160a01b031681565b60035490565b600a5481565b60006108308484846111a0565b6008546001600160a01b03166108446110b0565b6001600160a01b0316141561085b575060016108a5565b6108a1846108676110b0565b61089c856040518060600160405280602881526020016118fa602891396108958a6108906110b0565b610ead565b9190611298565b6110b4565b5060015b9392505050565b6108b46110b0565b6001600160a01b03166108c5610be9565b6001600160a01b03161461090e576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600b805460ff1916911515919091179055565b6109296110b0565b6001600160a01b031661093a610be9565b6001600160a01b031614610983576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b6008546001600160a01b0316156109e1576040805162461bcd60e51b815260206004820152601960248201527f5374616b696e6720706f6f6c20616c7265616479207365742e00000000000000604482015290519081900360640190fd5b600880546001600160a01b039092166001600160a01b0319909216821790556000908152600c60205260409020805460ff19166001179055565b60065460ff1690565b600e54610100900460ff1681565b60006107ea610a3f6110b0565b8461089c8560026000610a506110b0565b6001600160a01b03908116825260208083019390935260409182016000908120918c168152925290205490611056565b600d5481565b610a8e6110b0565b6001600160a01b0316610a9f610be9565b6001600160a01b031614610ae8576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b6001600160a01b03919091166000908152600c60205260409020805460ff1916911515919091179055565b6007546001600160a01b031681565b6001600160a01b031660009081526001602052604090205490565b610b456110b0565b6001600160a01b0316610b56610be9565b6001600160a01b031614610b9f576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6000546001600160a01b031690565b60058054604080516020601f60026000196101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156107cc5780601f106107a1576101008083540402835291602001916107cc565b600b5460ff1681565b60095481565b610c706110b0565b6001600160a01b0316610c81610be9565b6001600160a01b031614610cca576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600780546001600160a01b0319166001600160a01b0392909216919091179055565b60006107ea610cf96110b0565b8461089c856040518060600160405280602581526020016119d26025913960026000610d236110b0565b6001600160a01b03908116825260208083019390935260409182016000908120918d16815292529020549190611298565b600c6020526000908152604090205460ff1681565b60006107ea610d766110b0565b84846111a0565b610d856110b0565b6001600160a01b0316610d96610be9565b6001600160a01b031614610ddf576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600d55565b610dec6110b0565b6001600160a01b0316610dfd610be9565b6001600160a01b031614610e46576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600081118015610e575750600a8111155b610ea8576040805162461bcd60e51b815260206004820152601c60248201527f4d4f4e54453a2054617820466565206f7574206f662072616e67652100000000604482015290519081900360640190fd5b600955565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b610ee06110b0565b6001600160a01b0316610ef1610be9565b6001600160a01b031614610f3a576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b600e80549115156101000261ff0019909216919091179055565b610f5c6110b0565b6001600160a01b0316610f6d610be9565b6001600160a01b031614610fb6576040805162461bcd60e51b81526020600482018190526024820152600080516020611969833981519152604482015290519081900360640190fd5b6001600160a01b038116610ffb5760405162461bcd60e51b81526004018080602001828103825260268152602001806118b26026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b6000828201838110156108a5576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b3390565b6001600160a01b0383166110f95760405162461bcd60e51b81526004018080602001828103825260248152602001806119ae6024913960400191505060405180910390fd5b6001600160a01b03821661113e5760405162461bcd60e51b81526004018080602001828103825260228152602001806118d86022913960400191505060405180910390fd5b6001600160a01b03808416600081815260026020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b600e54610100900460ff1680156111ba5750600e5460ff16155b80156111d457506007546001600160a01b03848116911614155b156111e1576111e161132f565b600b54819060ff16801561120e57506001600160a01b0384166000908152600c602052604090205460ff16155b801561123357506001600160a01b0383166000908152600c602052604090205460ff16155b1561128757600061125b6127106112556009548661160f90919063ffffffff16565b90611668565b90506112688530836116cf565b611272838261182c565b600a549092506112829082611056565b600a55505b6112928484836116cf565b50505050565b600081848411156113275760405162461bcd60e51b81526004018080602001828103825283818151815260200191508051906020019080838360005b838110156112ec5781810151838201526020016112d4565b50505050905090810190601f1680156113195780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b505050900390565b600e805460ff19166001179055600061134730610b22565b9050600d548110156113595750611603565b60408051600280825260608083018452479390929190602083019080368337019050509050308160008151811061138c57fe5b60200260200101906001600160a01b031690816001600160a01b031681525050600660019054906101000a90046001600160a01b03166001600160a01b031663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b1580156113fa57600080fd5b505afa15801561140e573d6000803e3d6000fd5b505050506040513d602081101561142457600080fd5b505181518290600190811061143557fe5b6001600160a01b039283166020918202929092010152600654611460913091610100900416856110b4565b600660019054906101000a90046001600160a01b03166001600160a01b031663791ac9478460008430426040518663ffffffff1660e01b81526004018086815260200185815260200180602001846001600160a01b03168152602001838152602001828103825285818151815260200191508051906020019060200280838360005b838110156114fa5781810151838201526020016114e2565b505050509050019650505050505050600060405180830381600087803b15801561152357600080fd5b505af1158015611537573d6000803e3d6000fd5b5050505061154e824761182c90919063ffffffff16565b604080518581526020810183905281519294507fc7930294ac86944079f9f4a60abedac1187a74a770c6928ea39d9455ebeaf90f929081900390910190a1600f54479061159b9082611056565b600f556008546040805163e4fc6b6d60e01b815290516001600160a01b039092169163e4fc6b6d918491600480830192600092919082900301818588803b1580156115e557600080fd5b505af11580156115f9573d6000803e3d6000fd5b5050505050505050505b600e805460ff19169055565b60008261161e575060006107ee565b8282028284828161162b57fe5b04146108a55760405162461bcd60e51b81526004018080602001828103825260218152602001806119486021913960400191505060405180910390fd5b60008082116116be576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b8183816116c757fe5b049392505050565b6001600160a01b0383166117145760405162461bcd60e51b81526004018080602001828103825260258152602001806119896025913960400191505060405180910390fd5b6001600160a01b0382166117595760405162461bcd60e51b815260040180806020018281038252602381526020018061188f6023913960400191505060405180910390fd5b611764838383611889565b6117a181604051806060016040528060268152602001611922602691396001600160a01b0386166000908152600160205260409020549190611298565b6001600160a01b0380851660009081526001602052604080822093909355908416815220546117d09082611056565b6001600160a01b0380841660008181526001602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b600082821115611883576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b50505056fe45524332303a207472616e7366657220746f20746865207a65726f20616464726573734f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d4f4e54453a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657245524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ec6f2107a6d8847ca349455f0b48476c004aa00fe65a1cdf244a24036889de2864736f6c634300060c0033
Deployed Bytecode Sourcemap
30629:3986:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31113:34;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;15796:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17942:169;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17942:169:0;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;30804:26;;;;;;;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;30804:26:0;;;;;;;;;;;;;;30717:42;;;;;;;;;;;;;:::i;16895:108::-;;;;;;;;;;;;;:::i;30871:26::-;;;;;;;;;;;;;:::i;32596:363::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;32596:363:0;;;;;;;;;;;;;;;;;:::i;31714:93::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31714:93:0;;;;:::i;:::-;;32116:235;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32116:235:0;-1:-1:-1;;;;;32116:235:0;;:::i;16739:91::-;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;31068:32;;;;;;;;;;;;;:::i;19323:218::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;19323:218:0;;;;;;;;:::i;30994:41::-;;;;;;;;;;;;;:::i;31815:115::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;31815:115:0;;;;;;;;;;:::i;30766:29::-;;;;;;;;;;;;;:::i;17066:127::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;17066:127:0;-1:-1:-1;;;;;17066:127:0;;:::i;10256:148::-;;;;;;;;;;;;;:::i;9605:87::-;;;;;;;;;;;;;:::i;16006:95::-;;;;;;;;;;;;;:::i;30906:31::-;;;;;;;;;;;;;:::i;30837:27::-;;;;;;;;;;;;;:::i;31606:96::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31606:96:0;-1:-1:-1;;;;;31606:96:0;;:::i;20044:269::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;20044:269:0;;;;;;;;:::i;30944:41::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30944:41:0;-1:-1:-1;;;;;30944:41:0;;:::i;17406:175::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17406:175:0;;;;;;;;:::i;32472:112::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32472:112:0;;:::i;31938:170::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31938:170:0;;:::i;17644:151::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;;17644:151:0;;;;;;;;;;:::i;32363:97::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;32363:97:0;;;;:::i;10559:244::-;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;10559:244:0;-1:-1:-1;;;;;10559:244:0;;:::i;31113:34::-;;;;:::o;15796:91::-;15874:5;15867:12;;;;;;;;-1:-1:-1;;15867:12:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15841:13;;15867:12;;15874:5;;15867:12;;15874:5;15867:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15796:91;:::o;17942:169::-;18025:4;18042:39;18051:12;:10;:12::i;:::-;18065:7;18074:6;18042:8;:39::i;:::-;-1:-1:-1;18099:4:0;17942:169;;;;;:::o;30804:26::-;;;-1:-1:-1;;;;;30804:26:0;;:::o;30717:42::-;;;;;;-1:-1:-1;;;;;30717:42:0;;:::o;16895:108::-;16983:12;;16895:108;:::o;30871:26::-;;;;:::o;32596:363::-;32691:4;32708:36;32718:6;32726:9;32737:6;32708:9;:36::i;:::-;32774:11;;-1:-1:-1;;;;;32774:11:0;32758:12;:10;:12::i;:::-;-1:-1:-1;;;;;32758:27:0;;32755:43;;;-1:-1:-1;32794:4:0;32787:11;;32755:43;32811:118;32820:6;32828:12;:10;:12::i;:::-;32842:86;32877:6;32842:86;;;;;;;;;;;;;;;;;:30;32852:6;32859:12;:10;:12::i;:::-;32842:9;:30::i;:::-;:34;:86;:34;:86::i;:::-;32811:8;:118::i;:::-;-1:-1:-1;32947:4:0;32596:363;;;;;;:::o;31714:93::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;31779:11:::1;:20:::0;;-1:-1:-1;;31779:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31714:93::o;32116:235::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;32200:11:::1;::::0;-1:-1:-1;;;;;32200:11:0::1;:25:::0;32192:63:::1;;;::::0;;-1:-1:-1;;;32192:63:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32276:11;:26:::0;;-1:-1:-1;;;;;32276:26:0;;::::1;-1:-1:-1::0;;;;;;32276:26:0;;::::1;::::0;::::1;::::0;;:11:::1;32313:23:::0;;;:9:::1;:23;::::0;;;;:30;;-1:-1:-1;;32313:30:0::1;32276:26:::0;32313:30:::1;::::0;;32116:235::o;16739:91::-;16813:9;;;;16739:91;:::o;31068:32::-;;;;;;;;;:::o;19323:218::-;19411:4;19428:83;19437:12;:10;:12::i;:::-;19451:7;19460:50;19499:10;19460:11;:25;19472:12;:10;:12::i;:::-;-1:-1:-1;;;;;19460:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;19460:25:0;;;:34;;;;;;;;;;;:38;:50::i;30994:41::-;;;;:::o;31815:115::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;31895:18:0;;;::::1;;::::0;;;:9:::1;:18;::::0;;;;:27;;-1:-1:-1;;31895:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;31815:115::o;30766:29::-;;;-1:-1:-1;;;;;30766:29:0;;:::o;17066:127::-;-1:-1:-1;;;;;17167:18:0;17140:7;17167:18;;;:9;:18;;;;;;;17066:127::o;10256:148::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;10363:1:::1;10347:6:::0;;10326:40:::1;::::0;-1:-1:-1;;;;;10347:6:0;;::::1;::::0;10326:40:::1;::::0;10363:1;;10326:40:::1;10394:1;10377:19:::0;;-1:-1:-1;;;;;;10377:19:0::1;::::0;;10256:148::o;9605:87::-;9651:7;9678:6;-1:-1:-1;;;;;9678:6:0;9605:87;:::o;16006:95::-;16086:7;16079:14;;;;;;;;-1:-1:-1;;16079:14:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16053:13;;16079:14;;16086:7;;16079:14;;16086:7;16079:14;;;;;;;;;;;;;;;;;;;;;;;;30906:31;;;;;;:::o;30837:27::-;;;;:::o;31606:96::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;31674:13:::1;:20:::0;;-1:-1:-1;;;;;;31674:20:0::1;-1:-1:-1::0;;;;;31674:20:0;;;::::1;::::0;;;::::1;::::0;;31606:96::o;20044:269::-;20137:4;20154:129;20163:12;:10;:12::i;:::-;20177:7;20186:96;20225:15;20186:96;;;;;;;;;;;;;;;;;:11;:25;20198:12;:10;:12::i;:::-;-1:-1:-1;;;;;20186:25:0;;;;;;;;;;;;;;;;;-1:-1:-1;20186:25:0;;;:34;;;;;;;;;;;:96;:38;:96::i;30944:41::-;;;;;;;;;;;;;;;:::o;17406:175::-;17492:4;17509:42;17519:12;:10;:12::i;:::-;17533:9;17544:6;17509:9;:42::i;32472:112::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;32549:18:::1;:27:::0;32472:112::o;31938:170::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;32022:1:::1;32012:7;:11;:28;;;;;32038:2;32027:7;:13;;32012:28;32004:69;;;::::0;;-1:-1:-1;;;32004:69:0;;::::1;;::::0;::::1;::::0;::::1;::::0;;;;::::1;::::0;;;;;;;;;;;;;::::1;;32084:6;:16:::0;31938:170::o;17644:151::-;-1:-1:-1;;;;;17760:18:0;;;17733:7;17760:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;17644:151::o;32363:97::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;32430:13:::1;:22:::0;;;::::1;;;;-1:-1:-1::0;;32430:22:0;;::::1;::::0;;;::::1;::::0;;32363:97::o;10559:244::-;9836:12;:10;:12::i;:::-;-1:-1:-1;;;;;9825:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;9825:23:0;;9817:68;;;;;-1:-1:-1;;;9817:68:0;;;;;;;;;;;;;-1:-1:-1;;;;;;;;;;;9817:68:0;;;;;;;;;;;;;;;-1:-1:-1;;;;;10648:22:0;::::1;10640:73;;;;-1:-1:-1::0;;;10640:73:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10750:6;::::0;;10729:38:::1;::::0;-1:-1:-1;;;;;10729:38:0;;::::1;::::0;10750:6;::::1;::::0;10729:38:::1;::::0;::::1;10778:6;:17:::0;;-1:-1:-1;;;;;;10778:17:0::1;-1:-1:-1::0;;;;;10778:17:0;;;::::1;::::0;;;::::1;::::0;;10559:244::o;2828:179::-;2886:7;2918:5;;;2942:6;;;;2934:46;;;;;-1:-1:-1;;;2934:46:0;;;;;;;;;;;;;;;;;;;;;;;;;;;8142:106;8230:10;8142:106;:::o;23191:346::-;-1:-1:-1;;;;;23293:19:0;;23285:68;;;;-1:-1:-1;;;23285:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23372:21:0;;23364:68;;;;-1:-1:-1;;;23364:68:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;23445:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;23497:32;;;;;;;;;;;;;;;;;23191:346;;;:::o;32967:606::-;33069:13;;;;;;;:24;;;;-1:-1:-1;33087:6:0;;;;33086:7;33069:24;:51;;;;-1:-1:-1;33107:13:0;;-1:-1:-1;;;;;33097:23:0;;;33107:13;;33097:23;;33069:51;33066:101;;;33136:19;:17;:19::i;:::-;33222:11;;33202:6;;33222:11;;:33;;;;-1:-1:-1;;;;;;33238:17:0;;;;;;:9;:17;;;;;;;;33237:18;33222:33;:58;;;;-1:-1:-1;;;;;;33260:20:0;;;;;;:9;:20;;;;;;;;33259:21;33222:58;33219:286;;;33297:11;33311:30;33334:6;33311:18;33322:6;;33311;:10;;:18;;;;:::i;:::-;:22;;:30::i;:::-;33297:44;;33356:41;33372:6;33387:4;33393:3;33356:15;:41::i;:::-;33429:15;:6;33440:3;33429:10;:15::i;:::-;33473:11;;33412:32;;-1:-1:-1;33473:20:0;;33489:3;33473:15;:20::i;:::-;33459:11;:34;-1:-1:-1;33219:286:0;33515:50;33531:6;33539:9;33550:14;33515:15;:50::i;:::-;32967:606;;;;:::o;5655:166::-;5741:7;5777:12;5769:6;;;;5761:29;;;;-1:-1:-1;;;5761:29:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;5808:5:0;;;5655:166::o;33583:988::-;31260:6;:13;;-1:-1:-1;;31260:13:0;31269:4;31260:13;;;:6;33665:24:::1;33683:4;33665:9;:24::i;:::-;33643:46;;33717:18;;33703:11;:32;33700:44;;;33737:7;;;33700:44;33842:16;::::0;;33856:1:::1;33842:16:::0;;;33818:21:::1;33842:16:::0;;::::1;::::0;;33776:21:::1;::::0;33818;;33842:16;33856:1;33842:16:::1;::::0;::::1;::::0;;::::1;::::0;::::1;;::::0;-1:-1:-1;33842:16:0::1;33818:40;;33887:4;33869;33874:1;33869:7;;;;;;;;;;;;;:23;-1:-1:-1::0;;;;;33869:23:0::1;;;-1:-1:-1::0;;;;;33869:23:0::1;;;::::0;::::1;33913:15;;;;;;;;;-1:-1:-1::0;;;;;33913:15:0::1;-1:-1:-1::0;;;;;33913:20:0::1;;:22;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;-1:-1:-1::0;33913:22:0;33903:7;;:4;;33908:1:::1;::::0;33903:7;::::1;;;;;-1:-1:-1::0;;;;;33903:32:0;;::::1;:7;::::0;;::::1;::::0;;;;;:32;33980:15:::1;::::0;33948:62:::1;::::0;33965:4:::1;::::0;33980:15:::1;::::0;::::1;;33998:11:::0;33948:8:::1;:62::i;:::-;34023:15;;;;;;;;;-1:-1:-1::0;;;;;34023:15:0::1;-1:-1:-1::0;;;;;34023:66:0::1;;34104:11;34130:1;34146:4;34173;34193:15;34023:196;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1::0;;;;;34023:196:0::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;;::::1;::::0;;;::::1;::::0;::::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;34252:36;34278:9;34252:21;:25;;:36;;;;:::i;:::-;34304:40;::::0;;;;;::::1;::::0;::::1;::::0;;;;;34240:48;;-1:-1:-1;34304:40:0::1;::::0;;;;;;;;;::::1;34448:19;::::0;34394:21:::1;::::0;34448:43:::1;::::0;34394:21;34448:23:::1;:43::i;:::-;34426:19;:65:::0;34511:11:::1;::::0;34502:61:::1;::::0;;-1:-1:-1;;;34502:61:0;;;;-1:-1:-1;;;;;34511:11:0;;::::1;::::0;34502:32:::1;::::0;34542:18;;34502:61:::1;::::0;;::::1;::::0;34511:11:::1;::::0;34502:61;;;;;;;34542:18;34511:11;34502:61;::::1;;::::0;::::1;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;31284:1;;;;;31296:6:::0;:14;;-1:-1:-1;;31296:14:0;;;33583:988::o;3707:220::-;3765:7;3789:6;3785:20;;-1:-1:-1;3804:1:0;3797:8;;3785:20;3828:5;;;3832:1;3828;:5;:1;3852:5;;;;;:10;3844:56;;;;-1:-1:-1;;;3844:56:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4405:153;4463:7;4495:1;4491;:5;4483:44;;;;;-1:-1:-1;;;4483:44:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;4549:1;4545;:5;;;;;;;4405:153;-1:-1:-1;;;4405:153:0:o;20803:539::-;-1:-1:-1;;;;;20909:20:0;;20901:70;;;;-1:-1:-1;;;20901:70:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;20990:23:0;;20982:71;;;;-1:-1:-1;;;20982:71:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21066:47;21087:6;21095:9;21106:6;21066:20;:47::i;:::-;21146:71;21168:6;21146:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;21146:17:0;;;;;;:9;:17;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;21126:17:0;;;;;;;:9;:17;;;;;;:91;;;;21251:20;;;;;;;:32;;21276:6;21251:24;:32::i;:::-;-1:-1:-1;;;;;21228:20:0;;;;;;;:9;:20;;;;;;;;;:55;;;;21299:35;;;;;;;21228:20;;21299:35;;;;;;;;;;;;;20803:539;;;:::o;3290:158::-;3348:7;3381:1;3376;:6;;3368:49;;;;;-1:-1:-1;;;3368:49:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;3435:5:0;;;3290:158::o;24570:92::-;;;;:::o
Swarm Source
ipfs://ec6f2107a6d8847ca349455f0b48476c004aa00fe65a1cdf244a24036889de28
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.