More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 62,597 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 18874307 | 19 days ago | IN | 0 CRO | 0.16721861 | ||||
Approve | 18608343 | 36 days ago | IN | 0 CRO | 0.11034254 | ||||
Approve | 18324554 | 55 days ago | IN | 0 CRO | 0.1121967 | ||||
Approve | 18174227 | 65 days ago | IN | 0 CRO | 0.27078049 | ||||
Approve | 18136677 | 67 days ago | IN | 0 CRO | 0.1471671 | ||||
Approve | 18070817 | 71 days ago | IN | 0 CRO | 0.27869769 | ||||
Approve | 18021535 | 75 days ago | IN | 0 CRO | 0.24525397 | ||||
Approve | 18010981 | 75 days ago | IN | 0 CRO | 0.22295815 | ||||
Approve | 17956230 | 79 days ago | IN | 0 CRO | 0.1515384 | ||||
Approve | 17956228 | 79 days ago | IN | 0 CRO | 0.1515384 | ||||
Approve | 17955735 | 79 days ago | IN | 0 CRO | 0.1515384 | ||||
Approve | 17955732 | 79 days ago | IN | 0 CRO | 0.1515384 | ||||
Approve | 17955205 | 79 days ago | IN | 0 CRO | 0.1330271 | ||||
Approve | 17955200 | 79 days ago | IN | 0 CRO | 0.14801922 | ||||
Approve | 17955056 | 79 days ago | IN | 0 CRO | 0.1330271 | ||||
Approve | 17955039 | 79 days ago | IN | 0 CRO | 0.1471671 | ||||
Approve | 17954965 | 79 days ago | IN | 0 CRO | 0.1544526 | ||||
Approve | 17954917 | 79 days ago | IN | 0 CRO | 0.1330271 | ||||
Approve | 17954901 | 79 days ago | IN | 0 CRO | 0.1471671 | ||||
Approve | 17954892 | 79 days ago | IN | 0 CRO | 0.1544526 | ||||
Approve | 17954891 | 79 days ago | IN | 0 CRO | 0.1471671 | ||||
Approve | 17954889 | 79 days ago | IN | 0 CRO | 0.1471671 | ||||
Approve | 17954573 | 79 days ago | IN | 0 CRO | 0.1471671 | ||||
Approve | 17954474 | 79 days ago | IN | 0 CRO | 0.1515384 | ||||
Approve | 17954472 | 79 days ago | IN | 0 CRO | 0.1515384 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17167528 | 131 days ago | 10 CRO | ||||
17167525 | 131 days ago | 10 CRO | ||||
17167524 | 131 days ago | 10 CRO | ||||
17167522 | 131 days ago | 10 CRO | ||||
17167521 | 131 days ago | 10 CRO | ||||
17167512 | 131 days ago | 10 CRO | ||||
17167509 | 131 days ago | 10 CRO | ||||
17167504 | 131 days ago | 10 CRO | ||||
17167503 | 131 days ago | 10 CRO | ||||
17167497 | 131 days ago | 10 CRO | ||||
17167495 | 131 days ago | 10 CRO | ||||
17167492 | 131 days ago | 10 CRO | ||||
17167490 | 131 days ago | 10 CRO | ||||
17167460 | 131 days ago | 10 CRO | ||||
17167447 | 131 days ago | 10 CRO | ||||
17167446 | 131 days ago | 10 CRO | ||||
17167444 | 131 days ago | 10 CRO | ||||
17167017 | 131 days ago | 10 CRO | ||||
17167009 | 131 days ago | 10 CRO | ||||
17167007 | 131 days ago | 10 CRO | ||||
17167005 | 131 days ago | 10 CRO | ||||
17167004 | 131 days ago | 10 CRO | ||||
17166998 | 131 days ago | 10 CRO | ||||
17166992 | 131 days ago | 10 CRO | ||||
17166991 | 131 days ago | 10 CRO |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
FrogsPoints
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at cronoscan.com on 2024-12-09 */ /** *Submitted for verification at cronoscan.com on 2022-01-08 */ // SPDX-License-Identifier: MIT pragma solidity 0.6.12; /** * @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; } } /* * @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; } } /** * @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); } /** * @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 { } } /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { using SafeMath for uint256; /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { uint256 decreasedAllowance = allowance(account, _msgSender()).sub(amount, "ERC20: burn amount exceeds allowance"); _approve(account, _msgSender(), decreasedAllowance); _burn(account, amount); } } /** * @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; } } contract Operator is Context, Ownable { address private _operator; event OperatorTransferred(address indexed previousOperator, address indexed newOperator); constructor() internal { _operator = _msgSender(); emit OperatorTransferred(address(0), _operator); } function operator() public view returns (address) { return _operator; } modifier onlyOperator() { require(_operator == msg.sender, "operator: caller is not the operator"); _; } function isOperator() public view returns (bool) { return _msgSender() == _operator; } function transferOperator(address newOperator_) public onlyOwner { _transferOperator(newOperator_); } function _transferOperator(address newOperator_) internal { require(newOperator_ != address(0), "operator: zero address given for new operator"); emit OperatorTransferred(address(0), newOperator_); _operator = newOperator_; } } contract FrogsPoints is ERC20Burnable, Operator { using SafeMath for uint256; address public treasuryFund; // Exchange settings bool public exchangeActive = true; uint256 public croAmountRequired = 10 * 1e18; // Default: 10 CRO uint256 public frogsRewardAmount = 2000 * 1e18; // Default: 2000 FROGS // Events event Exchanged(address indexed user, uint256 croAmount, uint256 frogsReward); constructor(address _treasuryFund) public ERC20("FROGS Points", "FROGSP") { require(_treasuryFund != address(0), "Address cannot be 0"); treasuryFund = _treasuryFund; } function setTreasuryFund(address _treasuryFund) external onlyOperator { require(_treasuryFund != address(0), "zero"); treasuryFund = _treasuryFund; } // Function to update exchange settings function setExchangeSettings(uint256 _croAmountRequired, uint256 _frogsRewardAmount) external onlyOwner { croAmountRequired = _croAmountRequired; frogsRewardAmount = _frogsRewardAmount; } // Function to toggle exchange activity function toggleExchangeActive() external onlyOwner { exchangeActive = !exchangeActive; } function mint(address to, uint256 amount) external onlyOperator { _mint(to, amount); } function burn(uint256 amount) public override { super.burn(amount); } // Exchange CRO for FROGS Points function exchange() external payable { require(exchangeActive, "Exchange is currently paused"); require(msg.value == croAmountRequired, "Incorrect CRO amount sent"); require(treasuryFund != address(0), "Treasury address is not set"); // Send CRO to the treasury payable(treasuryFund).transfer(msg.value); // Mint FROGS Points to the sender _mint(msg.sender, frogsRewardAmount); emit Exchanged(msg.sender, msg.value, frogsRewardAmount); } function governanceRecoverUnsupported( IERC20 _token, uint256 _amount, address _to ) external onlyOperator { _token.transfer(_to, _amount); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_treasuryFund","type":"address"}],"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":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"croAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"frogsReward","type":"uint256"}],"name":"Exchanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOperator","type":"address"},{"indexed":true,"internalType":"address","name":"newOperator","type":"address"}],"name":"OperatorTransferred","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":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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"croAmountRequired","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":[],"name":"exchange","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"exchangeActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"frogsRewardAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"_token","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_to","type":"address"}],"name":"governanceRecoverUnsupported","outputs":[],"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":"isOperator","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"operator","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"_croAmountRequired","type":"uint256"},{"internalType":"uint256","name":"_frogsRewardAmount","type":"uint256"}],"name":"setExchangeSettings","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_treasuryFund","type":"address"}],"name":"setTreasuryFund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleExchangeActive","outputs":[],"stateMutability":"nonpayable","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":"newOperator_","type":"address"}],"name":"transferOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"treasuryFund","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040526001600760146101000a81548160ff021916908315150217905550678ac7230489e80000600855686c6b935b8bbd4000006009553480156200004557600080fd5b5060405162002ea238038062002ea2833981810160405260208110156200006b57600080fd5b81019080805190602001909291905050506040518060400160405280600c81526020017f46524f475320506f696e747300000000000000000000000000000000000000008152506040518060400160405280600681526020017f46524f4753500000000000000000000000000000000000000000000000000000815250816003908051906020019062000100929190620003aa565b50806004908051906020019062000119929190620003aa565b506012600560006101000a81548160ff021916908360ff160217905550505060006200014a620003a260201b60201c565b905080600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a350620001f9620003a260201b60201c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a3600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156200035a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260138152602001807f416464726573732063616e6e6f7420626520300000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505062000450565b600033905090565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10620003ed57805160ff19168380011785556200041e565b828001600101855582156200041e579182015b828111156200041d57825182559160200191906001019062000400565b5b5090506200042d919062000431565b5090565b5b808211156200044c57600081600090555060010162000432565b5090565b612a4280620004606000396000f3fe6080604052600436106101c25760003560e01c8063715018a6116100f7578063a9059cbb11610095578063e0c4f12d11610064578063e0c4f12d146109d4578063f2fde38b14610a15578063f746b71814610a66578063f7d6f38714610ab7576101c2565b8063a9059cbb1461088f578063d2f7265a14610900578063d96605961461090a578063dd62ed3e1461094f576101c2565b806392b8bc62116100d157806392b8bc621461073657806395d89b4114610763578063a2f7d8e4146107f3578063a457c2d71461081e576101c2565b8063715018a61461068357806379cc67901461069a5780638da5cb5b146106f5576101c2565b806340c10f191161016457806352e739461161013e57806352e739461461053757806354575af414610562578063570ca735146105dd57806370a082311461061e576101c2565b806340c10f191461047457806342966c68146104cf5780634456eda21461050a576101c2565b806323b872dd116101a057806323b872dd146102f357806329605e7714610384578063313ce567146103d55780633950935114610403576101c2565b806306fdde03146101c7578063095ea7b31461025757806318160ddd146102c8575b600080fd5b3480156101d357600080fd5b506101dc610ace565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026357600080fd5b506102b06004803603604081101561027a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b70565b60405180821515815260200191505060405180910390f35b3480156102d457600080fd5b506102dd610b8e565b6040518082815260200191505060405180910390f35b3480156102ff57600080fd5b5061036c6004803603606081101561031657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b98565b60405180821515815260200191505060405180910390f35b34801561039057600080fd5b506103d3600480360360208110156103a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c71565b005b3480156103e157600080fd5b506103ea610d2c565b604051808260ff16815260200191505060405180910390f35b34801561040f57600080fd5b5061045c6004803603604081101561042657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d43565b60405180821515815260200191505060405180910390f35b34801561048057600080fd5b506104cd6004803603604081101561049757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df6565b005b3480156104db57600080fd5b50610508600480360360208110156104f257600080fd5b8101908080359060200190929190505050610eaa565b005b34801561051657600080fd5b5061051f610eb6565b60405180821515815260200191505060405180910390f35b34801561054357600080fd5b5061054c610f15565b6040518082815260200191505060405180910390f35b34801561056e57600080fd5b506105db6004803603606081101561058557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f1b565b005b3480156105e957600080fd5b506105f2611073565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561062a57600080fd5b5061066d6004803603602081101561064157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061109d565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b506106986110e5565b005b3480156106a657600080fd5b506106f3600480360360408110156106bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611255565b005b34801561070157600080fd5b5061070a6112b7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074257600080fd5b5061074b6112e1565b60405180821515815260200191505060405180910390f35b34801561076f57600080fd5b506107786112f4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107b857808201518184015260208101905061079d565b50505050905090810190601f1680156107e55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107ff57600080fd5b50610808611396565b6040518082815260200191505060405180910390f35b34801561082a57600080fd5b506108776004803603604081101561084157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061139c565b60405180821515815260200191505060405180910390f35b34801561089b57600080fd5b506108e8600480360360408110156108b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611469565b60405180821515815260200191505060405180910390f35b610908611487565b005b34801561091657600080fd5b5061094d6004803603604081101561092d57600080fd5b810190808035906020019092919080359060200190929190505050611714565b005b34801561095b57600080fd5b506109be6004803603604081101561097257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117d5565b6040518082815260200191505060405180910390f35b3480156109e057600080fd5b506109e961185c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a2157600080fd5b50610a6460048036036020811015610a3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611882565b005b348015610a7257600080fd5b50610ab560048036036020811015610a8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a77565b005b348015610ac357600080fd5b50610acc611c04565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b84610b7d611cdf565b8484611ce7565b6001905092915050565b6000600254905090565b6000610ba5848484611ede565b610c6684610bb1611cdf565b610c618560405180606001604052806028815260200161290e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c17611cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461219f9092919063ffffffff16565b611ce7565b600190509392505050565b610c79611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610c976112b7565b73ffffffffffffffffffffffffffffffffffffffff1614610d20576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610d2981612259565b50565b6000600560009054906101000a900460ff16905090565b6000610dec610d50611cdf565b84610de78560016000610d61611cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237e90919063ffffffff16565b611ce7565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061295a6024913960400191505060405180910390fd5b610ea68282612406565b5050565b610eb3816125cd565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ef9611cdf565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061295a6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561103257600080fd5b505af1158015611046573d6000803e3d6000fd5b505050506040513d602081101561105c57600080fd5b810190808051906020019092919050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ed611cdf565b73ffffffffffffffffffffffffffffffffffffffff1661110b6112b7565b73ffffffffffffffffffffffffffffffffffffffff1614611194576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611294826040518060600160405280602481526020016129366024913961128586611280611cdf565b6117d5565b61219f9092919063ffffffff16565b90506112a8836112a2611cdf565b83611ce7565b6112b283836125e1565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760149054906101000a900460ff1681565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561138c5780601f106113615761010080835404028352916020019161138c565b820191906000526020600020905b81548152906001019060200180831161136f57829003601f168201915b5050505050905090565b60085481565b600061145f6113a9611cdf565b8461145a856040518060600160405280602581526020016129e860259139600160006113d3611cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461219f9092919063ffffffff16565b611ce7565b6001905092915050565b600061147d611476611cdf565b8484611ede565b6001905092915050565b600760149054906101000a900460ff16611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f45786368616e67652069732063757272656e746c79207061757365640000000081525060200191505060405180910390fd5b6008543414611580576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f496e636f72726563742043524f20616d6f756e742073656e740000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f54726561737572792061646472657373206973206e6f7420736574000000000081525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156116ad573d6000803e3d6000fd5b506116ba33600954612406565b3373ffffffffffffffffffffffffffffffffffffffff167f98e5a745dfe4f0a8952c2d09eeb25746ce9768004ab459c980d7ad1b5152cbd834600954604051808381526020018281526020019250505060405180910390a2565b61171c611cdf565b73ffffffffffffffffffffffffffffffffffffffff1661173a6112b7565b73ffffffffffffffffffffffffffffffffffffffff16146117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600881905550806009819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61188a611cdf565b73ffffffffffffffffffffffffffffffffffffffff166118a86112b7565b73ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128736026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061295a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f7a65726f0000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c0c611cdf565b73ffffffffffffffffffffffffffffffffffffffff16611c2a6112b7565b73ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806129c46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806128996022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061299f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061282e6023913960400191505060405180910390fd5b611ff58383836127a5565b612060816040518060600160405280602681526020016128bb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461219f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120f3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061224c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122115780820151818401526020810190506121f6565b50505050905090810190601f16801561223e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806128e1602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156123fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6124b5600083836127a5565b6124ca8160025461237e90919063ffffffff16565b600281905550612521816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6125de6125d8611cdf565b826125e1565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061297e6021913960400191505060405180910390fd5b612673826000836127a5565b6126de81604051806060016040528060228152602001612851602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461219f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612735816002546127aa90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600082821115612822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b81830390509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f7245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce6f70b0e4906c666e3e862b2d3db117bf5f9803349774bf51542eac13b48f5864736f6c634300060c003300000000000000000000000030a0898fa61b6ebd71ec2566fc7ee7cd6f73953e
Deployed Bytecode
0x6080604052600436106101c25760003560e01c8063715018a6116100f7578063a9059cbb11610095578063e0c4f12d11610064578063e0c4f12d146109d4578063f2fde38b14610a15578063f746b71814610a66578063f7d6f38714610ab7576101c2565b8063a9059cbb1461088f578063d2f7265a14610900578063d96605961461090a578063dd62ed3e1461094f576101c2565b806392b8bc62116100d157806392b8bc621461073657806395d89b4114610763578063a2f7d8e4146107f3578063a457c2d71461081e576101c2565b8063715018a61461068357806379cc67901461069a5780638da5cb5b146106f5576101c2565b806340c10f191161016457806352e739461161013e57806352e739461461053757806354575af414610562578063570ca735146105dd57806370a082311461061e576101c2565b806340c10f191461047457806342966c68146104cf5780634456eda21461050a576101c2565b806323b872dd116101a057806323b872dd146102f357806329605e7714610384578063313ce567146103d55780633950935114610403576101c2565b806306fdde03146101c7578063095ea7b31461025757806318160ddd146102c8575b600080fd5b3480156101d357600080fd5b506101dc610ace565b6040518080602001828103825283818151815260200191508051906020019080838360005b8381101561021c578082015181840152602081019050610201565b50505050905090810190601f1680156102495780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b34801561026357600080fd5b506102b06004803603604081101561027a57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b70565b60405180821515815260200191505060405180910390f35b3480156102d457600080fd5b506102dd610b8e565b6040518082815260200191505060405180910390f35b3480156102ff57600080fd5b5061036c6004803603606081101561031657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610b98565b60405180821515815260200191505060405180910390f35b34801561039057600080fd5b506103d3600480360360208110156103a757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610c71565b005b3480156103e157600080fd5b506103ea610d2c565b604051808260ff16815260200191505060405180910390f35b34801561040f57600080fd5b5061045c6004803603604081101561042657600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610d43565b60405180821515815260200191505060405180910390f35b34801561048057600080fd5b506104cd6004803603604081101561049757600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050610df6565b005b3480156104db57600080fd5b50610508600480360360208110156104f257600080fd5b8101908080359060200190929190505050610eaa565b005b34801561051657600080fd5b5061051f610eb6565b60405180821515815260200191505060405180910390f35b34801561054357600080fd5b5061054c610f15565b6040518082815260200191505060405180910390f35b34801561056e57600080fd5b506105db6004803603606081101561058557600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050610f1b565b005b3480156105e957600080fd5b506105f2611073565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561062a57600080fd5b5061066d6004803603602081101561064157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919050505061109d565b6040518082815260200191505060405180910390f35b34801561068f57600080fd5b506106986110e5565b005b3480156106a657600080fd5b506106f3600480360360408110156106bd57600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611255565b005b34801561070157600080fd5b5061070a6112b7565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b34801561074257600080fd5b5061074b6112e1565b60405180821515815260200191505060405180910390f35b34801561076f57600080fd5b506107786112f4565b6040518080602001828103825283818151815260200191508051906020019080838360005b838110156107b857808201518184015260208101905061079d565b50505050905090810190601f1680156107e55780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b3480156107ff57600080fd5b50610808611396565b6040518082815260200191505060405180910390f35b34801561082a57600080fd5b506108776004803603604081101561084157600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff1690602001909291908035906020019092919050505061139c565b60405180821515815260200191505060405180910390f35b34801561089b57600080fd5b506108e8600480360360408110156108b257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff16906020019092919080359060200190929190505050611469565b60405180821515815260200191505060405180910390f35b610908611487565b005b34801561091657600080fd5b5061094d6004803603604081101561092d57600080fd5b810190808035906020019092919080359060200190929190505050611714565b005b34801561095b57600080fd5b506109be6004803603604081101561097257600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190803573ffffffffffffffffffffffffffffffffffffffff1690602001909291905050506117d5565b6040518082815260200191505060405180910390f35b3480156109e057600080fd5b506109e961185c565b604051808273ffffffffffffffffffffffffffffffffffffffff16815260200191505060405180910390f35b348015610a2157600080fd5b50610a6460048036036020811015610a3857600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611882565b005b348015610a7257600080fd5b50610ab560048036036020811015610a8957600080fd5b81019080803573ffffffffffffffffffffffffffffffffffffffff169060200190929190505050611a77565b005b348015610ac357600080fd5b50610acc611c04565b005b606060038054600181600116156101000203166002900480601f016020809104026020016040519081016040528092919081815260200182805460018160011615610100020316600290048015610b665780601f10610b3b57610100808354040283529160200191610b66565b820191906000526020600020905b815481529060010190602001808311610b4957829003601f168201915b5050505050905090565b6000610b84610b7d611cdf565b8484611ce7565b6001905092915050565b6000600254905090565b6000610ba5848484611ede565b610c6684610bb1611cdf565b610c618560405180606001604052806028815260200161290e60289139600160008b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610c17611cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461219f9092919063ffffffff16565b611ce7565b600190509392505050565b610c79611cdf565b73ffffffffffffffffffffffffffffffffffffffff16610c976112b7565b73ffffffffffffffffffffffffffffffffffffffff1614610d20576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b610d2981612259565b50565b6000600560009054906101000a900460ff16905090565b6000610dec610d50611cdf565b84610de78560016000610d61611cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237e90919063ffffffff16565b611ce7565b6001905092915050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610e9c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061295a6024913960400191505060405180910390fd5b610ea68282612406565b5050565b610eb3816125cd565b50565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16610ef9611cdf565b73ffffffffffffffffffffffffffffffffffffffff1614905090565b60095481565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc1576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061295a6024913960400191505060405180910390fd5b8273ffffffffffffffffffffffffffffffffffffffff1663a9059cbb82846040518363ffffffff1660e01b8152600401808373ffffffffffffffffffffffffffffffffffffffff16815260200182815260200192505050602060405180830381600087803b15801561103257600080fd5b505af1158015611046573d6000803e3d6000fd5b505050506040513d602081101561105c57600080fd5b810190808051906020019092919050505050505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6110ed611cdf565b73ffffffffffffffffffffffffffffffffffffffff1661110b6112b7565b73ffffffffffffffffffffffffffffffffffffffff1614611194576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000611294826040518060600160405280602481526020016129366024913961128586611280611cdf565b6117d5565b61219f9092919063ffffffff16565b90506112a8836112a2611cdf565b83611ce7565b6112b283836125e1565b505050565b6000600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600760149054906101000a900460ff1681565b606060048054600181600116156101000203166002900480601f01602080910402602001604051908101604052809291908181526020018280546001816001161561010002031660029004801561138c5780601f106113615761010080835404028352916020019161138c565b820191906000526020600020905b81548152906001019060200180831161136f57829003601f168201915b5050505050905090565b60085481565b600061145f6113a9611cdf565b8461145a856040518060600160405280602581526020016129e860259139600160006113d3611cdf565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461219f9092919063ffffffff16565b611ce7565b6001905092915050565b600061147d611476611cdf565b8484611ede565b6001905092915050565b600760149054906101000a900460ff16611509576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601c8152602001807f45786368616e67652069732063757272656e746c79207061757365640000000081525060200191505060405180910390fd5b6008543414611580576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260198152602001807f496e636f72726563742043524f20616d6f756e742073656e740000000000000081525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611645576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f54726561737572792061646472657373206973206e6f7420736574000000000081525060200191505060405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc349081150290604051600060405180830381858888f193505050501580156116ad573d6000803e3d6000fd5b506116ba33600954612406565b3373ffffffffffffffffffffffffffffffffffffffff167f98e5a745dfe4f0a8952c2d09eeb25746ce9768004ab459c980d7ad1b5152cbd834600954604051808381526020018281526020019250505060405180910390a2565b61171c611cdf565b73ffffffffffffffffffffffffffffffffffffffff1661173a6112b7565b73ffffffffffffffffffffffffffffffffffffffff16146117c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b81600881905550806009819055505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61188a611cdf565b73ffffffffffffffffffffffffffffffffffffffff166118a86112b7565b73ffffffffffffffffffffffffffffffffffffffff1614611931576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156119b7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260268152602001806128736026913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600560019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600560016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b3373ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611b1d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602481526020018061295a6024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611bc0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260048152602001807f7a65726f0000000000000000000000000000000000000000000000000000000081525060200191505060405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b611c0c611cdf565b73ffffffffffffffffffffffffffffffffffffffff16611c2a6112b7565b73ffffffffffffffffffffffffffffffffffffffff1614611cb3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260208152602001807f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657281525060200191505060405180910390fd5b600760149054906101000a900460ff1615600760146101000a81548160ff021916908315150217905550565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d6d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806129c46024913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611df3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806128996022913960400191505060405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040518082815260200191505060405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611f64576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602581526020018061299f6025913960400191505060405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611fea576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602381526020018061282e6023913960400191505060405180910390fd5b611ff58383836127a5565b612060816040518060600160405280602681526020016128bb602691396000808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461219f9092919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506120f3816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a3505050565b600083831115829061224c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825283818151815260200191508051906020019080838360005b838110156122115780820151818401526020810190506121f6565b50505050905090810190601f16801561223e5780820380516001836020036101000a031916815260200191505b509250505060405180910390fd5b5082840390509392505050565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156122df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602d8152602001806128e1602d913960400191505060405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f74da04524d50c64947f5dd5381ef1a4dca5cba8ed1d816243f9e48aa0b5617ed60405160405180910390a380600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000808284019050838110156123fc576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601b8152602001807f536166654d6174683a206164646974696f6e206f766572666c6f77000000000081525060200191505060405180910390fd5b8091505092915050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156124a9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601f8152602001807f45524332303a206d696e7420746f20746865207a65726f20616464726573730081525060200191505060405180910390fd5b6124b5600083836127a5565b6124ca8160025461237e90919063ffffffff16565b600281905550612521816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461237e90919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b6125de6125d8611cdf565b826125e1565b50565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612667576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602181526020018061297e6021913960400191505060405180910390fd5b612673826000836127a5565b6126de81604051806060016040528060228152602001612851602291396000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461219f9092919063ffffffff16565b6000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550612735816002546127aa90919063ffffffff16565b600281905550600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040518082815260200191505060405180910390a35050565b505050565b600082821115612822576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252601e8152602001807f536166654d6174683a207375627472616374696f6e206f766572666c6f77000081525060200191505060405180910390fd5b81830390509291505056fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a206275726e20616d6f756e7420657863656564732062616c616e63654f776e61626c653a206e6577206f776e657220697320746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f206164647265737345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e63656f70657261746f723a207a65726f206164647265737320676976656e20666f72206e6577206f70657261746f7245524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a206275726e20616d6f756e74206578636565647320616c6c6f77616e63656f70657261746f723a2063616c6c6572206973206e6f7420746865206f70657261746f7245524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f206164647265737345524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220ce6f70b0e4906c666e3e862b2d3db117bf5f9803349774bf51542eac13b48f5864736f6c634300060c0033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000030a0898fa61b6ebd71ec2566fc7ee7cd6f73953e
-----Decoded View---------------
Arg [0] : _treasuryFund (address): 0x30a0898FA61b6eBd71ec2566FC7EE7Cd6f73953e
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000030a0898fa61b6ebd71ec2566fc7ee7cd6f73953e
Deployed Bytecode Sourcemap
26448:2193:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13184:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15330:169;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14283:108;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;15981:321;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26059:115;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;14127:91;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;16711:218;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27686:100;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27794:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25951:100;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26710:46;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;28451:187;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;25723:85;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14454:127;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;24859:148;;;;;;;;;;;;;:::i;:::-;;22883:295;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;24208:87;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;26600:33;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;13394:95;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26640:44;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;17432:269;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;14794:175;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;27923:520;;;:::i;:::-;;27313:210;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;15032:151;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;26538:27;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;25162:244;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27088:172;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;27576:102;;;;;;;;;;;;;:::i;:::-;;13184:91;13229:13;13262:5;13255:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13184:91;:::o;15330:169::-;15413:4;15430:39;15439:12;:10;:12::i;:::-;15453:7;15462:6;15430:8;:39::i;:::-;15487:4;15480:11;;15330:169;;;;:::o;14283:108::-;14344:7;14371:12;;14364:19;;14283:108;:::o;15981:321::-;16087:4;16104:36;16114:6;16122:9;16133:6;16104:9;:36::i;:::-;16151:121;16160:6;16168:12;:10;:12::i;:::-;16182:89;16220:6;16182:89;;;;;;;;;;;;;;;;;:11;:19;16194:6;16182:19;;;;;;;;;;;;;;;:33;16202:12;:10;:12::i;:::-;16182:33;;;;;;;;;;;;;;;;:37;;:89;;;;;:::i;:::-;16151:8;:121::i;:::-;16290:4;16283:11;;15981:321;;;;;:::o;26059:115::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;24420:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26135:31:::1;26153:12;26135:17;:31::i;:::-;26059:115:::0;:::o;14127:91::-;14176:5;14201:9;;;;;;;;;;;14194:16;;14127:91;:::o;16711:218::-;16799:4;16816:83;16825:12;:10;:12::i;:::-;16839:7;16848:50;16887:10;16848:11;:25;16860:12;:10;:12::i;:::-;16848:25;;;;;;;;;;;;;;;:34;16874:7;16848:34;;;;;;;;;;;;;;;;:38;;:50;;;;:::i;:::-;16816:8;:83::i;:::-;16917:4;16910:11;;16711:218;;;;:::o;27686:100::-;25872:10;25859:23;;:9;;;;;;;;;;;:23;;;25851:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27761:17:::1;27767:2;27771:6;27761:5;:17::i;:::-;27686:100:::0;;:::o;27794:83::-;27851:18;27862:6;27851:10;:18::i;:::-;27794:83;:::o;25951:100::-;25994:4;26034:9;;;;;;;;;;;26018:25;;:12;:10;:12::i;:::-;:25;;;26011:32;;25951:100;:::o;26710:46::-;;;;:::o;28451:187::-;25872:10;25859:23;;:9;;;;;;;;;;;:23;;;25851:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28601:6:::1;:15;;;28617:3;28622:7;28601:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;;;;;;;28451:187:::0;;;:::o;25723:85::-;25764:7;25791:9;;;;;;;;;;;25784:16;;25723:85;:::o;14454:127::-;14528:7;14555:9;:18;14565:7;14555:18;;;;;;;;;;;;;;;;14548:25;;14454:127;;;:::o;24859:148::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;24420:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24966:1:::1;24929:40;;24950:6;;;;;;;;;;;24929:40;;;;;;;;;;;;24997:1;24980:6;;:19;;;;;;;;;;;;;;;;;;24859:148::o:0;22883:295::-;22960:26;22989:84;23026:6;22989:84;;;;;;;;;;;;;;;;;:32;22999:7;23008:12;:10;:12::i;:::-;22989:9;:32::i;:::-;:36;;:84;;;;;:::i;:::-;22960:113;;23086:51;23095:7;23104:12;:10;:12::i;:::-;23118:18;23086:8;:51::i;:::-;23148:22;23154:7;23163:6;23148:5;:22::i;:::-;22883:295;;;:::o;24208:87::-;24254:7;24281:6;;;;;;;;;;;24274:13;;24208:87;:::o;26600:33::-;;;;;;;;;;;;;:::o;13394:95::-;13441:13;13474:7;13467:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13394:95;:::o;26640:44::-;;;;:::o;17432:269::-;17525:4;17542:129;17551:12;:10;:12::i;:::-;17565:7;17574:96;17613:15;17574:96;;;;;;;;;;;;;;;;;:11;:25;17586:12;:10;:12::i;:::-;17574:25;;;;;;;;;;;;;;;:34;17600:7;17574:34;;;;;;;;;;;;;;;;:38;;:96;;;;;:::i;:::-;17542:8;:129::i;:::-;17689:4;17682:11;;17432:269;;;;:::o;14794:175::-;14880:4;14897:42;14907:12;:10;:12::i;:::-;14921:9;14932:6;14897:9;:42::i;:::-;14957:4;14950:11;;14794:175;;;;:::o;27923:520::-;27979:14;;;;;;;;;;;27971:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28058:17;;28045:9;:30;28037:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28148:1;28124:26;;:12;;;;;;;;;;;:26;;;;28116:66;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28240:12;;;;;;;;;;;28232:30;;:41;28263:9;28232:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28330:36;28336:10;28348:17;;28330:5;:36::i;:::-;28394:10;28384:51;;;28406:9;28417:17;;28384:51;;;;;;;;;;;;;;;;;;;;;;;;27923:520::o;27313:210::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;24420:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27448:18:::1;27428:17;:38;;;;27497:18;27477:17;:38;;;;27313:210:::0;;:::o;15032:151::-;15121:7;15148:11;:18;15160:5;15148:18;;;;;;;;;;;;;;;:27;15167:7;15148:27;;;;;;;;;;;;;;;;15141:34;;15032:151;;;;:::o;26538:27::-;;;;;;;;;;;;;:::o;25162:244::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;24420:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25271:1:::1;25251:22;;:8;:22;;;;25243:73;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25361:8;25332:38;;25353:6;;;;;;;;;;;25332:38;;;;;;;;;;;;25390:8;25381:6;;:17;;;;;;;;;;;;;;;;;;25162:244:::0;:::o;27088:172::-;25872:10;25859:23;;:9;;;;;;;;;;;:23;;;25851:72;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27202:1:::1;27177:27;;:13;:27;;;;27169:44;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;;;;;;;;27239:13;27224:12;;:28;;;;;;;;;;;;;;;;;;27088:172:::0;:::o;27576:102::-;24439:12;:10;:12::i;:::-;24428:23;;:7;:5;:7::i;:::-;:23;;;24420:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27656:14:::1;;;;;;;;;;;27655:15;27638:14;;:32;;;;;;;;;;;;;;;;;;27576:102::o:0;8048:106::-;8101:15;8136:10;8129:17;;8048:106;:::o;20579:346::-;20698:1;20681:19;;:5;:19;;;;20673:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20779:1;20760:21;;:7;:21;;;;20752:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20863:6;20833:11;:18;20845:5;20833:18;;;;;;;;;;;;;;;:27;20852:7;20833:27;;;;;;;;;;;;;;;:36;;;;20901:7;20885:32;;20894:5;20885:32;;;20910:6;20885:32;;;;;;;;;;;;;;;;;;20579:346;;;:::o;18191:539::-;18315:1;18297:20;;:6;:20;;;;18289:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18399:1;18378:23;;:9;:23;;;;18370:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18454:47;18475:6;18483:9;18494:6;18454:20;:47::i;:::-;18534:71;18556:6;18534:71;;;;;;;;;;;;;;;;;:9;:17;18544:6;18534:17;;;;;;;;;;;;;;;;:21;;:71;;;;;:::i;:::-;18514:9;:17;18524:6;18514:17;;;;;;;;;;;;;;;:91;;;;18639:32;18664:6;18639:9;:20;18649:9;18639:20;;;;;;;;;;;;;;;;:24;;:32;;;;:::i;:::-;18616:9;:20;18626:9;18616:20;;;;;;;;;;;;;;;:55;;;;18704:9;18687:35;;18696:6;18687:35;;;18715:6;18687:35;;;;;;;;;;;;;;;;;;18191:539;;;:::o;5663:166::-;5749:7;5782:1;5777;:6;;5785:12;5769:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5820:1;5816;:5;5809:12;;5663:166;;;;;:::o;26182:257::-;26283:1;26259:26;;:12;:26;;;;26251:84;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26383:12;26351:45;;26379:1;26351:45;;;;;;;;;;;;26419:12;26407:9;;:24;;;;;;;;;;;;;;;;;;26182:257;:::o;2836:179::-;2894:7;2914:9;2930:1;2926;:5;2914:17;;2955:1;2950;:6;;2942:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3006:1;2999:8;;;2836:179;;;;:::o;19012:378::-;19115:1;19096:21;;:7;:21;;;;19088:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19166:49;19195:1;19199:7;19208:6;19166:20;:49::i;:::-;19243:24;19260:6;19243:12;;:16;;:24;;;;:::i;:::-;19228:12;:39;;;;19299:30;19322:6;19299:9;:18;19309:7;19299:18;;;;;;;;;;;;;;;;:22;;:30;;;;:::i;:::-;19278:9;:18;19288:7;19278:18;;;;;;;;;;;;;;;:51;;;;19366:7;19345:37;;19362:1;19345:37;;;19375:6;19345:37;;;;;;;;;;;;;;;;;;19012:378;;:::o;22473:91::-;22529:27;22535:12;:10;:12::i;:::-;22549:6;22529:5;:27::i;:::-;22473:91;:::o;19723:418::-;19826:1;19807:21;;:7;:21;;;;19799:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19879:49;19900:7;19917:1;19921:6;19879:20;:49::i;:::-;19962:68;19985:6;19962:68;;;;;;;;;;;;;;;;;:9;:18;19972:7;19962:18;;;;;;;;;;;;;;;;:22;;:68;;;;;:::i;:::-;19941:9;:18;19951:7;19941:18;;;;;;;;;;;;;;;:89;;;;20056:24;20073:6;20056:12;;:16;;:24;;;;:::i;:::-;20041:12;:39;;;;20122:1;20096:37;;20105:7;20096:37;;;20126:6;20096:37;;;;;;;;;;;;;;;;;;19723:418;;:::o;21958:92::-;;;;:::o;3298:158::-;3356:7;3389:1;3384;:6;;3376:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3447:1;3443;:5;3436:12;;3298:158;;;;:::o
Swarm Source
ipfs://ce6f70b0e4906c666e3e862b2d3db117bf5f9803349774bf51542eac13b48f58
Loading...
Loading
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
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.