Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 7 from a total of 7 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 18909663 | 322 days ago | IN | 0 ETH | 0.00051634 | ||||
Transfer | 18909436 | 322 days ago | IN | 0 ETH | 0.00051009 | ||||
Transfer | 18909433 | 322 days ago | IN | 0 ETH | 0.00055133 | ||||
Transfer | 18909431 | 322 days ago | IN | 0 ETH | 0.00056476 | ||||
Approve | 18909206 | 322 days ago | IN | 0 ETH | 0.0004909 | ||||
Transfer | 18909151 | 322 days ago | IN | 0 ETH | 0.00051463 | ||||
0x60806040 | 18908895 | 322 days ago | IN | 0 ETH | 0.01312919 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
GenericERCToken
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2024-01-01 */ pragma solidity ^0.8.0; interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the token decimals. */ function decimals() external view returns (uint8); /** * @dev Returns the token symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the token name. */ function name() external view returns (string memory); /** * @dev Returns the bep token owner. */ function getOwner() external view returns (address); /** * @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-solidity/contracts/GSN/Context.sol pragma solidity ^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 payable(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-solidity/contracts/math/SafeMath.sol pragma solidity ^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, 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) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * 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); uint256 c = a - b; return c; } /** * @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) { // 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 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts 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) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts 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) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message 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, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } pragma solidity ^0.8.0; contract GenericERCToken is Context, IERC20 { using SafeMath for uint256; //ERC20 functionality mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private _decimals; bool private _mintable; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); //Internal info address private _owner = address(0); /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == msg.sender, "Ownable: caller is not the owner"); _; } constructor() { _owner = msg.sender; //Mint _mint(0x780F6788Da1F70110b9d7DD96D78e8C2efAe1111, 1 ether); _name = "SEMENCHUK"; _symbol = "SEMEN"; _decimals = 18; _mintable = false; } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } /** * @dev Returns if the token is mintable or not */ function mintable() external view returns (bool) { return _mintable; } /** * @dev Returns the bep token owner. */ function getOwner() external override view returns (address) { return _owner; } /** * @dev Returns the token decimals. */ function decimals() external override view returns (uint8) { return _decimals; } /** * @dev Returns the token symbol. */ function symbol() external override view returns (string memory) { return _symbol; } /** * @dev Returns the token name. */ function name() external override view returns (string memory) { return _name; } /** * @dev See {ERC20-totalSupply}. */ function totalSupply() external override view returns (uint256) { return _totalSupply; } /** * @dev See {ERC20-balanceOf}. */ function balanceOf(address account) external override view returns (uint256) { return _balances[account]; } /** * @dev See {ERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) external override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {ERC20-allowance}. */ function allowance(address owner, address spender) external override view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {ERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) external override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {ERC20-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) external 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 {ERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public 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 {ERC20-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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Creates `amount` tokens and assigns them to `msg.sender`, increasing * the total supply. * * Requirements * * - `msg.sender` must be the token owner * - `_mintable` must be true */ function mint(uint256 amount) public onlyOwner returns (bool) { require(_mintable, "this token is not mintable"); _mint(_msgSender(), amount); return true; } /** * @dev Burn `amount` tokens and decreasing the total supply. */ function burn(uint256 amount) public returns (bool) { _burn(_msgSender(), amount); 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 { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _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 { require(account != address(0), "ERC20: mint to the zero address"); _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 { require(account != address(0), "ERC20: burn from the zero address"); _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 is 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 { 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 Destroys `amount` tokens from `account`.`amount` is then deducted * from the caller's allowance. * * See {_burn} and {_approve}. */ function _burnFrom(address account, uint256 amount) internal { _burn(account, amount); _approve(account, _msgSender(), _allowances[account][_msgSender()].sub(amount, "ERC20: burn amount exceeds allowance")); } } //@author: Andrei Nedobylskii ([email protected])
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":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":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","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":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"mintable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"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"}]
Contract Creation Code
60806040526005805462010000600160b01b03191690553480156200002357600080fd5b506005805462010000600160b01b0319163362010000021790556200006573780f6788da1f70110b9d7dd96d78e8c2efae1111670de0b6b3a7640000620000db565b6040805180820190915260098082526853454d454e4348554b60b81b6020909201918252620000979160039162000245565b506040805180820190915260058082526429a2a6a2a760d91b6020909201918252620000c69160049162000245565b506005805461ffff191660121790556200034f565b6001600160a01b038216620001375760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200015381600254620001db60201b6200065b1790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620001869183906200065b620001db821b17901c565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600080620001ea8385620002eb565b9050838110156200023e5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200012e565b9392505050565b828054620002539062000312565b90600052602060002090601f016020900481019282620002775760008555620002c2565b82601f106200029257805160ff1916838001178555620002c2565b82800160010185558215620002c2579182015b82811115620002c2578251825591602001919060010190620002a5565b50620002d0929150620002d4565b5090565b5b80821115620002d05760008155600101620002d5565b600082198211156200030d57634e487b7160e01b600052601160045260246000fd5b500190565b600181811c908216806200032757607f821691505b602082108114156200034957634e487b7160e01b600052602260045260246000fd5b50919050565b610e4c806200035f6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610224578063a9059cbb14610237578063dd62ed3e1461024a578063f2fde38b1461028357600080fd5b806370a08231146101b6578063893d20e8146101df57806395d89b4114610209578063a0712d681461021157600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806342966c68146101935780634bf365df146101a657600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610298565b60405161011a9190610cac565b60405180910390f35b610136610131366004610c69565b61032a565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610c2d565b610340565b60055460405160ff909116815260200161011a565b61013661018e366004610c69565b6103a9565b6101366101a1366004610c93565b6103df565b600554610100900460ff16610136565b61014a6101c4366004610bdf565b6001600160a01b031660009081526020819052604090205490565b6005546201000090046001600160a01b03166040516001600160a01b03909116815260200161011a565b61010d6103f3565b61013661021f366004610c93565b610402565b610136610232366004610c69565b6104d0565b610136610245366004610c69565b61051f565b61014a610258366004610bfa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610296610291366004610bdf565b61052c565b005b6060600380546102a790610d30565b80601f01602080910402602001604051908101604052809291908181526020018280546102d390610d30565b80156103205780601f106102f557610100808354040283529160200191610320565b820191906000526020600020905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b60006103373384846106c1565b50600192915050565b600061034d8484846107e6565b61039f843361039a85604051806060016040528060288152602001610dca602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610969565b6106c1565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161033791859061039a908661065b565b60006103eb33836109a3565b506001919050565b6060600480546102a790610d30565b6005546000906201000090046001600160a01b0316331461046a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600554610100900460ff166104c15760405162461bcd60e51b815260206004820152601a60248201527f7468697320746f6b656e206973206e6f74206d696e7461626c650000000000006044820152606401610461565b6103eb3383610aaf565b919050565b6000610337338461039a85604051806060016040528060258152602001610df2602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610969565b60006103373384846107e6565b6005546201000090046001600160a01b0316331461058c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610461565b6001600160a01b0381166105f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610461565b6005546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000806106688385610d01565b9050838110156106ba5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610461565b9392505050565b6001600160a01b0383166107235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b6001600160a01b0382166107845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610461565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661084a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610461565b6001600160a01b0382166108ac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610461565b6108e981604051806060016040528060268152602001610da4602691396001600160a01b0386166000908152602081905260409020549190610969565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610918908261065b565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107d9565b6000818484111561098d5760405162461bcd60e51b81526004016104619190610cac565b50600061099a8486610d19565b95945050505050565b6001600160a01b038216610a035760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610461565b610a4081604051806060016040528060228152602001610d82602291396001600160a01b0385166000908152602081905260409020549190610969565b6001600160a01b038316600090815260208190526040902055600254610a669082610b86565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b038216610b055760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610461565b600254610b12908261065b565b6002556001600160a01b038216600090815260208190526040902054610b38908261065b565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610aa3565b60006106ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610969565b80356001600160a01b03811681146104cb57600080fd5b600060208284031215610bf157600080fd5b6106ba82610bc8565b60008060408385031215610c0d57600080fd5b610c1683610bc8565b9150610c2460208401610bc8565b90509250929050565b600080600060608486031215610c4257600080fd5b610c4b84610bc8565b9250610c5960208501610bc8565b9150604084013590509250925092565b60008060408385031215610c7c57600080fd5b610c8583610bc8565b946020939093013593505050565b600060208284031215610ca557600080fd5b5035919050565b600060208083528351808285015260005b81811015610cd957858101830151858201604001528201610cbd565b81811115610ceb576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610d1457610d14610d6b565b500190565b600082821015610d2b57610d2b610d6b565b500390565b600181811c90821680610d4457607f821691505b60208210811415610d6557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d0cf5f78fbb6a37c6406470d00e54d32fc66a61ad877cae177cf0dc9e934d10564736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610224578063a9059cbb14610237578063dd62ed3e1461024a578063f2fde38b1461028357600080fd5b806370a08231146101b6578063893d20e8146101df57806395d89b4114610209578063a0712d681461021157600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461018057806342966c68146101935780634bf365df146101a657600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610298565b60405161011a9190610cac565b60405180910390f35b610136610131366004610c69565b61032a565b604051901515815260200161011a565b6002545b60405190815260200161011a565b610136610166366004610c2d565b610340565b60055460405160ff909116815260200161011a565b61013661018e366004610c69565b6103a9565b6101366101a1366004610c93565b6103df565b600554610100900460ff16610136565b61014a6101c4366004610bdf565b6001600160a01b031660009081526020819052604090205490565b6005546201000090046001600160a01b03166040516001600160a01b03909116815260200161011a565b61010d6103f3565b61013661021f366004610c93565b610402565b610136610232366004610c69565b6104d0565b610136610245366004610c69565b61051f565b61014a610258366004610bfa565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b610296610291366004610bdf565b61052c565b005b6060600380546102a790610d30565b80601f01602080910402602001604051908101604052809291908181526020018280546102d390610d30565b80156103205780601f106102f557610100808354040283529160200191610320565b820191906000526020600020905b81548152906001019060200180831161030357829003601f168201915b5050505050905090565b60006103373384846106c1565b50600192915050565b600061034d8484846107e6565b61039f843361039a85604051806060016040528060288152602001610dca602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610969565b6106c1565b5060019392505050565b3360008181526001602090815260408083206001600160a01b0387168452909152812054909161033791859061039a908661065b565b60006103eb33836109a3565b506001919050565b6060600480546102a790610d30565b6005546000906201000090046001600160a01b0316331461046a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600554610100900460ff166104c15760405162461bcd60e51b815260206004820152601a60248201527f7468697320746f6b656e206973206e6f74206d696e7461626c650000000000006044820152606401610461565b6103eb3383610aaf565b919050565b6000610337338461039a85604051806060016040528060258152602001610df2602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610969565b60006103373384846107e6565b6005546201000090046001600160a01b0316331461058c5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610461565b6001600160a01b0381166105f15760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610461565b6005546040516001600160a01b038084169262010000900416907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b03909216620100000262010000600160b01b0319909216919091179055565b6000806106688385610d01565b9050838110156106ba5760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610461565b9392505050565b6001600160a01b0383166107235760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610461565b6001600160a01b0382166107845760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610461565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b03831661084a5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610461565b6001600160a01b0382166108ac5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610461565b6108e981604051806060016040528060268152602001610da4602691396001600160a01b0386166000908152602081905260409020549190610969565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610918908261065b565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91016107d9565b6000818484111561098d5760405162461bcd60e51b81526004016104619190610cac565b50600061099a8486610d19565b95945050505050565b6001600160a01b038216610a035760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b6064820152608401610461565b610a4081604051806060016040528060228152602001610d82602291396001600160a01b0385166000908152602081905260409020549190610969565b6001600160a01b038316600090815260208190526040902055600254610a669082610b86565b6002556040518181526000906001600160a01b038416907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020015b60405180910390a35050565b6001600160a01b038216610b055760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610461565b600254610b12908261065b565b6002556001600160a01b038216600090815260208190526040902054610b38908261065b565b6001600160a01b038316600081815260208181526040808320949094559251848152919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9101610aa3565b60006106ba83836040518060400160405280601e81526020017f536166654d6174683a207375627472616374696f6e206f766572666c6f770000815250610969565b80356001600160a01b03811681146104cb57600080fd5b600060208284031215610bf157600080fd5b6106ba82610bc8565b60008060408385031215610c0d57600080fd5b610c1683610bc8565b9150610c2460208401610bc8565b90509250929050565b600080600060608486031215610c4257600080fd5b610c4b84610bc8565b9250610c5960208501610bc8565b9150604084013590509250925092565b60008060408385031215610c7c57600080fd5b610c8583610bc8565b946020939093013593505050565b600060208284031215610ca557600080fd5b5035919050565b600060208083528351808285015260005b81811015610cd957858101830151858201604001528201610cbd565b81811115610ceb576000604083870101525b50601f01601f1916929092016040019392505050565b60008219821115610d1457610d14610d6b565b500190565b600082821015610d2b57610d2b610d6b565b500390565b600181811c90821680610d4457607f821691505b60208210811415610d6557634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fdfe45524332303a206275726e20616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220d0cf5f78fbb6a37c6406470d00e54d32fc66a61ad877cae177cf0dc9e934d10564736f6c63430008070033
Deployed Bytecode Sourcemap
9561:9732:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11704:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12881:163;;;;;;:::i;:::-;;:::i;:::-;;;1798:14:1;;1791:22;1773:41;;1761:2;1746:18;12881:163:0;1633:187:1;11862:102:0;11944:12;;11862:102;;;6432:25:1;;;6420:2;6405:18;11862:102:0;6286:177:1;13515:315:0;;;;;;:::i;:::-;;:::i;11386:94::-;11463:9;;11386:94;;11463:9;;;;6610:36:1;;6598:2;6583:18;11386:94:0;6468:184:1;14238:210:0;;;;;;:::i;:::-;;:::i;15742:120::-;;;;;;:::i;:::-;;:::i;11074:84::-;11141:9;;;;;;;11074:84;;12026:121;;;;;;:::i;:::-;-1:-1:-1;;;;;12121:18:0;12094:7;12121:18;;;;;;;;;;;;12026:121;11226:93;11305:6;;;;;-1:-1:-1;;;;;11305:6:0;11226:93;;-1:-1:-1;;;;;1589:32:1;;;1571:51;;1559:2;1544:18;11226:93:0;1425:203:1;11545:98:0;;;:::i;15464:189::-;;;;;;:::i;:::-;;:::i;14950:261::-;;;;;;:::i;:::-;;:::i;12359:169::-;;;;;;:::i;:::-;;:::i;12590:145::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12700:18:0;;;12673:7;12700:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12590:145;10753:236;;;;;;:::i;:::-;;:::i;:::-;;11704:94;11752:13;11785:5;11778:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11704:94;:::o;12881:163::-;12958:4;12975:39;3868:10;12998:7;13007:6;12975:8;:39::i;:::-;-1:-1:-1;13032:4:0;12881:163;;;;:::o;13515:315::-;13615:4;13632:36;13642:6;13650:9;13661:6;13632:9;:36::i;:::-;13679:121;13688:6;3868:10;13710:89;13748:6;13710:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;13710:19:0;;;;;;:11;:19;;;;;;;;3868:10;13710:33;;;;;;;;;;:37;:89::i;:::-;13679:8;:121::i;:::-;-1:-1:-1;13818:4:0;13515:315;;;;;:::o;14238:210::-;3868:10;14318:4;14367:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;14367:34:0;;;;;;;;;;14318:4;;14335:83;;14358:7;;14367:50;;14406:10;14367:38;:50::i;15742:120::-;15788:4;15805:27;3868:10;15825:6;15805:5;:27::i;:::-;-1:-1:-1;15850:4:0;;15742:120;-1:-1:-1;15742:120:0:o;11545:98::-;11595:13;11628:7;11621:14;;;;;:::i;15464:189::-;10242:6;;15520:4;;10242:6;;;-1:-1:-1;;;;;10242:6:0;10252:10;10242:20;10234:65;;;;-1:-1:-1;;;10234:65:0;;4554:2:1;10234:65:0;;;4536:21:1;;;4573:18;;;4566:30;4632:34;4612:18;;;4605:62;4684:18;;10234:65:0;;;;;;;;;15545:9:::1;::::0;::::1;::::0;::::1;;;15537:48;;;::::0;-1:-1:-1;;;15537:48:0;;3033:2:1;15537:48:0::1;::::0;::::1;3015:21:1::0;3072:2;3052:18;;;3045:30;3111:28;3091:18;;;3084:56;3157:18;;15537:48:0::1;2831:350:1::0;15537:48:0::1;15596:27;3868:10:::0;15616:6:::1;15596:5;:27::i;10310:1::-;15464:189:::0;;;:::o;14950:261::-;15035:4;15052:129;3868:10;15075:7;15084:96;15123:15;15084:96;;;;;;;;;;;;;;;;;3868:10;15084:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;15084:34:0;;;;;;;;;;;;:38;:96::i;12359:169::-;12439:4;12456:42;3868:10;12480:9;12491:6;12456:9;:42::i;10753:236::-;10242:6;;;;;-1:-1:-1;;;;;10242:6:0;10252:10;10242:20;10234:65;;;;-1:-1:-1;;;10234:65:0;;4554:2:1;10234:65:0;;;4536:21:1;;;4573:18;;;4566:30;4632:34;4612:18;;;4605:62;4684:18;;10234:65:0;4352:356:1;10234:65:0;-1:-1:-1;;;;;10834:22:0;::::1;10826:73;;;::::0;-1:-1:-1;;;10826:73:0;;3388:2:1;10826:73:0::1;::::0;::::1;3370:21:1::0;3427:2;3407:18;;;3400:30;3466:34;3446:18;;;3439:62;-1:-1:-1;;;3517:18:1;;;3510:36;3563:19;;10826:73:0::1;3186:402:1::0;10826:73:0::1;10936:6;::::0;10915:38:::1;::::0;-1:-1:-1;;;;;10915:38:0;;::::1;::::0;10936:6;;::::1;;::::0;10915:38:::1;::::0;;;::::1;10964:6;:17:::0;;-1:-1:-1;;;;;10964:17:0;;::::1;::::0;::::1;-1:-1:-1::0;;;;;;10964:17:0;;::::1;::::0;;;::::1;::::0;;10753:236::o;5066:181::-;5124:7;;5156:5;5160:1;5156;:5;:::i;:::-;5144:17;;5185:1;5180;:6;;5172:46;;;;-1:-1:-1;;;5172:46:0;;4198:2:1;5172:46:0;;;4180:21:1;4237:2;4217:18;;;4210:30;4276:29;4256:18;;;4249:57;4323:18;;5172:46:0;3996:351:1;5172:46:0;5238:1;5066:181;-1:-1:-1;;;5066:181:0:o;18532:338::-;-1:-1:-1;;;;;18626:19:0;;18618:68;;;;-1:-1:-1;;;18618:68:0;;5723:2:1;18618:68:0;;;5705:21:1;5762:2;5742:18;;;5735:30;5801:34;5781:18;;;5774:62;-1:-1:-1;;;5852:18:1;;;5845:34;5896:19;;18618:68:0;5521:400:1;18618:68:0;-1:-1:-1;;;;;18705:21:0;;18697:68;;;;-1:-1:-1;;;18697:68:0;;3795:2:1;18697:68:0;;;3777:21:1;3834:2;3814:18;;;3807:30;3873:34;3853:18;;;3846:62;-1:-1:-1;;;3924:18:1;;;3917:32;3966:19;;18697:68:0;3593:398:1;18697:68:0;-1:-1:-1;;;;;18778:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18830:32;;6432:25:1;;;18830:32:0;;6405:18:1;18830:32:0;;;;;;;;18532:338;;;:::o;16352:471::-;-1:-1:-1;;;;;16450:20:0;;16442:70;;;;-1:-1:-1;;;16442:70:0;;5317:2:1;16442:70:0;;;5299:21:1;5356:2;5336:18;;;5329:30;5395:34;5375:18;;;5368:62;-1:-1:-1;;;5446:18:1;;;5439:35;5491:19;;16442:70:0;5115:401:1;16442:70:0;-1:-1:-1;;;;;16531:23:0;;16523:71;;;;-1:-1:-1;;;16523:71:0;;2629:2:1;16523:71:0;;;2611:21:1;2668:2;2648:18;;;2641:30;2707:34;2687:18;;;2680:62;-1:-1:-1;;;2758:18:1;;;2751:33;2801:19;;16523:71:0;2427:399:1;16523:71:0;16627;16649:6;16627:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;16627:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;16607:17:0;;;:9;:17;;;;;;;;;;;:91;;;;16732:20;;;;;;;:32;;16757:6;16732:24;:32::i;:::-;-1:-1:-1;;;;;16709:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;16780:35;6432:25:1;;;16709:20:0;;16780:35;;;;;;6405:18:1;16780:35:0;6286:177:1;5969:192:0;6055:7;6091:12;6083:6;;;;6075:29;;;;-1:-1:-1;;;6075:29:0;;;;;;;;:::i;:::-;-1:-1:-1;6115:9:0;6127:5;6131:1;6127;:5;:::i;:::-;6115:17;5969:192;-1:-1:-1;;;;;5969:192:0:o;17744:348::-;-1:-1:-1;;;;;17820:21:0;;17812:67;;;;-1:-1:-1;;;17812:67:0;;4915:2:1;17812:67:0;;;4897:21:1;4954:2;4934:18;;;4927:30;4993:34;4973:18;;;4966:62;-1:-1:-1;;;5044:18:1;;;5037:31;5085:19;;17812:67:0;4713:397:1;17812:67:0;17913:68;17936:6;17913:68;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;17913:18:0;;:9;:18;;;;;;;;;;;;:68;:22;:68::i;:::-;-1:-1:-1;;;;;17892:18:0;;:9;:18;;;;;;;;;;:89;18007:12;;:24;;18024:6;18007:16;:24::i;:::-;17992:12;:39;18047:37;;6432:25:1;;;18073:1:0;;-1:-1:-1;;;;;18047:37:0;;;;;6420:2:1;6405:18;18047:37:0;;;;;;;;17744:348;;:::o;17104:308::-;-1:-1:-1;;;;;17180:21:0;;17172:65;;;;-1:-1:-1;;;17172:65:0;;6128:2:1;17172:65:0;;;6110:21:1;6167:2;6147:18;;;6140:30;6206:33;6186:18;;;6179:61;6257:18;;17172:65:0;5926:355:1;17172:65:0;17265:12;;:24;;17282:6;17265:16;:24::i;:::-;17250:12;:39;-1:-1:-1;;;;;17321:18:0;;:9;:18;;;;;;;;;;;:30;;17344:6;17321:22;:30::i;:::-;-1:-1:-1;;;;;17300:18:0;;:9;:18;;;;;;;;;;;:51;;;;17367:37;;6432:25:1;;;17300:18:0;;:9;;17367:37;;6405:18:1;17367:37:0;6286:177:1;5530:136:0;5588:7;5615:43;5619:1;5622;5615:43;;;;;;;;;;;;;;;;;:3;:43::i;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;192:186;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:254::-;1049:6;1057;1110:2;1098:9;1089:7;1085:23;1081:32;1078:52;;;1126:1;1123;1116:12;1078:52;1149:29;1168:9;1149:29;:::i;:::-;1139:39;1225:2;1210:18;;;;1197:32;;-1:-1:-1;;;981:254:1:o;1240:180::-;1299:6;1352:2;1340:9;1331:7;1327:23;1323:32;1320:52;;;1368:1;1365;1358:12;1320:52;-1:-1:-1;1391:23:1;;1240:180;-1:-1:-1;1240:180:1:o;1825:597::-;1937:4;1966:2;1995;1984:9;1977:21;2027:6;2021:13;2070:6;2065:2;2054:9;2050:18;2043:34;2095:1;2105:140;2119:6;2116:1;2113:13;2105:140;;;2214:14;;;2210:23;;2204:30;2180:17;;;2199:2;2176:26;2169:66;2134:10;;2105:140;;;2263:6;2260:1;2257:13;2254:91;;;2333:1;2328:2;2319:6;2308:9;2304:22;2300:31;2293:42;2254:91;-1:-1:-1;2406:2:1;2385:15;-1:-1:-1;;2381:29:1;2366:45;;;;2413:2;2362:54;;1825:597;-1:-1:-1;;;1825:597:1:o;6657:128::-;6697:3;6728:1;6724:6;6721:1;6718:13;6715:39;;;6734:18;;:::i;:::-;-1:-1:-1;6770:9:1;;6657:128::o;6790:125::-;6830:4;6858:1;6855;6852:8;6849:34;;;6863:18;;:::i;:::-;-1:-1:-1;6900:9:1;;6790:125::o;6920:380::-;6999:1;6995:12;;;;7042;;;7063:61;;7117:4;7109:6;7105:17;7095:27;;7063:61;7170:2;7162:6;7159:14;7139:18;7136:38;7133:161;;;7216:10;7211:3;7207:20;7204:1;7197:31;7251:4;7248:1;7241:15;7279:4;7276:1;7269:15;7133:161;;6920:380;;;:::o;7305:127::-;7366:10;7361:3;7357:20;7354:1;7347:31;7397:4;7394:1;7387:15;7421:4;7418:1;7411:15
Swarm Source
ipfs://d0cf5f78fbb6a37c6406470d00e54d32fc66a61ad877cae177cf0dc9e934d105
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ 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.