Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 TROKER
Holders
38
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.949831526936721526 TROKERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
troker
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-03 */ /** Website - https://troker.xyz Twitter - https://twitter.com/trokertoken Telegram - https://t.me/trokertoken */ // SPDX-License-Identifier: MIT 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/[email protected] // OpenZeppelin Contracts v4.4.0 (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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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 @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @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/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(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; _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; } _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"); _allowances[owner][spender] = amount; emit Approval(owner, spender, 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 {} } // File contracts/troker.sol pragma solidity ^0.8.0; contract troker is Ownable, ERC20 { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor(uint256 _totalSupply) ERC20("Troker", "TROKER") { _mint(msg.sender, _totalSupply); } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "trading is not started"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"uint256","name":"_totalSupply","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":[{"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":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","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":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b5060405162002c6d38038062002c6d8339818101604052810190620000379190620007b1565b6040518060400160405280600681526020017f54726f6b657200000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f54524f4b45520000000000000000000000000000000000000000000000000000815250620000c3620000b76200011060201b60201c565b6200011860201b60201c565b8160049080519060200190620000db929190620006ea565b508060059080519060200190620000f4929190620006ea565b505050620001093382620001dc60201b60201c565b5062000ac1565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200024f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000246906200093a565b60405180910390fd5b62000263600083836200035660201b60201c565b8060036000828254620002779190620009ac565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002cf9190620009ac565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200033691906200097e565b60405180910390a362000352600083836200067360201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003fb5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6200043d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000434906200095c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156200056157620004a56200067860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005195750620004ea6200067860201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6200055b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005529062000918565b60405180910390fd5b6200066e565b600660009054906101000a900460ff168015620005cb5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200066d5760075481620005eb84620006a160201b620007d31760201c565b620005f79190620009ac565b111580156200062a5750600854816200061b84620006a160201b620007d31760201c565b620006279190620009ac565b10155b6200066c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200066390620008f6565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620006f89062000a13565b90600052602060002090601f0160209004810192826200071c576000855562000768565b82601f106200073757805160ff191683800117855562000768565b8280016001018555821562000768579182015b82811115620007675782518255916020019190600101906200074a565b5b5090506200077791906200077b565b5090565b5b80821115620007965760008160009055506001016200077c565b5090565b600081519050620007ab8162000aa7565b92915050565b600060208284031215620007c457600080fd5b6000620007d4848285016200079a565b91505092915050565b6000620007ec6006836200099b565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b60006200082e6016836200099b565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600062000870601f836200099b565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000620008b2600b836200099b565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b620008f08162000a09565b82525050565b600060208201905081810360008301526200091181620007dd565b9050919050565b6000602082019050818103600083015262000933816200081f565b9050919050565b60006020820190508181036000830152620009558162000861565b9050919050565b600060208201905081810360008301526200097781620008a3565b9050919050565b6000602082019050620009956000830184620008e5565b92915050565b600082825260208201905092915050565b6000620009b98262000a09565b9150620009c68362000a09565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620009fe57620009fd62000a49565b5b828201905092915050565b6000819050919050565b6000600282049050600182168062000a2c57607f821691505b6020821081141562000a435762000a4262000a78565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000ab28162000a09565b811462000abe57600080fd5b50565b61219c8062000ad16000396000f3fe608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461034057806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac578063dd62ed3e146103dc578063f2fde38b1461040c57610137565b806349bd5a5e146102ac57806370a08231146102ca578063715018a6146102fa578063860a32ec1461030457806389f9a1d31461032257610137565b806323b872dd116100ff57806323b872dd146101f6578063313ce5671461022657806339509351146102445780633aa633aa1461027457806342966c681461029057610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461018a57806318160ddd146101ba5780631ab99e12146101d8575b600080fd5b610144610428565b6040516101519190611d3a565b60405180910390f35b610174600480360381019061016f91906116cb565b6104ba565b6040516101819190611d1f565b60405180910390f35b6101a4600480360381019061019f9190611617565b6104d8565b6040516101b19190611d1f565b60405180910390f35b6101c26104f8565b6040516101cf9190611f1c565b60405180910390f35b6101e0610502565b6040516101ed9190611f1c565b60405180910390f35b610210600480360381019061020b919061167c565b610508565b60405161021d9190611d1f565b60405180910390f35b61022e610600565b60405161023b9190611f37565b60405180910390f35b61025e600480360381019061025991906116cb565b610609565b60405161026b9190611d1f565b60405180910390f35b61028e60048036038101906102899190611707565b6106b5565b005b6102aa60048036038101906102a5919061176a565b6107a0565b005b6102b46107ad565b6040516102c19190611d04565b60405180910390f35b6102e460048036038101906102df9190611617565b6107d3565b6040516102f19190611f1c565b60405180910390f35b61030261081c565b005b61030c6108a4565b6040516103199190611d1f565b60405180910390f35b61032a6108b7565b6040516103379190611f1c565b60405180910390f35b6103486108bd565b6040516103559190611d04565b60405180910390f35b6103666108e6565b6040516103739190611d3a565b60405180910390f35b610396600480360381019061039191906116cb565b610978565b6040516103a39190611d1f565b60405180910390f35b6103c660048036038101906103c191906116cb565b610a63565b6040516103d39190611d1f565b60405180910390f35b6103f660048036038101906103f19190611640565b610a81565b6040516104039190611f1c565b60405180910390f35b61042660048036038101906104219190611617565b610b08565b005b60606004805461043790612080565b80601f016020809104026020016040519081016040528092919081815260200182805461046390612080565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b60006104ce6104c7610c00565b8484610c08565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000610515848484610dd3565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610560610c00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d790611e1c565b60405180910390fd5b6105f4856105ec610c00565b858403610c08565b60019150509392505050565b60006012905090565b60006106ab610616610c00565b848460026000610624610c00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106a69190611f6e565b610c08565b6001905092915050565b6106bd610c00565b73ffffffffffffffffffffffffffffffffffffffff166106db6108bd565b73ffffffffffffffffffffffffffffffffffffffff1614610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890611e3c565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107aa3382611057565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610824610c00565b73ffffffffffffffffffffffffffffffffffffffff166108426108bd565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90611e3c565b60405180910390fd5b6108a26000611230565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108f590612080565b80601f016020809104026020016040519081016040528092919081815260200182805461092190612080565b801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050905090565b60008060026000610987610c00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90611edc565b60405180910390fd5b610a58610a4f610c00565b85858403610c08565b600191505092915050565b6000610a77610a70610c00565b8484610dd3565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b10610c00565b73ffffffffffffffffffffffffffffffffffffffff16610b2e6108bd565b73ffffffffffffffffffffffffffffffffffffffff1614610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90611e3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90611d9c565b60405180910390fd5b610bfd81611230565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90611ebc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90611dbc565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc69190611f1c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90611e9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90611d5c565b60405180910390fd5b610ebe8383836112f4565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90611ddc565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fda9190611f6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103e9190611f1c565b60405180910390a36110518484846115d3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90611e5c565b60405180910390fd5b6110d3826000836112f4565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190611d7c565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111b29190611fc4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112179190611f1c565b60405180910390a361122b836000846115d3565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113985750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90611efc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114e5576114366108bd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114a157506114726108bd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790611e7c565b60405180910390fd5b6115ce565b600660009054906101000a900460ff16801561154e5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115cd5760075481611560846107d3565b61156a9190611f6e565b1115801561158d575060085481611580846107d3565b61158a9190611f6e565b10155b6115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390611dfc565b60405180910390fd5b5b5b505050565b505050565b6000813590506115e781612121565b92915050565b6000813590506115fc81612138565b92915050565b6000813590506116118161214f565b92915050565b60006020828403121561162957600080fd5b6000611637848285016115d8565b91505092915050565b6000806040838503121561165357600080fd5b6000611661858286016115d8565b9250506020611672858286016115d8565b9150509250929050565b60008060006060848603121561169157600080fd5b600061169f868287016115d8565b93505060206116b0868287016115d8565b92505060406116c186828701611602565b9150509250925092565b600080604083850312156116de57600080fd5b60006116ec858286016115d8565b92505060206116fd85828601611602565b9150509250929050565b6000806000806080858703121561171d57600080fd5b600061172b878288016115ed565b945050602061173c878288016115d8565b935050604061174d87828801611602565b925050606061175e87828801611602565b91505092959194509250565b60006020828403121561177c57600080fd5b600061178a84828501611602565b91505092915050565b61179c81611ff8565b82525050565b6117ab8161200a565b82525050565b60006117bc82611f52565b6117c68185611f5d565b93506117d681856020860161204d565b6117df81612110565b840191505092915050565b60006117f7602383611f5d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061185d602283611f5d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118c3602683611f5d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611929602283611f5d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061198f602683611f5d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119f5600683611f5d565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611a35602883611f5d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a9b602083611f5d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611adb602183611f5d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b41601683611f5d565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611b81602583611f5d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611be7602483611f5d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c4d602583611f5d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611cb3600b83611f5d565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b611cef81612036565b82525050565b611cfe81612040565b82525050565b6000602082019050611d196000830184611793565b92915050565b6000602082019050611d3460008301846117a2565b92915050565b60006020820190508181036000830152611d5481846117b1565b905092915050565b60006020820190508181036000830152611d75816117ea565b9050919050565b60006020820190508181036000830152611d9581611850565b9050919050565b60006020820190508181036000830152611db5816118b6565b9050919050565b60006020820190508181036000830152611dd58161191c565b9050919050565b60006020820190508181036000830152611df581611982565b9050919050565b60006020820190508181036000830152611e15816119e8565b9050919050565b60006020820190508181036000830152611e3581611a28565b9050919050565b60006020820190508181036000830152611e5581611a8e565b9050919050565b60006020820190508181036000830152611e7581611ace565b9050919050565b60006020820190508181036000830152611e9581611b34565b9050919050565b60006020820190508181036000830152611eb581611b74565b9050919050565b60006020820190508181036000830152611ed581611bda565b9050919050565b60006020820190508181036000830152611ef581611c40565b9050919050565b60006020820190508181036000830152611f1581611ca6565b9050919050565b6000602082019050611f316000830184611ce6565b92915050565b6000602082019050611f4c6000830184611cf5565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611f7982612036565b9150611f8483612036565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611fb957611fb86120b2565b5b828201905092915050565b6000611fcf82612036565b9150611fda83612036565b925082821015611fed57611fec6120b2565b5b828203905092915050565b600061200382612016565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561206b578082015181840152602081019050612050565b8381111561207a576000848401525b50505050565b6000600282049050600182168061209857607f821691505b602082108114156120ac576120ab6120e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61212a81611ff8565b811461213557600080fd5b50565b6121418161200a565b811461214c57600080fd5b50565b61215881612036565b811461216357600080fd5b5056fea2646970667358221220a47ac3874aced7566b9517379f2f11ee8fd14b44c238086b0a3c0fd2c0723d3064736f6c6343000800003300000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101375760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461034057806395d89b411461035e578063a457c2d71461037c578063a9059cbb146103ac578063dd62ed3e146103dc578063f2fde38b1461040c57610137565b806349bd5a5e146102ac57806370a08231146102ca578063715018a6146102fa578063860a32ec1461030457806389f9a1d31461032257610137565b806323b872dd116100ff57806323b872dd146101f6578063313ce5671461022657806339509351146102445780633aa633aa1461027457806342966c681461029057610137565b806306fdde031461013c578063095ea7b31461015a57806316c021291461018a57806318160ddd146101ba5780631ab99e12146101d8575b600080fd5b610144610428565b6040516101519190611d3a565b60405180910390f35b610174600480360381019061016f91906116cb565b6104ba565b6040516101819190611d1f565b60405180910390f35b6101a4600480360381019061019f9190611617565b6104d8565b6040516101b19190611d1f565b60405180910390f35b6101c26104f8565b6040516101cf9190611f1c565b60405180910390f35b6101e0610502565b6040516101ed9190611f1c565b60405180910390f35b610210600480360381019061020b919061167c565b610508565b60405161021d9190611d1f565b60405180910390f35b61022e610600565b60405161023b9190611f37565b60405180910390f35b61025e600480360381019061025991906116cb565b610609565b60405161026b9190611d1f565b60405180910390f35b61028e60048036038101906102899190611707565b6106b5565b005b6102aa60048036038101906102a5919061176a565b6107a0565b005b6102b46107ad565b6040516102c19190611d04565b60405180910390f35b6102e460048036038101906102df9190611617565b6107d3565b6040516102f19190611f1c565b60405180910390f35b61030261081c565b005b61030c6108a4565b6040516103199190611d1f565b60405180910390f35b61032a6108b7565b6040516103379190611f1c565b60405180910390f35b6103486108bd565b6040516103559190611d04565b60405180910390f35b6103666108e6565b6040516103739190611d3a565b60405180910390f35b610396600480360381019061039191906116cb565b610978565b6040516103a39190611d1f565b60405180910390f35b6103c660048036038101906103c191906116cb565b610a63565b6040516103d39190611d1f565b60405180910390f35b6103f660048036038101906103f19190611640565b610a81565b6040516104039190611f1c565b60405180910390f35b61042660048036038101906104219190611617565b610b08565b005b60606004805461043790612080565b80601f016020809104026020016040519081016040528092919081815260200182805461046390612080565b80156104b05780601f10610485576101008083540402835291602001916104b0565b820191906000526020600020905b81548152906001019060200180831161049357829003601f168201915b5050505050905090565b60006104ce6104c7610c00565b8484610c08565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b6000600354905090565b60085481565b6000610515848484610dd3565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610560610c00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105d790611e1c565b60405180910390fd5b6105f4856105ec610c00565b858403610c08565b60019150509392505050565b60006012905090565b60006106ab610616610c00565b848460026000610624610c00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106a69190611f6e565b610c08565b6001905092915050565b6106bd610c00565b73ffffffffffffffffffffffffffffffffffffffff166106db6108bd565b73ffffffffffffffffffffffffffffffffffffffff1614610731576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072890611e3c565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107aa3382611057565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610824610c00565b73ffffffffffffffffffffffffffffffffffffffff166108426108bd565b73ffffffffffffffffffffffffffffffffffffffff1614610898576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161088f90611e3c565b60405180910390fd5b6108a26000611230565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546108f590612080565b80601f016020809104026020016040519081016040528092919081815260200182805461092190612080565b801561096e5780601f106109435761010080835404028352916020019161096e565b820191906000526020600020905b81548152906001019060200180831161095157829003601f168201915b5050505050905090565b60008060026000610987610c00565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610a44576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a3b90611edc565b60405180910390fd5b610a58610a4f610c00565b85858403610c08565b600191505092915050565b6000610a77610a70610c00565b8484610dd3565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b10610c00565b73ffffffffffffffffffffffffffffffffffffffff16610b2e6108bd565b73ffffffffffffffffffffffffffffffffffffffff1614610b84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7b90611e3c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90611d9c565b60405180910390fd5b610bfd81611230565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610c78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6f90611ebc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ce8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdf90611dbc565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610dc69190611f1c565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3a90611e9c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610eb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eaa90611d5c565b60405180910390fd5b610ebe8383836112f4565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90611ddc565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610fda9190611f6e565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161103e9190611f1c565b60405180910390a36110518484846115d3565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90611e5c565b60405180910390fd5b6110d3826000836112f4565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561115a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161115190611d7c565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546111b29190611fc4565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516112179190611f1c565b60405180910390a361122b836000846115d3565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156113985750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b6113d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113ce90611efc565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156114e5576114366108bd565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806114a157506114726108bd565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b6114e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d790611e7c565b60405180910390fd5b6115ce565b600660009054906101000a900460ff16801561154e5750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115cd5760075481611560846107d3565b61156a9190611f6e565b1115801561158d575060085481611580846107d3565b61158a9190611f6e565b10155b6115cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115c390611dfc565b60405180910390fd5b5b5b505050565b505050565b6000813590506115e781612121565b92915050565b6000813590506115fc81612138565b92915050565b6000813590506116118161214f565b92915050565b60006020828403121561162957600080fd5b6000611637848285016115d8565b91505092915050565b6000806040838503121561165357600080fd5b6000611661858286016115d8565b9250506020611672858286016115d8565b9150509250929050565b60008060006060848603121561169157600080fd5b600061169f868287016115d8565b93505060206116b0868287016115d8565b92505060406116c186828701611602565b9150509250925092565b600080604083850312156116de57600080fd5b60006116ec858286016115d8565b92505060206116fd85828601611602565b9150509250929050565b6000806000806080858703121561171d57600080fd5b600061172b878288016115ed565b945050602061173c878288016115d8565b935050604061174d87828801611602565b925050606061175e87828801611602565b91505092959194509250565b60006020828403121561177c57600080fd5b600061178a84828501611602565b91505092915050565b61179c81611ff8565b82525050565b6117ab8161200a565b82525050565b60006117bc82611f52565b6117c68185611f5d565b93506117d681856020860161204d565b6117df81612110565b840191505092915050565b60006117f7602383611f5d565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061185d602283611f5d565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006118c3602683611f5d565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611929602283611f5d565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061198f602683611f5d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119f5600683611f5d565b91507f466f7262696400000000000000000000000000000000000000000000000000006000830152602082019050919050565b6000611a35602883611f5d565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a9b602083611f5d565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611adb602183611f5d565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b41601683611f5d565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611b81602583611f5d565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611be7602483611f5d565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c4d602583611f5d565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611cb3600b83611f5d565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b611cef81612036565b82525050565b611cfe81612040565b82525050565b6000602082019050611d196000830184611793565b92915050565b6000602082019050611d3460008301846117a2565b92915050565b60006020820190508181036000830152611d5481846117b1565b905092915050565b60006020820190508181036000830152611d75816117ea565b9050919050565b60006020820190508181036000830152611d9581611850565b9050919050565b60006020820190508181036000830152611db5816118b6565b9050919050565b60006020820190508181036000830152611dd58161191c565b9050919050565b60006020820190508181036000830152611df581611982565b9050919050565b60006020820190508181036000830152611e15816119e8565b9050919050565b60006020820190508181036000830152611e3581611a28565b9050919050565b60006020820190508181036000830152611e5581611a8e565b9050919050565b60006020820190508181036000830152611e7581611ace565b9050919050565b60006020820190508181036000830152611e9581611b34565b9050919050565b60006020820190508181036000830152611eb581611b74565b9050919050565b60006020820190508181036000830152611ed581611bda565b9050919050565b60006020820190508181036000830152611ef581611c40565b9050919050565b60006020820190508181036000830152611f1581611ca6565b9050919050565b6000602082019050611f316000830184611ce6565b92915050565b6000602082019050611f4c6000830184611cf5565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611f7982612036565b9150611f8483612036565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611fb957611fb86120b2565b5b828201905092915050565b6000611fcf82612036565b9150611fda83612036565b925082821015611fed57611fec6120b2565b5b828203905092915050565b600061200382612016565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561206b578082015181840152602081019050612050565b8381111561207a576000848401525b50505050565b6000600282049050600182168061209857607f821691505b602082108114156120ac576120ab6120e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61212a81611ff8565b811461213557600080fd5b50565b6121418161200a565b811461214c57600080fd5b50565b61215881612036565b811461216357600080fd5b5056fea2646970667358221220a47ac3874aced7566b9517379f2f11ee8fd14b44c238086b0a3c0fd2c0723d3064736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 100000000000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000052b7d2dcc80cd2e4000000
Deployed Bytecode Sourcemap
19290:1317:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9262:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11429:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19468:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10382:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19395:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12080:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10224:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12981:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19639:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20523:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19433:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10553:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2663:103;;;:::i;:::-;;19331:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19357:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2012:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9481:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13699:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10893:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11131:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2921:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9262:100;9316:13;9349:5;9342:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9262:100;:::o;11429:169::-;11512:4;11529:39;11538:12;:10;:12::i;:::-;11552:7;11561:6;11529:8;:39::i;:::-;11586:4;11579:11;;11429:169;;;;:::o;19468:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10382:108::-;10443:7;10470:12;;10463:19;;10382:108;:::o;19395:31::-;;;;:::o;12080:492::-;12220:4;12237:36;12247:6;12255:9;12266:6;12237:9;:36::i;:::-;12286:24;12313:11;:19;12325:6;12313:19;;;;;;;;;;;;;;;:33;12333:12;:10;:12::i;:::-;12313:33;;;;;;;;;;;;;;;;12286:60;;12385:6;12365:16;:26;;12357:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12472:57;12481:6;12489:12;:10;:12::i;:::-;12522:6;12503:16;:25;12472:8;:57::i;:::-;12560:4;12553:11;;;12080:492;;;;;:::o;10224:93::-;10282:5;10307:2;10300:9;;10224:93;:::o;12981:215::-;13069:4;13086:80;13095:12;:10;:12::i;:::-;13109:7;13155:10;13118:11;:25;13130:12;:10;:12::i;:::-;13118:25;;;;;;;;;;;;;;;:34;13144:7;13118:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13086:8;:80::i;:::-;13184:4;13177:11;;12981:215;;;;:::o;19639:301::-;2243:12;:10;:12::i;:::-;2232:23;;:7;:5;:7::i;:::-;:23;;;2224:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19789:8:::1;19779:7;;:18;;;;;;;;;;;;;;;;;;19824:14;19808:13;;:30;;;;;;;;;;;;;;;;;;19868:17;19849:16;:36;;;;19915:17;19896:16;:36;;;;19639:301:::0;;;;:::o;20523:81::-;20572:24;20578:10;20590:5;20572;:24::i;:::-;20523:81;:::o;19433:28::-;;;;;;;;;;;;;:::o;10553:127::-;10627:7;10654:9;:18;10664:7;10654:18;;;;;;;;;;;;;;;;10647:25;;10553:127;;;:::o;2663:103::-;2243:12;:10;:12::i;:::-;2232:23;;:7;:5;:7::i;:::-;:23;;;2224:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2728:30:::1;2755:1;2728:18;:30::i;:::-;2663:103::o:0;19331:19::-;;;;;;;;;;;;;:::o;19357:31::-;;;;:::o;2012:87::-;2058:7;2085:6;;;;;;;;;;;2078:13;;2012:87;:::o;9481:104::-;9537:13;9570:7;9563:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9481:104;:::o;13699:413::-;13792:4;13809:24;13836:11;:25;13848:12;:10;:12::i;:::-;13836:25;;;;;;;;;;;;;;;:34;13862:7;13836:34;;;;;;;;;;;;;;;;13809:61;;13909:15;13889:16;:35;;13881:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14002:67;14011:12;:10;:12::i;:::-;14025:7;14053:15;14034:16;:34;14002:8;:67::i;:::-;14100:4;14093:11;;;13699:413;;;;:::o;10893:175::-;10979:4;10996:42;11006:12;:10;:12::i;:::-;11020:9;11031:6;10996:9;:42::i;:::-;11056:4;11049:11;;10893:175;;;;:::o;11131:151::-;11220:7;11247:11;:18;11259:5;11247:18;;;;;;;;;;;;;;;:27;11266:7;11247:27;;;;;;;;;;;;;;;;11240:34;;11131:151;;;;:::o;2921:201::-;2243:12;:10;:12::i;:::-;2232:23;;:7;:5;:7::i;:::-;:23;;;2224:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3030:1:::1;3010:22;;:8;:22;;;;3002:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3086:28;3105:8;3086:18;:28::i;:::-;2921:201:::0;:::o;730:98::-;783:7;810:10;803:17;;730:98;:::o;17383:380::-;17536:1;17519:19;;:5;:19;;;;17511:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17617:1;17598:21;;:7;:21;;;;17590:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17701:6;17671:11;:18;17683:5;17671:18;;;;;;;;;;;;;;;:27;17690:7;17671:27;;;;;;;;;;;;;;;:36;;;;17739:7;17723:32;;17732:5;17723:32;;;17748:6;17723:32;;;;;;:::i;:::-;;;;;;;;17383:380;;;:::o;14602:733::-;14760:1;14742:20;;:6;:20;;;;14734:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;14844:1;14823:23;;:9;:23;;;;14815:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;14899:47;14920:6;14928:9;14939:6;14899:20;:47::i;:::-;14959:21;14983:9;:17;14993:6;14983:17;;;;;;;;;;;;;;;;14959:41;;15036:6;15019:13;:23;;15011:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15157:6;15141:13;:22;15121:9;:17;15131:6;15121:17;;;;;;;;;;;;;;;:42;;;;15209:6;15185:9;:20;15195:9;15185:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15250:9;15233:35;;15242:6;15233:35;;;15261:6;15233:35;;;;;;:::i;:::-;;;;;;;;15281:46;15301:6;15309:9;15320:6;15281:19;:46::i;:::-;14602:733;;;;:::o;16354:591::-;16457:1;16438:21;;:7;:21;;;;16430:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16510:49;16531:7;16548:1;16552:6;16510:20;:49::i;:::-;16572:22;16597:9;:18;16607:7;16597:18;;;;;;;;;;;;;;;;16572:43;;16652:6;16634:14;:24;;16626:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16771:6;16754:14;:23;16733:9;:18;16743:7;16733:18;;;;;;;;;;;;;;;:44;;;;16815:6;16799:12;;:22;;;;;;;:::i;:::-;;;;;;;;16865:1;16839:37;;16848:7;16839:37;;;16869:6;16839:37;;;;;;:::i;:::-;;;;;;;;16889:48;16909:7;16926:1;16930:6;16889:19;:48::i;:::-;16354:591;;;:::o;3282:191::-;3356:16;3375:6;;;;;;;;;;;3356:25;;3401:8;3392:6;;:17;;;;;;;;;;;;;;;;;;3456:8;3425:40;;3446:8;3425:40;;;;;;;;;;;;3282:191;;:::o;19948:567::-;20100:10;:14;20111:2;20100:14;;;;;;;;;;;;;;;;;;;;;;;;;20099:15;:36;;;;;20119:10;:16;20130:4;20119:16;;;;;;;;;;;;;;;;;;;;;;;;;20118:17;20099:36;20091:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;20193:1;20168:27;;:13;;;;;;;;;;;:27;;;20164:148;;;20228:7;:5;:7::i;:::-;20220:15;;:4;:15;;;:32;;;;20245:7;:5;:7::i;:::-;20239:13;;:2;:13;;;20220:32;20212:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;20294:7;;20164:148;20328:7;;;;;;;;;;;:32;;;;;20347:13;;;;;;;;;;;20339:21;;:4;:21;;;20328:32;20324:184;;;20417:16;;20407:6;20385:19;20401:2;20385:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;20469:16;;20459:6;20437:19;20453:2;20437:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;20385:100;20377:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;20324:184;19948:567;;;;:::o;19092:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:407::-;;;1800:2;1788:9;1779:7;1775:23;1771:32;1768:2;;;1816:1;1813;1806:12;1768:2;1859:1;1884:53;1929:7;1920:6;1909:9;1905:22;1884:53;:::i;:::-;1874:63;;1830:117;1986:2;2012:53;2057:7;2048:6;2037:9;2033:22;2012:53;:::i;:::-;2002:63;;1957:118;1758:324;;;;;:::o;2088:692::-;;;;;2244:3;2232:9;2223:7;2219:23;2215:33;2212:2;;;2261:1;2258;2251:12;2212:2;2304:1;2329:50;2371:7;2362:6;2351:9;2347:22;2329:50;:::i;:::-;2319:60;;2275:114;2428:2;2454:53;2499:7;2490:6;2479:9;2475:22;2454:53;:::i;:::-;2444:63;;2399:118;2556:2;2582:53;2627:7;2618:6;2607:9;2603:22;2582:53;:::i;:::-;2572:63;;2527:118;2684:2;2710:53;2755:7;2746:6;2735:9;2731:22;2710:53;:::i;:::-;2700:63;;2655:118;2202:578;;;;;;;:::o;2786:262::-;;2894:2;2882:9;2873:7;2869:23;2865:32;2862:2;;;2910:1;2907;2900:12;2862:2;2953:1;2978:53;3023:7;3014:6;3003:9;2999:22;2978:53;:::i;:::-;2968:63;;2924:117;2852:196;;;;:::o;3054:118::-;3141:24;3159:5;3141:24;:::i;:::-;3136:3;3129:37;3119:53;;:::o;3178:109::-;3259:21;3274:5;3259:21;:::i;:::-;3254:3;3247:34;3237:50;;:::o;3293:364::-;;3409:39;3442:5;3409:39;:::i;:::-;3464:71;3528:6;3523:3;3464:71;:::i;:::-;3457:78;;3544:52;3589:6;3584:3;3577:4;3570:5;3566:16;3544:52;:::i;:::-;3621:29;3643:6;3621:29;:::i;:::-;3616:3;3612:39;3605:46;;3385:272;;;;;:::o;3663:367::-;;3826:67;3890:2;3885:3;3826:67;:::i;:::-;3819:74;;3923:34;3919:1;3914:3;3910:11;3903:55;3989:5;3984:2;3979:3;3975:12;3968:27;4021:2;4016:3;4012:12;4005:19;;3809:221;;;:::o;4036:366::-;;4199:67;4263:2;4258:3;4199:67;:::i;:::-;4192:74;;4296:34;4292:1;4287:3;4283:11;4276:55;4362:4;4357:2;4352:3;4348:12;4341:26;4393:2;4388:3;4384:12;4377:19;;4182:220;;;:::o;4408:370::-;;4571:67;4635:2;4630:3;4571:67;:::i;:::-;4564:74;;4668:34;4664:1;4659:3;4655:11;4648:55;4734:8;4729:2;4724:3;4720:12;4713:30;4769:2;4764:3;4760:12;4753:19;;4554:224;;;:::o;4784:366::-;;4947:67;5011:2;5006:3;4947:67;:::i;:::-;4940:74;;5044:34;5040:1;5035:3;5031:11;5024:55;5110:4;5105:2;5100:3;5096:12;5089:26;5141:2;5136:3;5132:12;5125:19;;4930:220;;;:::o;5156:370::-;;5319:67;5383:2;5378:3;5319:67;:::i;:::-;5312:74;;5416:34;5412:1;5407:3;5403:11;5396:55;5482:8;5477:2;5472:3;5468:12;5461:30;5517:2;5512:3;5508:12;5501:19;;5302:224;;;:::o;5532:303::-;;5695:66;5759:1;5754:3;5695:66;:::i;:::-;5688:73;;5791:8;5787:1;5782:3;5778:11;5771:29;5826:2;5821:3;5817:12;5810:19;;5678:157;;;:::o;5841:372::-;;6004:67;6068:2;6063:3;6004:67;:::i;:::-;5997:74;;6101:34;6097:1;6092:3;6088:11;6081:55;6167:10;6162:2;6157:3;6153:12;6146:32;6204:2;6199:3;6195:12;6188:19;;5987:226;;;:::o;6219:330::-;;6382:67;6446:2;6441:3;6382:67;:::i;:::-;6375:74;;6479:34;6475:1;6470:3;6466:11;6459:55;6540:2;6535:3;6531:12;6524:19;;6365:184;;;:::o;6555:365::-;;6718:67;6782:2;6777:3;6718:67;:::i;:::-;6711:74;;6815:34;6811:1;6806:3;6802:11;6795:55;6881:3;6876:2;6871:3;6867:12;6860:25;6911:2;6906:3;6902:12;6895:19;;6701:219;;;:::o;6926:320::-;;7089:67;7153:2;7148:3;7089:67;:::i;:::-;7082:74;;7186:24;7182:1;7177:3;7173:11;7166:45;7237:2;7232:3;7228:12;7221:19;;7072:174;;;:::o;7252:369::-;;7415:67;7479:2;7474:3;7415:67;:::i;:::-;7408:74;;7512:34;7508:1;7503:3;7499:11;7492:55;7578:7;7573:2;7568:3;7564:12;7557:29;7612:2;7607:3;7603:12;7596:19;;7398:223;;;:::o;7627:368::-;;7790:67;7854:2;7849:3;7790:67;:::i;:::-;7783:74;;7887:34;7883:1;7878:3;7874:11;7867:55;7953:6;7948:2;7943:3;7939:12;7932:28;7986:2;7981:3;7977:12;7970:19;;7773:222;;;:::o;8001:369::-;;8164:67;8228:2;8223:3;8164:67;:::i;:::-;8157:74;;8261:34;8257:1;8252:3;8248:11;8241:55;8327:7;8322:2;8317:3;8313:12;8306:29;8361:2;8356:3;8352:12;8345:19;;8147:223;;;:::o;8376:309::-;;8539:67;8603:2;8598:3;8539:67;:::i;:::-;8532:74;;8636:13;8632:1;8627:3;8623:11;8616:34;8676:2;8671:3;8667:12;8660:19;;8522:163;;;:::o;8691:118::-;8778:24;8796:5;8778:24;:::i;:::-;8773:3;8766:37;8756:53;;:::o;8815:112::-;8898:22;8914:5;8898:22;:::i;:::-;8893:3;8886:35;8876:51;;:::o;8933:222::-;;9064:2;9053:9;9049:18;9041:26;;9077:71;9145:1;9134:9;9130:17;9121:6;9077:71;:::i;:::-;9031:124;;;;:::o;9161:210::-;;9286:2;9275:9;9271:18;9263:26;;9299:65;9361:1;9350:9;9346:17;9337:6;9299:65;:::i;:::-;9253:118;;;;:::o;9377:313::-;;9528:2;9517:9;9513:18;9505:26;;9577:9;9571:4;9567:20;9563:1;9552:9;9548:17;9541:47;9605:78;9678:4;9669:6;9605:78;:::i;:::-;9597:86;;9495:195;;;;:::o;9696:419::-;;9900:2;9889:9;9885:18;9877:26;;9949:9;9943:4;9939:20;9935:1;9924:9;9920:17;9913:47;9977:131;10103:4;9977:131;:::i;:::-;9969:139;;9867:248;;;:::o;10121:419::-;;10325:2;10314:9;10310:18;10302:26;;10374:9;10368:4;10364:20;10360:1;10349:9;10345:17;10338:47;10402:131;10528:4;10402:131;:::i;:::-;10394:139;;10292:248;;;:::o;10546:419::-;;10750:2;10739:9;10735:18;10727:26;;10799:9;10793:4;10789:20;10785:1;10774:9;10770:17;10763:47;10827:131;10953:4;10827:131;:::i;:::-;10819:139;;10717:248;;;:::o;10971:419::-;;11175:2;11164:9;11160:18;11152:26;;11224:9;11218:4;11214:20;11210:1;11199:9;11195:17;11188:47;11252:131;11378:4;11252:131;:::i;:::-;11244:139;;11142:248;;;:::o;11396:419::-;;11600:2;11589:9;11585:18;11577:26;;11649:9;11643:4;11639:20;11635:1;11624:9;11620:17;11613:47;11677:131;11803:4;11677:131;:::i;:::-;11669:139;;11567:248;;;:::o;11821:419::-;;12025:2;12014:9;12010:18;12002:26;;12074:9;12068:4;12064:20;12060:1;12049:9;12045:17;12038:47;12102:131;12228:4;12102:131;:::i;:::-;12094:139;;11992:248;;;:::o;12246:419::-;;12450:2;12439:9;12435:18;12427:26;;12499:9;12493:4;12489:20;12485:1;12474:9;12470:17;12463:47;12527:131;12653:4;12527:131;:::i;:::-;12519:139;;12417:248;;;:::o;12671:419::-;;12875:2;12864:9;12860:18;12852:26;;12924:9;12918:4;12914:20;12910:1;12899:9;12895:17;12888:47;12952:131;13078:4;12952:131;:::i;:::-;12944:139;;12842:248;;;:::o;13096:419::-;;13300:2;13289:9;13285:18;13277:26;;13349:9;13343:4;13339:20;13335:1;13324:9;13320:17;13313:47;13377:131;13503:4;13377:131;:::i;:::-;13369:139;;13267:248;;;:::o;13521:419::-;;13725:2;13714:9;13710:18;13702:26;;13774:9;13768:4;13764:20;13760:1;13749:9;13745:17;13738:47;13802:131;13928:4;13802:131;:::i;:::-;13794:139;;13692:248;;;:::o;13946:419::-;;14150:2;14139:9;14135:18;14127:26;;14199:9;14193:4;14189:20;14185:1;14174:9;14170:17;14163:47;14227:131;14353:4;14227:131;:::i;:::-;14219:139;;14117:248;;;:::o;14371:419::-;;14575:2;14564:9;14560:18;14552:26;;14624:9;14618:4;14614:20;14610:1;14599:9;14595:17;14588:47;14652:131;14778:4;14652:131;:::i;:::-;14644:139;;14542:248;;;:::o;14796:419::-;;15000:2;14989:9;14985:18;14977:26;;15049:9;15043:4;15039:20;15035:1;15024:9;15020:17;15013:47;15077:131;15203:4;15077:131;:::i;:::-;15069:139;;14967:248;;;:::o;15221:419::-;;15425:2;15414:9;15410:18;15402:26;;15474:9;15468:4;15464:20;15460:1;15449:9;15445:17;15438:47;15502:131;15628:4;15502:131;:::i;:::-;15494:139;;15392:248;;;:::o;15646:222::-;;15777:2;15766:9;15762:18;15754:26;;15790:71;15858:1;15847:9;15843:17;15834:6;15790:71;:::i;:::-;15744:124;;;;:::o;15874:214::-;;16001:2;15990:9;15986:18;15978:26;;16014:67;16078:1;16067:9;16063:17;16054:6;16014:67;:::i;:::-;15968:120;;;;:::o;16094:99::-;;16180:5;16174:12;16164:22;;16153:40;;;:::o;16199:169::-;;16317:6;16312:3;16305:19;16357:4;16352:3;16348:14;16333:29;;16295:73;;;;:::o;16374:305::-;;16433:20;16451:1;16433:20;:::i;:::-;16428:25;;16467:20;16485:1;16467:20;:::i;:::-;16462:25;;16621:1;16553:66;16549:74;16546:1;16543:81;16540:2;;;16627:18;;:::i;:::-;16540:2;16671:1;16668;16664:9;16657:16;;16418:261;;;;:::o;16685:191::-;;16745:20;16763:1;16745:20;:::i;:::-;16740:25;;16779:20;16797:1;16779:20;:::i;:::-;16774:25;;16818:1;16815;16812:8;16809:2;;;16823:18;;:::i;:::-;16809:2;16868:1;16865;16861:9;16853:17;;16730:146;;;;:::o;16882:96::-;;16948:24;16966:5;16948:24;:::i;:::-;16937:35;;16927:51;;;:::o;16984:90::-;;17061:5;17054:13;17047:21;17036:32;;17026:48;;;:::o;17080:126::-;;17157:42;17150:5;17146:54;17135:65;;17125:81;;;:::o;17212:77::-;;17278:5;17267:16;;17257:32;;;:::o;17295:86::-;;17370:4;17363:5;17359:16;17348:27;;17338:43;;;:::o;17387:307::-;17455:1;17465:113;17479:6;17476:1;17473:13;17465:113;;;17564:1;17559:3;17555:11;17549:18;17545:1;17540:3;17536:11;17529:39;17501:2;17498:1;17494:10;17489:15;;17465:113;;;17596:6;17593:1;17590:13;17587:2;;;17676:1;17667:6;17662:3;17658:16;17651:27;17587:2;17436:258;;;;:::o;17700:320::-;;17781:1;17775:4;17771:12;17761:22;;17828:1;17822:4;17818:12;17849:18;17839:2;;17905:4;17897:6;17893:17;17883:27;;17839:2;17967;17959:6;17956:14;17936:18;17933:38;17930:2;;;17986:18;;:::i;:::-;17930:2;17751:269;;;;:::o;18026:180::-;18074:77;18071:1;18064:88;18171:4;18168:1;18161:15;18195:4;18192:1;18185:15;18212:180;18260:77;18257:1;18250:88;18357:4;18354:1;18347:15;18381:4;18378:1;18371:15;18398:102;;18490:2;18486:7;18481:2;18474:5;18470:14;18466:28;18456:38;;18446:54;;;:::o;18506:122::-;18579:24;18597:5;18579:24;:::i;:::-;18572:5;18569:35;18559:2;;18618:1;18615;18608:12;18559:2;18549:79;:::o;18634:116::-;18704:21;18719:5;18704:21;:::i;:::-;18697:5;18694:32;18684:2;;18740:1;18737;18730:12;18684:2;18674:76;:::o;18756:122::-;18829:24;18847:5;18829:24;:::i;:::-;18822:5;18819:35;18809:2;;18868:1;18865;18858:12;18809:2;18799:79;:::o
Swarm Source
ipfs://a47ac3874aced7566b9517379f2f11ee8fd14b44c238086b0a3c0fd2c0723d30
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.