ERC-20
Artificial Intelligence
Overview
Max Total Supply
240,000,000 TMC
Holders
57 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TMC
Compiler Version
v0.8.9+commit.e5eed63a
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.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 Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev 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 `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, 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 `from` to `to` 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 from, address to, uint256 amount ) external returns (bool); } // File: contracts\open-zeppelin-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) { 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; } } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/utils/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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: TMC.sol pragma solidity ^0.8.9; // File: contracts\ERC20\TokenMintERC20Token.sol pragma solidity >=0.8.0; contract TMC is Context, IERC20Metadata, Ownable { using SafeMath for uint256; mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; uint8 private constant _decimals = 18; uint256 public constant _maxMintable = 300_000_000 * (10 ** _decimals); // 300 Million or 100% uint256 public constant _totalMintableAtTokenGenerationEvent = 240_000_000 * (10 ** _decimals); // 240 Million or 80% uint256 public constant _finalMintableAmount = _maxMintable - _totalMintableAtTokenGenerationEvent; // 60 Million or 20 % uint256 public _mintable = _finalMintableAmount; constructor ( string memory name_, string memory symbol_, uint256 _mintAmount ) Ownable() { require( _mintAmount >0 && _mintAmount <= _totalMintableAtTokenGenerationEvent, "Invalid mint amount" ); _name = name_; _symbol = symbol_; _mint(owner(), _mintAmount); } function mint(uint256 amount) external onlyOwner { require(amount > 0 && amount <= _mintable, "Amount out of bounds"); _mintable -= amount; _mint(owner(), amount); } /** * @dev Burns a specific amount of tokens. * @param value The amount of lowest token units to be burned. */ function burn(uint256 value) public { _burn(msg.sender, value); } function name() public view virtual override returns (string memory) { return _name; } function symbol() public view virtual override returns (string memory) { return _symbol; } function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } function transfer(address to, uint256 amount) public virtual override returns (bool) { require(to != address(0), "ERC20: Transfer address must be different from 0x0. Use burn() insted"); require( balanceOf(to) + amount >= balanceOf(to), "ERC20: Amount's overflow" ); require(amount > 0, "ERC20: Transfer amount must be greater than zero"); _transfer(_msgSender(), to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } function approve(address spender, uint256 amount) public virtual override returns (bool) { require(amount > 0, "Amount not valid"); _approve(_msgSender(), spender, amount); // allowance return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { require(to != address(0), "Use burn() instead"); require(amount > 0, "Amount not valid"); require(balanceOf(from) >= amount, "Sender balance not enough"); require(balanceOf(to) + amount >= balanceOf(to), "ERC20: Amount's overflow" ); _transfer(from, to, amount); uint256 currentAllowance = _allowances[from][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(from, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to `approve` that can be used as a mitigation for * problems described in `IERC20.approve`. * * Emits an `Approval` event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - 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"); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _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: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); require(amount>0, "ERC20: approve of amount less or equal to zero"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @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, msg.sender, _allowances[account][msg.sender].sub(amount)); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"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":[],"name":"_finalMintableAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_maxMintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_mintable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_totalMintableAtTokenGenerationEvent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"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":"value","type":"uint256"}],"name":"burn","outputs":[],"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":[{"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":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","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
60806040526012600a6200001491906200062f565b630e4e1c0062000025919062000680565b6012600a6200003591906200062f565b6311e1a30062000046919062000680565b620000529190620006e1565b6006553480156200006257600080fd5b50604051620033e6380380620033e68339818101604052810190620000889190620008ea565b620000a86200009c6200017760201b60201c565b6200017f60201b60201c565b600081118015620000d957506012600a620000c491906200062f565b630e4e1c00620000d5919062000680565b8111155b6200011b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200011290620009e5565b60405180910390fd5b826004908051906020019062000133929190620003e5565b5081600590805190602001906200014c929190620003e5565b506200016e620001616200024360201b60201c565b826200026c60201b60201c565b50505062000b69565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620002df576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002d69062000a57565b60405180910390fd5b620002f360008383620003db60201b60201c565b806003600082825462000307919062000a79565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003bb919062000ae7565b60405180910390a3620003d760008383620003e060201b60201c565b5050565b505050565b505050565b828054620003f39062000b33565b90600052602060002090601f01602090048101928262000417576000855562000463565b82601f106200043257805160ff191683800117855562000463565b8280016001018555821562000463579182015b828111156200046257825182559160200191906001019062000445565b5b50905062000472919062000476565b5090565b5b808211156200049157600081600090555060010162000477565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200052357808604811115620004fb57620004fa62000495565b5b60018516156200050b5780820291505b80810290506200051b85620004c4565b9450620004db565b94509492505050565b6000826200053e576001905062000611565b816200054e576000905062000611565b81600181146200056757600281146200057257620005a8565b600191505062000611565b60ff84111562000587576200058662000495565b5b8360020a915084821115620005a157620005a062000495565b5b5062000611565b5060208310610133831016604e8410600b8410161715620005e25782820a905083811115620005dc57620005db62000495565b5b62000611565b620005f18484846001620004d1565b925090508184048111156200060b576200060a62000495565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b60006200063c8262000618565b9150620006498362000622565b9250620006787fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846200052c565b905092915050565b60006200068d8262000618565b91506200069a8362000618565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620006d657620006d562000495565b5b828202905092915050565b6000620006ee8262000618565b9150620006fb8362000618565b92508282101562000711576200071062000495565b5b828203905092915050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000785826200073a565b810181811067ffffffffffffffff82111715620007a757620007a66200074b565b5b80604052505050565b6000620007bc6200071c565b9050620007ca82826200077a565b919050565b600067ffffffffffffffff821115620007ed57620007ec6200074b565b5b620007f8826200073a565b9050602081019050919050565b60005b838110156200082557808201518184015260208101905062000808565b8381111562000835576000848401525b50505050565b6000620008526200084c84620007cf565b620007b0565b90508281526020810184848401111562000871576200087062000735565b5b6200087e84828562000805565b509392505050565b600082601f8301126200089e576200089d62000730565b5b8151620008b08482602086016200083b565b91505092915050565b620008c48162000618565b8114620008d057600080fd5b50565b600081519050620008e481620008b9565b92915050565b60008060006060848603121562000906576200090562000726565b5b600084015167ffffffffffffffff8111156200092757620009266200072b565b5b620009358682870162000886565b935050602084015167ffffffffffffffff8111156200095957620009586200072b565b5b620009678682870162000886565b92505060406200097a86828701620008d3565b9150509250925092565b600082825260208201905092915050565b7f496e76616c6964206d696e7420616d6f756e7400000000000000000000000000600082015250565b6000620009cd60138362000984565b9150620009da8262000995565b602082019050919050565b6000602082019050818103600083015262000a0081620009be565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a3f601f8362000984565b915062000a4c8262000a07565b602082019050919050565b6000602082019050818103600083015262000a728162000a30565b9050919050565b600062000a868262000618565b915062000a938362000618565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000acb5762000aca62000495565b5b828201905092915050565b62000ae18162000618565b82525050565b600060208201905062000afe600083018462000ad6565b92915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000b4c57607f821691505b6020821081141562000b635762000b6262000b04565b5b50919050565b61286d8062000b796000396000f3fe608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063a9059cbb11610071578063a9059cbb14610335578063b056427b14610365578063dd62ed3e14610383578063e80a3558146103b3578063f2fde38b146103d15761012c565b80638da5cb5b1461028f5780638ff4929e146102ad57806395d89b41146102cb578063a0712d68146102e9578063a457c2d7146103055761012c565b806339509351116100f457806339509351146101eb57806342966c681461021b57806347fc9ae81461023757806370a0823114610255578063715018a6146102855761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103ed565b6040516101469190611740565b60405180910390f35b610169600480360381019061016491906117fb565b61047f565b6040516101769190611856565b60405180910390f35b6101876104df565b6040516101949190611880565b60405180910390f35b6101b760048036038101906101b2919061189b565b6104e9565b6040516101c49190611856565b60405180910390f35b6101d561073c565b6040516101e2919061190a565b60405180910390f35b610205600480360381019061020091906117fb565b610745565b6040516102129190611856565b60405180910390f35b61023560048036038101906102309190611925565b61077c565b005b61023f610789565b60405161024c9190611880565b60405180910390f35b61026f600480360381019061026a9190611952565b6107a9565b60405161027c9190611880565b60405180910390f35b61028d6107f2565b005b610297610806565b6040516102a4919061198e565b60405180910390f35b6102b561082f565b6040516102c29190611880565b60405180910390f35b6102d3610876565b6040516102e09190611740565b60405180910390f35b61030360048036038101906102fe9190611925565b610908565b005b61031f600480360381019061031a91906117fb565b61098e565b60405161032c9190611856565b60405180910390f35b61034f600480360381019061034a91906117fb565b610a05565b60405161035c9190611856565b60405180910390f35b61036d610b33565b60405161037a9190611880565b60405180910390f35b61039d600480360381019061039891906119a9565b610b39565b6040516103aa9190611880565b60405180910390f35b6103bb610bc0565b6040516103c89190611880565b60405180910390f35b6103eb60048036038101906103e69190611952565b610be0565b005b6060600480546103fc90611a18565b80601f016020809104026020016040519081016040528092919081815260200182805461042890611a18565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b60008082116104c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ba90611a96565b60405180910390fd5b6104d56104ce610c64565b8484610c6c565b6001905092915050565b6000600354905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561055a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055190611b02565b60405180910390fd5b6000821161059d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059490611a96565b60405180910390fd5b816105a7856107a9565b10156105e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105df90611b6e565b60405180910390fd5b6105f1836107a9565b826105fb856107a9565b6106059190611bbd565b1015610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d90611c5f565b60405180910390fd5b610651848484610e7a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061069c610c64565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561071c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071390611cf1565b60405180910390fd5b61073085610728610c64565b858403610c6c565b60019150509392505050565b60006012905090565b600080610750610c64565b90506107718185856107628589610b39565b61076c9190611bbd565b610c6c565b600191505092915050565b6107863382611176565b50565b6012600a6107979190611e44565b630e4e1c006107a69190611e8f565b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107fa611346565b61080460006113c4565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6012600a61083d9190611e44565b630e4e1c0061084c9190611e8f565b6012600a61085a9190611e44565b6311e1a3006108699190611e8f565b6108739190611ee9565b81565b60606005805461088590611a18565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190611a18565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b610910611346565b60008111801561092257506006548111155b610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890611f69565b60405180910390fd5b80600660008282546109739190611ee9565b9250508190555061098b610985610806565b82611488565b50565b600080610999610c64565b905060006109a78286610b39565b9050838110156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390611ffb565b60405180910390fd5b6109f98286868403610c6c565b60019250505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d906120b3565b60405180910390fd5b610a7f836107a9565b82610a89856107a9565b610a939190611bbd565b1015610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90611c5f565b60405180910390fd5b60008211610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90612145565b60405180910390fd5b610b29610b22610c64565b8484610e7a565b6001905092915050565b60065481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610bce9190611e44565b6311e1a300610bdd9190611e8f565b81565b610be8611346565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906121d7565b60405180910390fd5b610c61816113c4565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390612269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d43906122fb565b60405180910390fd5b60008111610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d869061238d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6d9190611880565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061241f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906124b1565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890612543565b60405180910390fd5b61103382600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e090919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110c882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163f90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111689190611880565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd906125d5565b60405180910390fd5b6111f28260008361169d565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090612667565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161132d9190611880565b60405180910390a3611341836000846116a2565b505050565b61134e610c64565b73ffffffffffffffffffffffffffffffffffffffff1661136c610806565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b9906126d3565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef9061273f565b60405180910390fd5b6115046000838361169d565b80600360008282546115169190611bbd565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115c89190611880565b60405180910390a36115dc600083836116a2565b5050565b600082821115611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906127ab565b60405180910390fd5b600082846116339190611ee9565b90508091505092915050565b600080828461164e9190611bbd565b905083811015611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612817565b60405180910390fd5b8091505092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116e15780820151818401526020810190506116c6565b838111156116f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000611712826116a7565b61171c81856116b2565b935061172c8185602086016116c3565b611735816116f6565b840191505092915050565b6000602082019050818103600083015261175a8184611707565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061179282611767565b9050919050565b6117a281611787565b81146117ad57600080fd5b50565b6000813590506117bf81611799565b92915050565b6000819050919050565b6117d8816117c5565b81146117e357600080fd5b50565b6000813590506117f5816117cf565b92915050565b6000806040838503121561181257611811611762565b5b6000611820858286016117b0565b9250506020611831858286016117e6565b9150509250929050565b60008115159050919050565b6118508161183b565b82525050565b600060208201905061186b6000830184611847565b92915050565b61187a816117c5565b82525050565b60006020820190506118956000830184611871565b92915050565b6000806000606084860312156118b4576118b3611762565b5b60006118c2868287016117b0565b93505060206118d3868287016117b0565b92505060406118e4868287016117e6565b9150509250925092565b600060ff82169050919050565b611904816118ee565b82525050565b600060208201905061191f60008301846118fb565b92915050565b60006020828403121561193b5761193a611762565b5b6000611949848285016117e6565b91505092915050565b60006020828403121561196857611967611762565b5b6000611976848285016117b0565b91505092915050565b61198881611787565b82525050565b60006020820190506119a3600083018461197f565b92915050565b600080604083850312156119c0576119bf611762565b5b60006119ce858286016117b0565b92505060206119df858286016117b0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a3057607f821691505b60208210811415611a4457611a436119e9565b5b50919050565b7f416d6f756e74206e6f742076616c696400000000000000000000000000000000600082015250565b6000611a806010836116b2565b9150611a8b82611a4a565b602082019050919050565b60006020820190508181036000830152611aaf81611a73565b9050919050565b7f557365206275726e282920696e73746561640000000000000000000000000000600082015250565b6000611aec6012836116b2565b9150611af782611ab6565b602082019050919050565b60006020820190508181036000830152611b1b81611adf565b9050919050565b7f53656e6465722062616c616e6365206e6f7420656e6f75676800000000000000600082015250565b6000611b586019836116b2565b9150611b6382611b22565b602082019050919050565b60006020820190508181036000830152611b8781611b4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bc8826117c5565b9150611bd3836117c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c0857611c07611b8e565b5b828201905092915050565b7f45524332303a20416d6f756e742773206f766572666c6f770000000000000000600082015250565b6000611c496018836116b2565b9150611c5482611c13565b602082019050919050565b60006020820190508181036000830152611c7881611c3c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611cdb6028836116b2565b9150611ce682611c7f565b604082019050919050565b60006020820190508181036000830152611d0a81611cce565b9050919050565b60008160011c9050919050565b6000808291508390505b6001851115611d6857808604811115611d4457611d43611b8e565b5b6001851615611d535780820291505b8081029050611d6185611d11565b9450611d28565b94509492505050565b600082611d815760019050611e3d565b81611d8f5760009050611e3d565b8160018114611da55760028114611daf57611dde565b6001915050611e3d565b60ff841115611dc157611dc0611b8e565b5b8360020a915084821115611dd857611dd7611b8e565b5b50611e3d565b5060208310610133831016604e8410600b8410161715611e135782820a905083811115611e0e57611e0d611b8e565b5b611e3d565b611e208484846001611d1e565b92509050818404811115611e3757611e36611b8e565b5b81810290505b9392505050565b6000611e4f826117c5565b9150611e5a836118ee565b9250611e877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611d71565b905092915050565b6000611e9a826117c5565b9150611ea5836117c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ede57611edd611b8e565b5b828202905092915050565b6000611ef4826117c5565b9150611eff836117c5565b925082821015611f1257611f11611b8e565b5b828203905092915050565b7f416d6f756e74206f7574206f6620626f756e6473000000000000000000000000600082015250565b6000611f536014836116b2565b9150611f5e82611f1d565b602082019050919050565b60006020820190508181036000830152611f8281611f46565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611fe56025836116b2565b9150611ff082611f89565b604082019050919050565b6000602082019050818103600083015261201481611fd8565b9050919050565b7f45524332303a205472616e736665722061646472657373206d7573742062652060008201527f646966666572656e742066726f6d203078302e20557365206275726e2829206960208201527f6e73746564000000000000000000000000000000000000000000000000000000604082015250565b600061209d6045836116b2565b91506120a88261201b565b606082019050919050565b600060208201905081810360008301526120cc81612090565b9050919050565b7f45524332303a205472616e7366657220616d6f756e74206d757374206265206760008201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b600061212f6030836116b2565b915061213a826120d3565b604082019050919050565b6000602082019050818103600083015261215e81612122565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121c16026836116b2565b91506121cc82612165565b604082019050919050565b600060208201905081810360008301526121f0816121b4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006122536024836116b2565b915061225e826121f7565b604082019050919050565b6000602082019050818103600083015261228281612246565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006122e56022836116b2565b91506122f082612289565b604082019050919050565b60006020820190508181036000830152612314816122d8565b9050919050565b7f45524332303a20617070726f7665206f6620616d6f756e74206c657373206f7260008201527f20657175616c20746f207a65726f000000000000000000000000000000000000602082015250565b6000612377602e836116b2565b91506123828261231b565b604082019050919050565b600060208201905081810360008301526123a68161236a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006124096025836116b2565b9150612414826123ad565b604082019050919050565b60006020820190508181036000830152612438816123fc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061249b6023836116b2565b91506124a68261243f565b604082019050919050565b600060208201905081810360008301526124ca8161248e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061252d6026836116b2565b9150612538826124d1565b604082019050919050565b6000602082019050818103600083015261255c81612520565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006125bf6021836116b2565b91506125ca82612563565b604082019050919050565b600060208201905081810360008301526125ee816125b2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126516022836116b2565b915061265c826125f5565b604082019050919050565b6000602082019050818103600083015261268081612644565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126bd6020836116b2565b91506126c882612687565b602082019050919050565b600060208201905081810360008301526126ec816126b0565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612729601f836116b2565b9150612734826126f3565b602082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b6000612795601e836116b2565b91506127a08261275f565b602082019050919050565b600060208201905081810360008301526127c481612788565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612801601b836116b2565b915061280c826127cb565b602082019050919050565b60006020820190508181036000830152612830816127f4565b905091905056fea2646970667358221220b8a54495489a486a8dec59fa45a1ef6d52827f20682d11271f3a367016ca300364736f6c63430008090033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000c685fa11e01ec6f00000000000000000000000000000000000000000000000000000000000000000000003544d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544d430000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061012c5760003560e01c80638da5cb5b116100ad578063a9059cbb11610071578063a9059cbb14610335578063b056427b14610365578063dd62ed3e14610383578063e80a3558146103b3578063f2fde38b146103d15761012c565b80638da5cb5b1461028f5780638ff4929e146102ad57806395d89b41146102cb578063a0712d68146102e9578063a457c2d7146103055761012c565b806339509351116100f457806339509351146101eb57806342966c681461021b57806347fc9ae81461023757806370a0823114610255578063715018a6146102855761012c565b806306fdde0314610131578063095ea7b31461014f57806318160ddd1461017f57806323b872dd1461019d578063313ce567146101cd575b600080fd5b6101396103ed565b6040516101469190611740565b60405180910390f35b610169600480360381019061016491906117fb565b61047f565b6040516101769190611856565b60405180910390f35b6101876104df565b6040516101949190611880565b60405180910390f35b6101b760048036038101906101b2919061189b565b6104e9565b6040516101c49190611856565b60405180910390f35b6101d561073c565b6040516101e2919061190a565b60405180910390f35b610205600480360381019061020091906117fb565b610745565b6040516102129190611856565b60405180910390f35b61023560048036038101906102309190611925565b61077c565b005b61023f610789565b60405161024c9190611880565b60405180910390f35b61026f600480360381019061026a9190611952565b6107a9565b60405161027c9190611880565b60405180910390f35b61028d6107f2565b005b610297610806565b6040516102a4919061198e565b60405180910390f35b6102b561082f565b6040516102c29190611880565b60405180910390f35b6102d3610876565b6040516102e09190611740565b60405180910390f35b61030360048036038101906102fe9190611925565b610908565b005b61031f600480360381019061031a91906117fb565b61098e565b60405161032c9190611856565b60405180910390f35b61034f600480360381019061034a91906117fb565b610a05565b60405161035c9190611856565b60405180910390f35b61036d610b33565b60405161037a9190611880565b60405180910390f35b61039d600480360381019061039891906119a9565b610b39565b6040516103aa9190611880565b60405180910390f35b6103bb610bc0565b6040516103c89190611880565b60405180910390f35b6103eb60048036038101906103e69190611952565b610be0565b005b6060600480546103fc90611a18565b80601f016020809104026020016040519081016040528092919081815260200182805461042890611a18565b80156104755780601f1061044a57610100808354040283529160200191610475565b820191906000526020600020905b81548152906001019060200180831161045857829003601f168201915b5050505050905090565b60008082116104c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016104ba90611a96565b60405180910390fd5b6104d56104ce610c64565b8484610c6c565b6001905092915050565b6000600354905090565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561055a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055190611b02565b60405180910390fd5b6000821161059d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161059490611a96565b60405180910390fd5b816105a7856107a9565b10156105e8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105df90611b6e565b60405180910390fd5b6105f1836107a9565b826105fb856107a9565b6106059190611bbd565b1015610646576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161063d90611c5f565b60405180910390fd5b610651848484610e7a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061069c610c64565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561071c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161071390611cf1565b60405180910390fd5b61073085610728610c64565b858403610c6c565b60019150509392505050565b60006012905090565b600080610750610c64565b90506107718185856107628589610b39565b61076c9190611bbd565b610c6c565b600191505092915050565b6107863382611176565b50565b6012600a6107979190611e44565b630e4e1c006107a69190611e8f565b81565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6107fa611346565b61080460006113c4565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6012600a61083d9190611e44565b630e4e1c0061084c9190611e8f565b6012600a61085a9190611e44565b6311e1a3006108699190611e8f565b6108739190611ee9565b81565b60606005805461088590611a18565b80601f01602080910402602001604051908101604052809291908181526020018280546108b190611a18565b80156108fe5780601f106108d3576101008083540402835291602001916108fe565b820191906000526020600020905b8154815290600101906020018083116108e157829003601f168201915b5050505050905090565b610910611346565b60008111801561092257506006548111155b610961576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161095890611f69565b60405180910390fd5b80600660008282546109739190611ee9565b9250508190555061098b610985610806565b82611488565b50565b600080610999610c64565b905060006109a78286610b39565b9050838110156109ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109e390611ffb565b60405180910390fd5b6109f98286868403610c6c565b60019250505092915050565b60008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6d906120b3565b60405180910390fd5b610a7f836107a9565b82610a89856107a9565b610a939190611bbd565b1015610ad4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610acb90611c5f565b60405180910390fd5b60008211610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e90612145565b60405180910390fd5b610b29610b22610c64565b8484610e7a565b6001905092915050565b60065481565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6012600a610bce9190611e44565b6311e1a300610bdd9190611e8f565b81565b610be8611346565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610c58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4f906121d7565b60405180910390fd5b610c61816113c4565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610cdc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd390612269565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610d4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d43906122fb565b60405180910390fd5b60008111610d8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d869061238d565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610e6d9190611880565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610eea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ee19061241f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f51906124b1565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fe1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fd890612543565b60405180910390fd5b61103382600160008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546115e090919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506110c882600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461163f90919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111689190611880565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd906125d5565b60405180910390fd5b6111f28260008361169d565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611279576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161127090612667565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161132d9190611880565b60405180910390a3611341836000846116a2565b505050565b61134e610c64565b73ffffffffffffffffffffffffffffffffffffffff1661136c610806565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b9906126d3565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156114f8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ef9061273f565b60405180910390fd5b6115046000838361169d565b80600360008282546115169190611bbd565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516115c89190611880565b60405180910390a36115dc600083836116a2565b5050565b600082821115611625576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161161c906127ab565b60405180910390fd5b600082846116339190611ee9565b90508091505092915050565b600080828461164e9190611bbd565b905083811015611693576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168a90612817565b60405180910390fd5b8091505092915050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156116e15780820151818401526020810190506116c6565b838111156116f0576000848401525b50505050565b6000601f19601f8301169050919050565b6000611712826116a7565b61171c81856116b2565b935061172c8185602086016116c3565b611735816116f6565b840191505092915050565b6000602082019050818103600083015261175a8184611707565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061179282611767565b9050919050565b6117a281611787565b81146117ad57600080fd5b50565b6000813590506117bf81611799565b92915050565b6000819050919050565b6117d8816117c5565b81146117e357600080fd5b50565b6000813590506117f5816117cf565b92915050565b6000806040838503121561181257611811611762565b5b6000611820858286016117b0565b9250506020611831858286016117e6565b9150509250929050565b60008115159050919050565b6118508161183b565b82525050565b600060208201905061186b6000830184611847565b92915050565b61187a816117c5565b82525050565b60006020820190506118956000830184611871565b92915050565b6000806000606084860312156118b4576118b3611762565b5b60006118c2868287016117b0565b93505060206118d3868287016117b0565b92505060406118e4868287016117e6565b9150509250925092565b600060ff82169050919050565b611904816118ee565b82525050565b600060208201905061191f60008301846118fb565b92915050565b60006020828403121561193b5761193a611762565b5b6000611949848285016117e6565b91505092915050565b60006020828403121561196857611967611762565b5b6000611976848285016117b0565b91505092915050565b61198881611787565b82525050565b60006020820190506119a3600083018461197f565b92915050565b600080604083850312156119c0576119bf611762565b5b60006119ce858286016117b0565b92505060206119df858286016117b0565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611a3057607f821691505b60208210811415611a4457611a436119e9565b5b50919050565b7f416d6f756e74206e6f742076616c696400000000000000000000000000000000600082015250565b6000611a806010836116b2565b9150611a8b82611a4a565b602082019050919050565b60006020820190508181036000830152611aaf81611a73565b9050919050565b7f557365206275726e282920696e73746561640000000000000000000000000000600082015250565b6000611aec6012836116b2565b9150611af782611ab6565b602082019050919050565b60006020820190508181036000830152611b1b81611adf565b9050919050565b7f53656e6465722062616c616e6365206e6f7420656e6f75676800000000000000600082015250565b6000611b586019836116b2565b9150611b6382611b22565b602082019050919050565b60006020820190508181036000830152611b8781611b4b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611bc8826117c5565b9150611bd3836117c5565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c0857611c07611b8e565b5b828201905092915050565b7f45524332303a20416d6f756e742773206f766572666c6f770000000000000000600082015250565b6000611c496018836116b2565b9150611c5482611c13565b602082019050919050565b60006020820190508181036000830152611c7881611c3c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b6000611cdb6028836116b2565b9150611ce682611c7f565b604082019050919050565b60006020820190508181036000830152611d0a81611cce565b9050919050565b60008160011c9050919050565b6000808291508390505b6001851115611d6857808604811115611d4457611d43611b8e565b5b6001851615611d535780820291505b8081029050611d6185611d11565b9450611d28565b94509492505050565b600082611d815760019050611e3d565b81611d8f5760009050611e3d565b8160018114611da55760028114611daf57611dde565b6001915050611e3d565b60ff841115611dc157611dc0611b8e565b5b8360020a915084821115611dd857611dd7611b8e565b5b50611e3d565b5060208310610133831016604e8410600b8410161715611e135782820a905083811115611e0e57611e0d611b8e565b5b611e3d565b611e208484846001611d1e565b92509050818404811115611e3757611e36611b8e565b5b81810290505b9392505050565b6000611e4f826117c5565b9150611e5a836118ee565b9250611e877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484611d71565b905092915050565b6000611e9a826117c5565b9150611ea5836117c5565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615611ede57611edd611b8e565b5b828202905092915050565b6000611ef4826117c5565b9150611eff836117c5565b925082821015611f1257611f11611b8e565b5b828203905092915050565b7f416d6f756e74206f7574206f6620626f756e6473000000000000000000000000600082015250565b6000611f536014836116b2565b9150611f5e82611f1d565b602082019050919050565b60006020820190508181036000830152611f8281611f46565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611fe56025836116b2565b9150611ff082611f89565b604082019050919050565b6000602082019050818103600083015261201481611fd8565b9050919050565b7f45524332303a205472616e736665722061646472657373206d7573742062652060008201527f646966666572656e742066726f6d203078302e20557365206275726e2829206960208201527f6e73746564000000000000000000000000000000000000000000000000000000604082015250565b600061209d6045836116b2565b91506120a88261201b565b606082019050919050565b600060208201905081810360008301526120cc81612090565b9050919050565b7f45524332303a205472616e7366657220616d6f756e74206d757374206265206760008201527f726561746572207468616e207a65726f00000000000000000000000000000000602082015250565b600061212f6030836116b2565b915061213a826120d3565b604082019050919050565b6000602082019050818103600083015261215e81612122565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006121c16026836116b2565b91506121cc82612165565b604082019050919050565b600060208201905081810360008301526121f0816121b4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006122536024836116b2565b915061225e826121f7565b604082019050919050565b6000602082019050818103600083015261228281612246565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006122e56022836116b2565b91506122f082612289565b604082019050919050565b60006020820190508181036000830152612314816122d8565b9050919050565b7f45524332303a20617070726f7665206f6620616d6f756e74206c657373206f7260008201527f20657175616c20746f207a65726f000000000000000000000000000000000000602082015250565b6000612377602e836116b2565b91506123828261231b565b604082019050919050565b600060208201905081810360008301526123a68161236a565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006124096025836116b2565b9150612414826123ad565b604082019050919050565b60006020820190508181036000830152612438816123fc565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b600061249b6023836116b2565b91506124a68261243f565b604082019050919050565b600060208201905081810360008301526124ca8161248e565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061252d6026836116b2565b9150612538826124d1565b604082019050919050565b6000602082019050818103600083015261255c81612520565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b60006125bf6021836116b2565b91506125ca82612563565b604082019050919050565b600060208201905081810360008301526125ee816125b2565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b60006126516022836116b2565b915061265c826125f5565b604082019050919050565b6000602082019050818103600083015261268081612644565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006126bd6020836116b2565b91506126c882612687565b602082019050919050565b600060208201905081810360008301526126ec816126b0565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000612729601f836116b2565b9150612734826126f3565b602082019050919050565b600060208201905081810360008301526127588161271c565b9050919050565b7f536166654d6174683a207375627472616374696f6e206f766572666c6f770000600082015250565b6000612795601e836116b2565b91506127a08261275f565b602082019050919050565b600060208201905081810360008301526127c481612788565b9050919050565b7f536166654d6174683a206164646974696f6e206f766572666c6f770000000000600082015250565b6000612801601b836116b2565b915061280c826127cb565b602082019050919050565b60006020820190508181036000830152612830816127f4565b905091905056fea2646970667358221220b8a54495489a486a8dec59fa45a1ef6d52827f20682d11271f3a367016ca300364736f6c63430008090033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000000000000000000000c685fa11e01ec6f00000000000000000000000000000000000000000000000000000000000000000000003544d4300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000003544d430000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): TMC
Arg [1] : symbol_ (string): TMC
Arg [2] : _mintAmount (uint256): 240000000000000000000000000
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000000000000000000000c685fa11e01ec6f0000000
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [4] : 544d430000000000000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 544d430000000000000000000000000000000000000000000000000000000000
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.