Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
TokenLogic
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2020-12-16 */ // File: @openzeppelin/upgrades/contracts/Initializable.sol pragma solidity >=0.4.24 <0.7.0; /** * @title Initializable * * @dev Helper contract to support initializer functions. To use it, replace * the constructor with a function that has the `initializer` modifier. * WARNING: Unlike constructors, initializer functions must be manually * invoked. This applies both to deploying an Initializable contract, as well * as extending an Initializable contract via inheritance. * WARNING: When used with inheritance, manual care must be taken to not invoke * a parent initializer twice, or ensure that all initializers are idempotent, * because this is not dealt with automatically as with constructors. */ contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private initializing; /** * @dev Modifier to use in the initializer function of a contract. */ modifier initializer() { require(initializing || isConstructor() || !initialized, "Contract instance has already been initialized"); bool isTopLevelCall = !initializing; if (isTopLevelCall) { initializing = true; initialized = true; } _; if (isTopLevelCall) { initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function isConstructor() private view returns (bool) { // extcodesize checks the size of the code stored in an address, and // address returns the current address. Since the code is still not // deployed when running a constructor, any checks on its code size will // yield zero, making it an effective way to detect if a contract is // under construction or not. address self = address(this); uint256 cs; assembly { cs := extcodesize(self) } return cs == 0; } // Reserved storage space to allow for layout changes in the future. uint256[50] private ______gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/GSN/Context.sol pragma solidity ^0.5.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 not 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. */ contract Context { // Empty internal constructor, to prevent people from mistakenly deploying // an instance of this contract, with should be used via inheritance. constructor () internal { } // solhint-disable-previous-line no-empty-blocks function _msgSender() internal view returns (address) { return msg.sender; } function _msgData() internal view returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } // File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/IERC20.sol pragma solidity ^0.5.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ 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. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File: @openzeppelin/contracts-ethereum-package/contracts/math/SafeMath.sol pragma solidity ^0.5.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) { require(b <= a, "SafeMath: subtraction overflow"); 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-solidity/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) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); 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) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } // File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20.sol pragma solidity ^0.5.0; /** * @dev Implementation of the `IERC20` interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using `_mint`. * For a generic mechanism see `ERC20Mintable`. * * *For a detailed writeup see our guide [How to implement supply * mechanisms](https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226).* * * 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 Initializable, Context, IERC20 { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; /** * @dev See `IERC20.totalSupply`. */ function totalSupply() public view returns (uint256) { return _totalSupply; } /** * @dev See `IERC20.balanceOf`. */ function balanceOf(address account) public view 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 to, uint256 value) public returns (bool) { _transfer(_msgSender(), to, value); return true; } /** * @dev See `IERC20.allowance`. */ function allowance(address owner, address spender) public view returns (uint256) { return _allowances[owner][spender]; } /** * @dev See `IERC20.approve`. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 value) public returns (bool) { _approve(_msgSender(), spender, value); 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 `value`. * - the caller must have allowance for `sender`'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 value) public returns (bool) { _transfer(from, to, value); _approve(from, _msgSender(), _allowances[from][_msgSender()].sub(value)); 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 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 returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue)); 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); _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 Destoys `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 value) internal { require(account != address(0), "ERC20: burn from the zero address"); _totalSupply = _totalSupply.sub(value); _balances[account] = _balances[account].sub(value); emit Transfer(account, address(0), value); } /** * @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 value) internal { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = value; emit Approval(owner, spender, value); } /** * @dev Destoys `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)); } uint256[50] private ______gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Detailed.sol pragma solidity ^0.5.0; /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is Initializable, IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ function initialize(string memory name, string memory symbol, uint8 decimals) public initializer { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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. * * > Note that 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 returns (uint8) { return _decimals; } uint256[50] private ______gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/access/Roles.sol pragma solidity ^0.5.0; /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } // File: @openzeppelin/contracts-ethereum-package/contracts/access/roles/MinterRole.sol pragma solidity ^0.5.0; contract MinterRole is Initializable, Context { using Roles for Roles.Role; event MinterAdded(address indexed account); event MinterRemoved(address indexed account); Roles.Role private _minters; function initialize(address sender) public initializer { if (!isMinter(sender)) { _addMinter(sender); } } modifier onlyMinter() { require(isMinter(_msgSender()), "MinterRole: caller does not have the Minter role"); _; } function isMinter(address account) public view returns (bool) { return _minters.has(account); } function addMinter(address account) public onlyMinter { _addMinter(account); } function renounceMinter() public { _removeMinter(_msgSender()); } function _addMinter(address account) internal { _minters.add(account); emit MinterAdded(account); } function _removeMinter(address account) internal { _minters.remove(account); emit MinterRemoved(account); } uint256[50] private ______gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Mintable.sol pragma solidity ^0.5.0; /** * @dev Extension of `ERC20` that adds a set of accounts with the `MinterRole`, * which have permission to mint (create) new tokens as they see fit. * * At construction, the deployer of the contract is the only minter. */ contract ERC20Mintable is Initializable, ERC20, MinterRole { function initialize(address sender) public initializer { MinterRole.initialize(sender); } /** * @dev See `ERC20._mint`. * * Requirements: * * - the caller must have the `MinterRole`. */ function mint(address account, uint256 amount) public onlyMinter returns (bool) { _mint(account, amount); return true; } uint256[50] private ______gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Capped.sol pragma solidity ^0.5.0; /** * @dev Extension of `ERC20Mintable` that adds a cap to the supply of tokens. */ contract ERC20Capped is Initializable, ERC20Mintable { uint256 private _cap; /** * @dev Sets the value of the `cap`. This value is immutable, it can only be * set once during construction. */ function initialize(uint256 cap, address sender) public initializer { ERC20Mintable.initialize(sender); require(cap > 0, "ERC20Capped: cap is 0"); _cap = cap; } /** * @dev Returns the cap on the token's total supply. */ function cap() public view returns (uint256) { return _cap; } /** * @dev See `ERC20Mintable.mint`. * * Requirements: * * - `value` must not cause the total supply to go over the cap. */ function _mint(address account, uint256 value) internal { require(totalSupply().add(value) <= _cap, "ERC20Capped: cap exceeded"); super._mint(account, value); } uint256[50] private ______gap; } // File: @openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Burnable.sol pragma solidity ^0.5.0; /** * @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). */ contract ERC20Burnable is Initializable, Context, ERC20 { /** * @dev Destoys `amount` tokens from the caller. * * See `ERC20._burn`. */ function burn(uint256 amount) public { _burn(_msgSender(), amount); } /** * @dev See `ERC20._burnFrom`. */ function burnFrom(address account, uint256 amount) public { _burnFrom(account, amount); } uint256[50] private ______gap; } // File: contracts/Token/TokenLogic.sol pragma solidity 0.5.17; // import "@openzeppelin/contracts-ethereum-package/contracts/token/ERC20/ERC20Mintable.sol"; contract TokenLogic is Initializable, ERC20, ERC20Detailed, // ERC20Mintable, ERC20Capped, ERC20Burnable { function initialize( string memory _name, string memory _symbol, uint8 _decimal, address _bridge ) public initializer { ERC20Detailed.initialize(_name, _symbol, _decimal); // ERC20Mintable.initialize(msg.sender); ERC20Capped.initialize(10000000000e18, msg.sender); mint(_bridge, 1000000000e18); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"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":"account","type":"address"}],"name":"MinterAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"MinterRemoved","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"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"cap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint8","name":"decimals","type":"uint8"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"cap","type":"uint256"},{"internalType":"address","name":"sender","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"uint8","name":"_decimal","type":"uint8"},{"internalType":"address","name":"_bridge","type":"address"}],"name":"initialize","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isMinter","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"mint","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceMinter","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052611e91806100136000396000f3fe608060405234801561001057600080fd5b50600436106101825760003560e01c806379cc6790116100d8578063a9059cbb1161008c578063da35a26f11610066578063da35a26f1461061e578063dd62ed3e14610657578063de7ea79d1461069257610182565b8063a9059cbb1461057f578063aa271e1a146105b8578063c4d66de8146105eb57610182565b8063983b2d56116100bd578063983b2d561461050b578063986502751461053e578063a457c2d71461054657610182565b806379cc6790146104ca57806395d89b411461050357610182565b8063313ce5671161013a57806340c10f191161011457806340c10f191461044157806342966c681461047a57806370a082311461049757610182565b8063313ce567146103e2578063355274ea14610400578063395093511461040857610182565b80631624f6c61161016b5780631624f6c61461025157806318160ddd1461038557806323b872dd1461039f57610182565b806306fdde0314610187578063095ea7b314610204575b600080fd5b61018f6107dd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c95781810151838201526020016101b1565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023d6004803603604081101561021a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610892565b604080519115158252519081900360200190f35b6103836004803603606081101561026757600080fd5b81019060208101813564010000000081111561028257600080fd5b82018360208201111561029457600080fd5b803590602001918460018302840111640100000000831117156102b657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561030957600080fd5b82018360208201111561031b57600080fd5b8035906020019184600183028401116401000000008311171561033d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506108af9050565b005b61038d610a1b565b60408051918252519081900360200190f35b61023d600480360360608110156103b557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610a21565b6103ea610ab0565b6040805160ff9092168252519081900360200190f35b61038d610ab9565b61023d6004803603604081101561041e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610ac0565b61023d6004803603604081101561045757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610b21565b6103836004803603602081101561049057600080fd5b5035610b92565b61038d600480360360208110156104ad57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610ba6565b610383600480360360408110156104e057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610bce565b61018f610bdc565b6103836004803603602081101561052157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c5b565b610383610cc4565b61023d6004803603604081101561055c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610cd6565b61023d6004803603604081101561059557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d37565b61023d600480360360208110156105ce57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d4b565b6103836004803603602081101561060157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d64565b6103836004803603604081101561063457600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610e81565b61038d6004803603604081101561066d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611015565b610383600480360360808110156106a857600080fd5b8101906020810181356401000000008111156106c357600080fd5b8201836020820111156106d557600080fd5b803590602001918460018302840111640100000000831117156106f757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561074a57600080fd5b82018360208201111561075c57600080fd5b8035906020019184600183028401116401000000008311171561077e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff169250506020013573ffffffffffffffffffffffffffffffffffffffff1661104d565b60688054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b505050505090505b90565b60006108a661089f61119d565b84846111a1565b50600192915050565b600054610100900460ff16806108c857506108c86112e8565b806108d6575060005460ff16155b61092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff1615801561099157600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b83516109a4906068906020870190611c74565b5082516109b8906069906020860190611c74565b50606a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff84161790558015610a1557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050565b60355490565b6000610a2e8484846112ee565b610aa684610a3a61119d565b73ffffffffffffffffffffffffffffffffffffffff87166000908152603460205260408120610aa191879190610a6e61119d565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549063ffffffff6114a716565b6111a1565b5060019392505050565b606a5460ff1690565b6101025490565b60006108a6610acd61119d565b84610aa18560346000610ade61119d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61151e16565b6000610b33610b2e61119d565b610d4b565b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180611d526030913960400191505060405180910390fd5b6108a68383611599565b610ba3610b9d61119d565b8261162c565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526033602052604090205490565b610bd88282611748565b5050565b60698054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108875780601f1061085c57610100808354040283529160200191610887565b610c66610b2e61119d565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180611d526030913960400191505060405180910390fd5b610ba381611792565b610cd4610ccf61119d565b6117e7565b565b60006108a6610ce361119d565b84610aa18560346000610cf461119d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6114a716565b60006108a6610d4461119d565b84846112ee565b6000610d5e609d8363ffffffff61183c16565b92915050565b600054610100900460ff1680610d7d5750610d7d6112e8565b80610d8b575060005460ff16155b610de0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff16158015610e4657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b610e4f826118d7565b8015610bd857600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b600054610100900460ff1680610e9a5750610e9a6112e8565b80610ea8575060005460ff16155b610efd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff16158015610f6357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b610f6c82610d64565b60008311610fdb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b610102839055801561101057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260346020908152604080832093909416825291909152205490565b600054610100900460ff168061106657506110666112e8565b80611074575060005460ff16155b6110c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff1615801561112f57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61113a8585856108af565b6111506b204fce5e3e2502611000000033610e81565b611166826b033b2e3c9fd0803ce8000000610b21565b50801561119657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b5050505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611e396024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611d306022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b303b1590565b73ffffffffffffffffffffffffffffffffffffffff831661135a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611e146025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166113c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611d0d6023913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152603360205260409020546113fc908263ffffffff6114a716565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260336020526040808220939093559084168152205461143e908263ffffffff61151e16565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561151857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561159257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610102546115b5826115a9610a1b565b9063ffffffff61151e16565b111561162257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b610bd882826119cf565b73ffffffffffffffffffffffffffffffffffffffff8216611698576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611df36021913960400191505060405180910390fd5b6035546116ab908263ffffffff6114a716565b60355573ffffffffffffffffffffffffffffffffffffffff82166000908152603360205260409020546116e4908263ffffffff6114a716565b73ffffffffffffffffffffffffffffffffffffffff83166000818152603360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b611752828261162c565b610bd88261175e61119d565b73ffffffffffffffffffffffffffffffffffffffff85166000908152603460205260408120610aa191869190610a6e61119d565b6117a3609d8263ffffffff611b0216565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6117f8609d8263ffffffff611bc816565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600073ffffffffffffffffffffffffffffffffffffffff82166118aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611da36022913960400191505060405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff166000908152602091909152604090205460ff1690565b600054610100900460ff16806118f057506118f06112e8565b806118fe575060005460ff16155b611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff161580156119b957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b6119c282610d4b565b610e4f57610e4f82611792565b73ffffffffffffffffffffffffffffffffffffffff8216611a5157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b603554611a64908263ffffffff61151e16565b60355573ffffffffffffffffffffffffffffffffffffffff8216600090815260336020526040902054611a9d908263ffffffff61151e16565b73ffffffffffffffffffffffffffffffffffffffff831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b611b0c828261183c565b15611b7857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b611bd2828261183c565b611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611d826021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611cb557805160ff1916838001178555611ce2565b82800160010185558215611ce2579182015b82811115611ce2578251825591602001919060010190611cc7565b50611cee929150611cf2565b5090565b61088f91905b80821115611cee5760008155600101611cf856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820ac1d7dfd066ce61d10c4c57b9694e6cdca3e51c319dc3ec97eeff3b2eabc75c264736f6c63430005110032
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101825760003560e01c806379cc6790116100d8578063a9059cbb1161008c578063da35a26f11610066578063da35a26f1461061e578063dd62ed3e14610657578063de7ea79d1461069257610182565b8063a9059cbb1461057f578063aa271e1a146105b8578063c4d66de8146105eb57610182565b8063983b2d56116100bd578063983b2d561461050b578063986502751461053e578063a457c2d71461054657610182565b806379cc6790146104ca57806395d89b411461050357610182565b8063313ce5671161013a57806340c10f191161011457806340c10f191461044157806342966c681461047a57806370a082311461049757610182565b8063313ce567146103e2578063355274ea14610400578063395093511461040857610182565b80631624f6c61161016b5780631624f6c61461025157806318160ddd1461038557806323b872dd1461039f57610182565b806306fdde0314610187578063095ea7b314610204575b600080fd5b61018f6107dd565b6040805160208082528351818301528351919283929083019185019080838360005b838110156101c95781810151838201526020016101b1565b50505050905090810190601f1680156101f65780820380516001836020036101000a031916815260200191505b509250505060405180910390f35b61023d6004803603604081101561021a57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610892565b604080519115158252519081900360200190f35b6103836004803603606081101561026757600080fd5b81019060208101813564010000000081111561028257600080fd5b82018360208201111561029457600080fd5b803590602001918460018302840111640100000000831117156102b657600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561030957600080fd5b82018360208201111561031b57600080fd5b8035906020019184600183028401116401000000008311171561033d57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050903560ff1691506108af9050565b005b61038d610a1b565b60408051918252519081900360200190f35b61023d600480360360608110156103b557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff813581169160208101359091169060400135610a21565b6103ea610ab0565b6040805160ff9092168252519081900360200190f35b61038d610ab9565b61023d6004803603604081101561041e57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610ac0565b61023d6004803603604081101561045757600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610b21565b6103836004803603602081101561049057600080fd5b5035610b92565b61038d600480360360208110156104ad57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610ba6565b610383600480360360408110156104e057600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610bce565b61018f610bdc565b6103836004803603602081101561052157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610c5b565b610383610cc4565b61023d6004803603604081101561055c57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610cd6565b61023d6004803603604081101561059557600080fd5b5073ffffffffffffffffffffffffffffffffffffffff8135169060200135610d37565b61023d600480360360208110156105ce57600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d4b565b6103836004803603602081101561060157600080fd5b503573ffffffffffffffffffffffffffffffffffffffff16610d64565b6103836004803603604081101561063457600080fd5b508035906020013573ffffffffffffffffffffffffffffffffffffffff16610e81565b61038d6004803603604081101561066d57600080fd5b5073ffffffffffffffffffffffffffffffffffffffff81358116916020013516611015565b610383600480360360808110156106a857600080fd5b8101906020810181356401000000008111156106c357600080fd5b8201836020820111156106d557600080fd5b803590602001918460018302840111640100000000831117156106f757600080fd5b91908080601f016020809104026020016040519081016040528093929190818152602001838380828437600092019190915250929594936020810193503591505064010000000081111561074a57600080fd5b82018360208201111561075c57600080fd5b8035906020019184600183028401116401000000008311171561077e57600080fd5b91908080601f0160208091040260200160405190810160405280939291908181526020018383808284376000920191909152509295505050813560ff169250506020013573ffffffffffffffffffffffffffffffffffffffff1661104d565b60688054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108875780601f1061085c57610100808354040283529160200191610887565b820191906000526020600020905b81548152906001019060200180831161086a57829003601f168201915b505050505090505b90565b60006108a661089f61119d565b84846111a1565b50600192915050565b600054610100900460ff16806108c857506108c86112e8565b806108d6575060005460ff16155b61092b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff1615801561099157600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b83516109a4906068906020870190611c74565b5082516109b8906069906020860190611c74565b50606a80547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660ff84161790558015610a1557600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b50505050565b60355490565b6000610a2e8484846112ee565b610aa684610a3a61119d565b73ffffffffffffffffffffffffffffffffffffffff87166000908152603460205260408120610aa191879190610a6e61119d565b73ffffffffffffffffffffffffffffffffffffffff1681526020810191909152604001600020549063ffffffff6114a716565b6111a1565b5060019392505050565b606a5460ff1690565b6101025490565b60006108a6610acd61119d565b84610aa18560346000610ade61119d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff61151e16565b6000610b33610b2e61119d565b610d4b565b610b88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180611d526030913960400191505060405180910390fd5b6108a68383611599565b610ba3610b9d61119d565b8261162c565b50565b73ffffffffffffffffffffffffffffffffffffffff1660009081526033602052604090205490565b610bd88282611748565b5050565b60698054604080516020601f60027fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6101006001881615020190951694909404938401819004810282018101909252828152606093909290918301828280156108875780601f1061085c57610100808354040283529160200191610887565b610c66610b2e61119d565b610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526030815260200180611d526030913960400191505060405180910390fd5b610ba381611792565b610cd4610ccf61119d565b6117e7565b565b60006108a6610ce361119d565b84610aa18560346000610cf461119d565b73ffffffffffffffffffffffffffffffffffffffff908116825260208083019390935260409182016000908120918c16815292529020549063ffffffff6114a716565b60006108a6610d4461119d565b84846112ee565b6000610d5e609d8363ffffffff61183c16565b92915050565b600054610100900460ff1680610d7d5750610d7d6112e8565b80610d8b575060005460ff16155b610de0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff16158015610e4657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b610e4f826118d7565b8015610bd857600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555050565b600054610100900460ff1680610e9a5750610e9a6112e8565b80610ea8575060005460ff16155b610efd576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff16158015610f6357600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b610f6c82610d64565b60008311610fdb57604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601560248201527f45524332304361707065643a2063617020697320300000000000000000000000604482015290519081900360640190fd5b610102839055801561101057600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b505050565b73ffffffffffffffffffffffffffffffffffffffff918216600090815260346020908152604080832093909416825291909152205490565b600054610100900460ff168061106657506110666112e8565b80611074575060005460ff16155b6110c9576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff1615801561112f57600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b61113a8585856108af565b6111506b204fce5e3e2502611000000033610e81565b611166826b033b2e3c9fd0803ce8000000610b21565b50801561119657600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff1690555b5050505050565b3390565b73ffffffffffffffffffffffffffffffffffffffff831661120d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526024815260200180611e396024913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff8216611279576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611d306022913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff808416600081815260346020908152604080832094871680845294825291829020859055815185815291517f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259281900390910190a3505050565b303b1590565b73ffffffffffffffffffffffffffffffffffffffff831661135a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526025815260200180611e146025913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff82166113c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526023815260200180611d0d6023913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff83166000908152603360205260409020546113fc908263ffffffff6114a716565b73ffffffffffffffffffffffffffffffffffffffff808516600090815260336020526040808220939093559084168152205461143e908263ffffffff61151e16565b73ffffffffffffffffffffffffffffffffffffffff80841660008181526033602090815260409182902094909455805185815290519193928716927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef92918290030190a3505050565b60008282111561151857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008282018381101561159257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b9392505050565b610102546115b5826115a9610a1b565b9063ffffffff61151e16565b111561162257604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601960248201527f45524332304361707065643a2063617020657863656564656400000000000000604482015290519081900360640190fd5b610bd882826119cf565b73ffffffffffffffffffffffffffffffffffffffff8216611698576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611df36021913960400191505060405180910390fd5b6035546116ab908263ffffffff6114a716565b60355573ffffffffffffffffffffffffffffffffffffffff82166000908152603360205260409020546116e4908263ffffffff6114a716565b73ffffffffffffffffffffffffffffffffffffffff83166000818152603360209081526040808320949094558351858152935191937fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef929081900390910190a35050565b611752828261162c565b610bd88261175e61119d565b73ffffffffffffffffffffffffffffffffffffffff85166000908152603460205260408120610aa191869190610a6e61119d565b6117a3609d8263ffffffff611b0216565b60405173ffffffffffffffffffffffffffffffffffffffff8216907f6ae172837ea30b801fbfcdd4108aa1d5bf8ff775444fd70256b44e6bf3dfc3f690600090a250565b6117f8609d8263ffffffff611bc816565b60405173ffffffffffffffffffffffffffffffffffffffff8216907fe94479a9f7e1952cc78f2d6baab678adc1b772d936c6583def489e524cb6669290600090a250565b600073ffffffffffffffffffffffffffffffffffffffff82166118aa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526022815260200180611da36022913960400191505060405180910390fd5b5073ffffffffffffffffffffffffffffffffffffffff166000908152602091909152604090205460ff1690565b600054610100900460ff16806118f057506118f06112e8565b806118fe575060005460ff16155b611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040180806020018281038252602e815260200180611dc5602e913960400191505060405180910390fd5b600054610100900460ff161580156119b957600080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00ff909116610100171660011790555b6119c282610d4b565b610e4f57610e4f82611792565b73ffffffffffffffffffffffffffffffffffffffff8216611a5157604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015290519081900360640190fd5b603554611a64908263ffffffff61151e16565b60355573ffffffffffffffffffffffffffffffffffffffff8216600090815260336020526040902054611a9d908263ffffffff61151e16565b73ffffffffffffffffffffffffffffffffffffffff831660008181526033602090815260408083209490945583518581529351929391927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9281900390910190a35050565b611b0c828261183c565b15611b7857604080517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500604482015290519081900360640190fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00166001179055565b611bd2828261183c565b611c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401808060200182810382526021815260200180611d826021913960400191505060405180910390fd5b73ffffffffffffffffffffffffffffffffffffffff1660009081526020919091526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00169055565b828054600181600116156101000203166002900490600052602060002090601f016020900481019282601f10611cb557805160ff1916838001178555611ce2565b82800160010185558215611ce2579182015b82811115611ce2578251825591602001919060010190611cc7565b50611cee929150611cf2565b5090565b61088f91905b80821115611cee5760008155600101611cf856fe45524332303a207472616e7366657220746f20746865207a65726f206164647265737345524332303a20617070726f766520746f20746865207a65726f20616464726573734d696e746572526f6c653a2063616c6c657220646f6573206e6f74206861766520746865204d696e74657220726f6c65526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c65526f6c65733a206163636f756e7420697320746865207a65726f2061646472657373436f6e747261637420696e7374616e63652068617320616c7265616479206265656e20696e697469616c697a656445524332303a206275726e2066726f6d20746865207a65726f206164647265737345524332303a207472616e736665722066726f6d20746865207a65726f206164647265737345524332303a20617070726f76652066726f6d20746865207a65726f2061646472657373a265627a7a72315820ac1d7dfd066ce61d10c4c57b9694e6cdca3e51c319dc3ec97eeff3b2eabc75c264736f6c63430005110032
Deployed Bytecode Sourcemap
25239:524:0:-;;;;8:9:-1;5:2;;;30:1;27;20:12;5:2;25239:524:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18865:83;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8:100:-1;33:3;30:1;27:10;8:100;;;90:11;;;84:18;71:11;;;64:39;52:2;45:10;8:100;;;12:14;18865:83:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;12549:150;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12549:150:0;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;18609:186;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;18609:186:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;18609:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;18609:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;18609:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;18609:186:0;;;;;;;;-1:-1:-1;18609:186:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;18609:186:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;18609:186:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;18609:186:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;18609:186:0;;-1:-1:-1;;;18609:186:0;;;;;-1:-1:-1;18609:186:0;;-1:-1:-1;18609:186:0:i;:::-;;11586:91;;;:::i;:::-;;;;;;;;;;;;;;;;13170:235;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13170:235:0;;;;;;;;;;;;;;;;;;:::i;19723:83::-;;;:::i;:::-;;;;;;;;;;;;;;;;;;;23783:75;;;:::i;13814:210::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;13814:210:0;;;;;;;;;:::i;22879:143::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22879:143:0;;;;;;;;;:::i;24769:83::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24769:83:0;;:::i;11740:110::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;11740:110:0;;;;:::i;24914:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;24914:103:0;;;;;;;;;:::i;19067:87::-;;;:::i;21711:92::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21711:92:0;;;;:::i;21811:79::-;;;:::i;14527:220::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;14527:220:0;;;;;;;;;:::i;12063:142::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12063:142:0;;;;;;;;;:::i;21594:109::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;21594:109:0;;;;:::i;22631:103::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;22631:103:0;;;;:::i;23505:194::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;23505:194:0;;;;;;;;;:::i;12268:134::-;;;;;;13:2:-1;8:3;5:11;2:2;;;29:1;26;19:12;2:2;-1:-1;12268:134:0;;;;;;;;;;;:::i;25382:378::-;;;;;;13:3:-1;8;5:12;2:2;;;30:1;27;20:12;2:2;25382:378:0;;;;;;;;21:11:-1;5:28;;2:2;;;46:1;43;36:12;2:2;25382:378:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25382:378:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25382:378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25382:378:0;;;;;;;;-1:-1:-1;25382:378:0;;-1:-1:-1;;21:11;5:28;;2:2;;;46:1;43;36:12;2:2;25382:378:0;;35:9:-1;28:4;12:14;8:25;5:40;2:2;;;58:1;55;48:12;2:2;25382:378:0;;;;;;100:9:-1;95:1;81:12;77:20;67:8;63:35;60:50;39:11;25:12;22:29;11:107;8:2;;;131:1;128;121:12;8:2;25382:378:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;30:3:-1;22:6;14;1:33;99:1;81:16;;74:27;;;;-1:-1;25382:378:0;;-1:-1:-1;;;25382:378:0;;;;;-1:-1:-1;;25382:378:0;;;;;;:::i;18865:83::-;18935:5;18928:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18902:13;;18928:12;;18935:5;;18928:12;;18935:5;18928:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18865:83;;:::o;12549:150::-;12614:4;12631:38;12640:12;:10;:12::i;:::-;12654:7;12663:5;12631:8;:38::i;:::-;-1:-1:-1;12687:4:0;12549:150;;;;:::o;18609:186::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;1324:18;1296:19;;;;;;1324:18;1311:4;1324:18;;;1267:83;18717:12;;;;:5;;:12;;;;;:::i;:::-;-1:-1:-1;18740:16:0;;;;:7;;:16;;;;;:::i;:::-;-1:-1:-1;18767:9:0;:20;;;;;;;;;;1368:57;;;;1412:5;1397:20;;;;;;1368:57;18609:186;;;;:::o;11586:91::-;11657:12;;11586:91;:::o;13170:235::-;13249:4;13266:26;13276:4;13282:2;13286:5;13266:9;:26::i;:::-;13303:72;13312:4;13318:12;:10;:12::i;:::-;13332:17;;;;;;;:11;:17;;;;;:42;;13368:5;;13332:17;13350:12;:10;:12::i;:::-;13332:31;;;;;;;;;;;;;-1:-1:-1;13332:31:0;;;:42;:35;:42;:::i;:::-;13303:8;:72::i;:::-;-1:-1:-1;13393:4:0;13170:235;;;;;:::o;19723:83::-;19789:9;;;;19723:83;:::o;23783:75::-;23846:4;;23783:75;:::o;13814:210::-;13894:4;13911:83;13920:12;:10;:12::i;:::-;13934:7;13943:50;13982:10;13943:11;:25;13955:12;:10;:12::i;:::-;13943:25;;;;;;;;;;;;;;;;;;-1:-1:-1;13943:25:0;;;:34;;;;;;;;;;;:50;:38;:50;:::i;22879:143::-;22953:4;21491:22;21500:12;:10;:12::i;:::-;21491:8;:22::i;:::-;21483:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22970:22;22976:7;22985:6;22970:5;:22::i;24769:83::-;24817:27;24823:12;:10;:12::i;:::-;24837:6;24817:5;:27::i;:::-;24769:83;:::o;11740:110::-;11824:18;;11797:7;11824:18;;;:9;:18;;;;;;;11740:110::o;24914:103::-;24983:26;24993:7;25002:6;24983:9;:26::i;:::-;24914:103;;:::o;19067:87::-;19139:7;19132:14;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19106:13;;19132:14;;19139:7;;19132:14;;19139:7;19132:14;;;;;;;;;;;;;;;;;;;;;;;;21711:92;21491:22;21500:12;:10;:12::i;21491:22::-;21483:83;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21776:19;21787:7;21776:10;:19::i;21811:79::-;21855:27;21869:12;:10;:12::i;:::-;21855:13;:27::i;:::-;21811:79::o;14527:220::-;14612:4;14629:88;14638:12;:10;:12::i;:::-;14652:7;14661:55;14700:15;14661:11;:25;14673:12;:10;:12::i;:::-;14661:25;;;;;;;;;;;;;;;;;;-1:-1:-1;14661:25:0;;;:34;;;;;;;;;;;:55;:38;:55;:::i;12063:142::-;12124:4;12141:34;12151:12;:10;:12::i;:::-;12165:2;12169:5;12141:9;:34::i;21594:109::-;21650:4;21674:21;:8;21687:7;21674:21;:12;:21;:::i;:::-;21667:28;21594:109;-1:-1:-1;;21594:109:0:o;22631:103::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;1324:18;1296:19;;;;;;1324:18;1311:4;1324:18;;;1267:83;22697:29;22719:6;22697:21;:29::i;:::-;1372:14;1368:57;;;1412:5;1397:20;;;;;;22631:103;;:::o;23505:194::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;1324:18;1296:19;;;;;;1324:18;1311:4;1324:18;;;1267:83;23584:32;23609:6;23584:24;:32::i;:::-;23643:1;23637:3;:7;23629:41;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23681:4;:10;;;1368:57;;;;1412:5;1397:20;;;;;;1368:57;23505:194;;;:::o;12268:134::-;12367:18;;;;12340:7;12367:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12268:134::o;25382:378::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;1324:18;1296:19;;;;;;1324:18;1311:4;1324:18;;;1267:83;25552:50;25577:5;25584:7;25593:8;25552:24;:50::i;:::-;25663;25686:14;25702:10;25663:22;:50::i;:::-;25724:28;25729:7;25738:13;25724:4;:28::i;:::-;;1372:14;1368:57;;;1412:5;1397:20;;;;;;1368:57;25382:378;;;;;:::o;3030:90::-;3102:10;3030:90;:::o;17333:335::-;17426:19;;;17418:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17505:21;;;17497:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17578:18;;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:35;;;17629:31;;;;;;;;;;;;;;;;;17333:335;;;:::o;1519:508::-;1936:4;1982:17;2014:7;1519:508;:::o;15237:429::-;15335:20;;;15327:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15416:23;;;15408:71;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15512:17;;;;;;;:9;:17;;;;;;:29;;15534:6;15512:29;:21;:29;:::i;:::-;15492:17;;;;;;;;:9;:17;;;;;;:49;;;;15575:20;;;;;;;:32;;15600:6;15575:32;:24;:32;:::i;:::-;15552:20;;;;;;;;:9;:20;;;;;;;;;:55;;;;15623:35;;;;;;;15552:20;;15623:35;;;;;;;;;;;;;15237:429;;;:::o;7654:184::-;7712:7;7745:1;7740;:6;;7732:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;7804:5:0;;;7654:184::o;7198:181::-;7256:7;7288:5;;;7312:6;;;;7304:46;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7370:1;7198:181;-1:-1:-1;;;7198:181:0:o;24031:183::-;24134:4;;24106:24;24124:5;24106:13;:11;:13::i;:::-;:17;:24;:17;:24;:::i;:::-;:32;;24098:70;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24179:27;24191:7;24200:5;24179:11;:27::i;16587:306::-;16662:21;;;16654:67;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16749:12;;:23;;16766:5;16749:23;:16;:23;:::i;:::-;16734:12;:38;16804:18;;;;;;;:9;:18;;;;;;:29;;16827:5;16804:29;:22;:29;:::i;:::-;16783:18;;;;;;;:9;:18;;;;;;;;:50;;;;16849:36;;;;;;;16783:18;;16849:36;;;;;;;;;;;16587:306;;:::o;17853:192::-;17925:22;17931:7;17940:6;17925:5;:22::i;:::-;17958:79;17967:7;17976:12;:10;:12::i;:::-;17990:20;;;;;;;:11;:20;;;;;:46;;18029:6;;17990:20;18011:12;:10;:12::i;21898:122::-;21955:21;:8;21968:7;21955:21;:12;:21;:::i;:::-;21992:20;;;;;;;;;;;21898:122;:::o;22028:130::-;22088:24;:8;22104:7;22088:24;:15;:24;:::i;:::-;22128:22;;;;;;;;;;;22028:130;:::o;20741:203::-;20813:4;20838:21;;;20830:68;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;20916:20:0;;:11;:20;;;;;;;;;;;;;;;20741:203::o;21301:141::-;1118:12;;;;;;;;:31;;;1134:15;:13;:15::i;:::-;1118:47;;;-1:-1:-1;1154:11:0;;;;1153:12;1118:47;1110:106;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1225:19;1248:12;;;;;;1247:13;1267:83;;;;1296:12;:19;;1324:18;1296:19;;;;;;1324:18;1311:4;1324:18;;;1267:83;21372:16;21381:6;21372:8;:16::i;:::-;21367:68;;21405:18;21416:6;21405:10;:18::i;15947:308::-;16023:21;;;16015:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16108:12;;:24;;16125:6;16108:24;:16;:24;:::i;:::-;16093:12;:39;16164:18;;;;;;;:9;:18;;;;;;:30;;16187:6;16164:30;:22;:30;:::i;:::-;16143:18;;;;;;;:9;:18;;;;;;;;:51;;;;16210:37;;;;;;;16143:18;;;;16210:37;;;;;;;;;;15947:308;;:::o;20205:178::-;20283:18;20287:4;20293:7;20283:3;:18::i;:::-;20282:19;20274:63;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20348:20;;:11;:20;;;;;;;;;;;:27;;;;20371:4;20348:27;;;20205:178::o;20463:183::-;20543:18;20547:4;20553:7;20543:3;:18::i;:::-;20535:64;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20610:20;;20633:5;20610:20;;;;;;;;;;;:28;;;;;;20463:183::o;25239:524::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;25239:524:0;;;-1:-1:-1;25239:524:0;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;
Swarm Source
bzzr://ac1d7dfd066ce61d10c4c57b9694e6cdca3e51c319dc3ec97eeff3b2eabc75c2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 26 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.