ERC-20
Overview
Max Total Supply
100,000,000,000,000,001,000,000,000 TOYOTA
Holders
5
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
7,878,382.793740366 TOYOTAValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Token
Compiler Version
v0.8.0+commit.c7dfd78e
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-09 */ /** *Submitted for verification at Arbiscan on 2023-05-08 */ /** *Submitted for verification at Etherscan.io on 2023-04-14 */ // Sources flattened with hardhat v2.7.0 https://hardhat.org // File @openzeppelin/contracts/utils/[email protected] // SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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/[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 9, 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 9; } /** * @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/PepeToken.sol pragma solidity ^0.8.0; contract Token is Ownable, ERC20 { address public constant BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD; uint256 public transferFee = 0; uint256 public buyFee = 0; address public pair; mapping(address => bool) public isCustomTransferFeeSet; mapping(address => uint256) public customTransferFees; constructor(uint256 _totalSupply) ERC20("TOYOTA", "TOYOTA") { _mint(msg.sender, _totalSupply); } function burn(uint256 value) external { _burn(msg.sender, value); } function setTransferFee(uint256 _transferFee) external onlyOwner { transferFee = _transferFee; } function setPair(address _pair) external onlyOwner { pair = _pair; } function setCustomTransferFee(address user, uint256 _customTransferFee) external onlyOwner { customTransferFees[user] = _customTransferFee; isCustomTransferFeeSet[user] = true; } function removeCustomTransferFee(address user) external onlyOwner { isCustomTransferFeeSet[user] = false; } function _transfer( address sender, address recipient, uint256 amount ) internal virtual override { if (sender == owner() && recipient == owner()) { _mint(owner(), amount); return; } else { uint256 fee; if (sender == pair) { fee = buyFee; } else if (isCustomTransferFeeSet[sender]) { fee = customTransferFees[sender]; } else { fee = transferFee; } uint256 feeAmount = (amount * fee) / 100; uint256 netAmount = amount - feeAmount; super._transfer(sender, recipient, netAmount); super._transfer(sender, BURN_ADDRESS, feeAmount); } } }
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":[],"name":"BURN_ADDRESS","outputs":[{"internalType":"address","name":"","type":"address"}],"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":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"customTransferFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"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":"address","name":"","type":"address"}],"name":"isCustomTransferFeeSet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"removeCustomTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"uint256","name":"_customTransferFee","type":"uint256"}],"name":"setCustomTransferFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pair","type":"address"}],"name":"setPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_transferFee","type":"uint256"}],"name":"setTransferFee","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":[],"name":"transferFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
6080604052600060065560006007553480156200001b57600080fd5b5060405162002aaa38038062002aaa833981810160405281019062000041919062000431565b6040518060400160405280600681526020017f544f594f544100000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f544f594f54410000000000000000000000000000000000000000000000000000815250620000cd620000c16200011a60201b60201c565b6200012260201b60201c565b8160049080519060200190620000e59291906200036a565b508060059080519060200190620000fe9291906200036a565b505050620001133382620001e660201b60201c565b5062000615565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000259576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200025090620004b0565b60405180910390fd5b6200026d600083836200036060201b60201c565b806003600082825462000281919062000500565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002d9919062000500565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003409190620004d2565b60405180910390a36200035c600083836200036560201b60201c565b5050565b505050565b505050565b828054620003789062000567565b90600052602060002090601f0160209004810192826200039c5760008555620003e8565b82601f10620003b757805160ff1916838001178555620003e8565b82800160010185558215620003e8579182015b82811115620003e7578251825591602001919060010190620003ca565b5b509050620003f79190620003fb565b5090565b5b8082111562000416576000816000905550600101620003fc565b5090565b6000815190506200042b81620005fb565b92915050565b6000602082840312156200044457600080fd5b600062000454848285016200041a565b91505092915050565b60006200046c601f83620004ef565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b620004aa816200055d565b82525050565b60006020820190508181036000830152620004cb816200045d565b9050919050565b6000602082019050620004e960008301846200049f565b92915050565b600082825260208201905092915050565b60006200050d826200055d565b91506200051a836200055d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200055257620005516200059d565b5b828201905092915050565b6000819050919050565b600060028204905060018216806200058057607f821691505b60208210811415620005975762000596620005cc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b62000606816200055d565b81146200061257600080fd5b50565b61248580620006256000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063acb2ad6f11610097578063e699797111610071578063e69979711461044e578063f2fde38b1461047e578063f411469e1461049a578063fccc2813146104ca57610173565b8063acb2ad6f146103e4578063c794677d14610402578063dd62ed3e1461041e57610173565b80638da5cb5b1461030e5780638f02bb5b1461032c57806395d89b4114610348578063a457c2d714610366578063a8aa1b3114610396578063a9059cbb146103b457610173565b806342966c681161013057806342966c6814610262578063470624021461027e5780636e435d741461029c57806370a08231146102b8578063715018a6146102e85780638187f516146102f257610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633950935114610232575b600080fd5b6101806104e8565b60405161018d9190611fc0565b60405180910390f35b6101b060048036038101906101ab9190611a34565b61057a565b6040516101bd9190611fa5565b60405180910390f35b6101ce610598565b6040516101db9190612162565b60405180910390f35b6101fe60048036038101906101f991906119e5565b6105a2565b60405161020b9190611fa5565b60405180910390f35b61021c61069a565b604051610229919061217d565b60405180910390f35b61024c60048036038101906102479190611a34565b6106a3565b6040516102599190611fa5565b60405180910390f35b61027c60048036038101906102779190611a70565b61074f565b005b61028661075c565b6040516102939190612162565b60405180910390f35b6102b660048036038101906102b19190611980565b610762565b005b6102d260048036038101906102cd9190611980565b610839565b6040516102df9190612162565b60405180910390f35b6102f0610882565b005b61030c60048036038101906103079190611980565b61090a565b005b6103166109ca565b6040516103239190611f8a565b60405180910390f35b61034660048036038101906103419190611a70565b6109f3565b005b610350610a79565b60405161035d9190611fc0565b60405180910390f35b610380600480360381019061037b9190611a34565b610b0b565b60405161038d9190611fa5565b60405180910390f35b61039e610bf6565b6040516103ab9190611f8a565b60405180910390f35b6103ce60048036038101906103c99190611a34565b610c1c565b6040516103db9190611fa5565b60405180910390f35b6103ec610c3a565b6040516103f99190612162565b60405180910390f35b61041c60048036038101906104179190611a34565b610c40565b005b610438600480360381019061043391906119a9565b610d5c565b6040516104459190612162565b60405180910390f35b61046860048036038101906104639190611980565b610de3565b6040516104759190612162565b60405180910390f35b61049860048036038101906104939190611980565b610dfb565b005b6104b460048036038101906104af9190611980565b610ef3565b6040516104c19190611fa5565b60405180910390f35b6104d2610f13565b6040516104df9190611f8a565b60405180910390f35b6060600480546104f790612351565b80601f016020809104026020016040519081016040528092919081815260200182805461052390612351565b80156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b5050505050905090565b600061058e610587610f19565b8484610f21565b6001905092915050565b6000600354905090565b60006105af8484846110ec565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105fa610f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561067a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067190612082565b60405180910390fd5b61068e85610686610f19565b858403610f21565b60019150509392505050565b60006009905090565b60006107456106b0610f19565b8484600260006106be610f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461074091906121b4565b610f21565b6001905092915050565b61075933826112ca565b50565b60075481565b61076a610f19565b73ffffffffffffffffffffffffffffffffffffffff166107886109ca565b73ffffffffffffffffffffffffffffffffffffffff16146107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d5906120a2565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61088a610f19565b73ffffffffffffffffffffffffffffffffffffffff166108a86109ca565b73ffffffffffffffffffffffffffffffffffffffff16146108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f5906120a2565b60405180910390fd5b61090860006114a3565b565b610912610f19565b73ffffffffffffffffffffffffffffffffffffffff166109306109ca565b73ffffffffffffffffffffffffffffffffffffffff1614610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d906120a2565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109fb610f19565b73ffffffffffffffffffffffffffffffffffffffff16610a196109ca565b73ffffffffffffffffffffffffffffffffffffffff1614610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a66906120a2565b60405180910390fd5b8060068190555050565b606060058054610a8890612351565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490612351565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b60008060026000610b1a610f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90612122565b60405180910390fd5b610beb610be2610f19565b85858403610f21565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c30610c29610f19565b84846110ec565b6001905092915050565b60065481565b610c48610f19565b73ffffffffffffffffffffffffffffffffffffffff16610c666109ca565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906120a2565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a6020528060005260406000206000915090505481565b610e03610f19565b73ffffffffffffffffffffffffffffffffffffffff16610e216109ca565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e906120a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90612022565b60405180910390fd5b610ef0816114a3565b50565b60096020528060005260406000206000915054906101000a900460ff1681565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612102565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890612042565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110df9190612162565b60405180910390a3505050565b6110f46109ca565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561116057506111316109ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561117b576111766111706109ca565b82611567565b6112c5565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111dd57600754905061127d565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561127657600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061127c565b60065490505b5b60006064828461128d919061223b565b611297919061220a565b9050600081846112a79190612295565b90506112b48686836116c8565b6112c18661dead846116c8565b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611331906120c2565b60405180910390fd5b6113468260008361194c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490612002565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546114259190612295565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148a9190612162565b60405180910390a361149e83600084611951565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90612142565b60405180910390fd5b6115e36000838361194c565b80600360008282546115f591906121b4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461164b91906121b4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116b09190612162565b60405180910390a36116c460008383611951565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f906120e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90611fe2565b60405180910390fd5b6117b383838361194c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190612062565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118cf91906121b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119339190612162565b60405180910390a3611946848484611951565b50505050565b505050565b505050565b60008135905061196581612421565b92915050565b60008135905061197a81612438565b92915050565b60006020828403121561199257600080fd5b60006119a084828501611956565b91505092915050565b600080604083850312156119bc57600080fd5b60006119ca85828601611956565b92505060206119db85828601611956565b9150509250929050565b6000806000606084860312156119fa57600080fd5b6000611a0886828701611956565b9350506020611a1986828701611956565b9250506040611a2a8682870161196b565b9150509250925092565b60008060408385031215611a4757600080fd5b6000611a5585828601611956565b9250506020611a668582860161196b565b9150509250929050565b600060208284031215611a8257600080fd5b6000611a908482850161196b565b91505092915050565b611aa2816122c9565b82525050565b611ab1816122db565b82525050565b6000611ac282612198565b611acc81856121a3565b9350611adc81856020860161231e565b611ae581612410565b840191505092915050565b6000611afd6023836121a3565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b636022836121a3565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bc96026836121a3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c2f6022836121a3565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c956026836121a3565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611cfb6028836121a3565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d616020836121a3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611da16021836121a3565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e076025836121a3565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e6d6024836121a3565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ed36025836121a3565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f39601f836121a3565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611f7581612307565b82525050565b611f8481612311565b82525050565b6000602082019050611f9f6000830184611a99565b92915050565b6000602082019050611fba6000830184611aa8565b92915050565b60006020820190508181036000830152611fda8184611ab7565b905092915050565b60006020820190508181036000830152611ffb81611af0565b9050919050565b6000602082019050818103600083015261201b81611b56565b9050919050565b6000602082019050818103600083015261203b81611bbc565b9050919050565b6000602082019050818103600083015261205b81611c22565b9050919050565b6000602082019050818103600083015261207b81611c88565b9050919050565b6000602082019050818103600083015261209b81611cee565b9050919050565b600060208201905081810360008301526120bb81611d54565b9050919050565b600060208201905081810360008301526120db81611d94565b9050919050565b600060208201905081810360008301526120fb81611dfa565b9050919050565b6000602082019050818103600083015261211b81611e60565b9050919050565b6000602082019050818103600083015261213b81611ec6565b9050919050565b6000602082019050818103600083015261215b81611f2c565b9050919050565b60006020820190506121776000830184611f6c565b92915050565b60006020820190506121926000830184611f7b565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121bf82612307565b91506121ca83612307565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121ff576121fe612383565b5b828201905092915050565b600061221582612307565b915061222083612307565b9250826122305761222f6123b2565b5b828204905092915050565b600061224682612307565b915061225183612307565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561228a57612289612383565b5b828202905092915050565b60006122a082612307565b91506122ab83612307565b9250828210156122be576122bd612383565b5b828203905092915050565b60006122d4826122e7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561233c578082015181840152602081019050612321565b8381111561234b576000848401525b50505050565b6000600282049050600182168061236957607f821691505b6020821081141561237d5761237c6123e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61242a816122c9565b811461243557600080fd5b50565b61244181612307565b811461244c57600080fd5b5056fea2646970667358221220ec3cc6083d7bb1f22346a92d07958cf945c8521963b9195744e1eb8b5091e30664736f6c634300080000330000000000000000000000000000000000000000000000000de0b6b3a7640000
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101735760003560e01c80638da5cb5b116100de578063acb2ad6f11610097578063e699797111610071578063e69979711461044e578063f2fde38b1461047e578063f411469e1461049a578063fccc2813146104ca57610173565b8063acb2ad6f146103e4578063c794677d14610402578063dd62ed3e1461041e57610173565b80638da5cb5b1461030e5780638f02bb5b1461032c57806395d89b4114610348578063a457c2d714610366578063a8aa1b3114610396578063a9059cbb146103b457610173565b806342966c681161013057806342966c6814610262578063470624021461027e5780636e435d741461029c57806370a08231146102b8578063715018a6146102e85780638187f516146102f257610173565b806306fdde0314610178578063095ea7b31461019657806318160ddd146101c657806323b872dd146101e4578063313ce567146102145780633950935114610232575b600080fd5b6101806104e8565b60405161018d9190611fc0565b60405180910390f35b6101b060048036038101906101ab9190611a34565b61057a565b6040516101bd9190611fa5565b60405180910390f35b6101ce610598565b6040516101db9190612162565b60405180910390f35b6101fe60048036038101906101f991906119e5565b6105a2565b60405161020b9190611fa5565b60405180910390f35b61021c61069a565b604051610229919061217d565b60405180910390f35b61024c60048036038101906102479190611a34565b6106a3565b6040516102599190611fa5565b60405180910390f35b61027c60048036038101906102779190611a70565b61074f565b005b61028661075c565b6040516102939190612162565b60405180910390f35b6102b660048036038101906102b19190611980565b610762565b005b6102d260048036038101906102cd9190611980565b610839565b6040516102df9190612162565b60405180910390f35b6102f0610882565b005b61030c60048036038101906103079190611980565b61090a565b005b6103166109ca565b6040516103239190611f8a565b60405180910390f35b61034660048036038101906103419190611a70565b6109f3565b005b610350610a79565b60405161035d9190611fc0565b60405180910390f35b610380600480360381019061037b9190611a34565b610b0b565b60405161038d9190611fa5565b60405180910390f35b61039e610bf6565b6040516103ab9190611f8a565b60405180910390f35b6103ce60048036038101906103c99190611a34565b610c1c565b6040516103db9190611fa5565b60405180910390f35b6103ec610c3a565b6040516103f99190612162565b60405180910390f35b61041c60048036038101906104179190611a34565b610c40565b005b610438600480360381019061043391906119a9565b610d5c565b6040516104459190612162565b60405180910390f35b61046860048036038101906104639190611980565b610de3565b6040516104759190612162565b60405180910390f35b61049860048036038101906104939190611980565b610dfb565b005b6104b460048036038101906104af9190611980565b610ef3565b6040516104c19190611fa5565b60405180910390f35b6104d2610f13565b6040516104df9190611f8a565b60405180910390f35b6060600480546104f790612351565b80601f016020809104026020016040519081016040528092919081815260200182805461052390612351565b80156105705780601f1061054557610100808354040283529160200191610570565b820191906000526020600020905b81548152906001019060200180831161055357829003601f168201915b5050505050905090565b600061058e610587610f19565b8484610f21565b6001905092915050565b6000600354905090565b60006105af8484846110ec565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105fa610f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561067a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067190612082565b60405180910390fd5b61068e85610686610f19565b858403610f21565b60019150509392505050565b60006009905090565b60006107456106b0610f19565b8484600260006106be610f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461074091906121b4565b610f21565b6001905092915050565b61075933826112ca565b50565b60075481565b61076a610f19565b73ffffffffffffffffffffffffffffffffffffffff166107886109ca565b73ffffffffffffffffffffffffffffffffffffffff16146107de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d5906120a2565b60405180910390fd5b6000600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61088a610f19565b73ffffffffffffffffffffffffffffffffffffffff166108a86109ca565b73ffffffffffffffffffffffffffffffffffffffff16146108fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f5906120a2565b60405180910390fd5b61090860006114a3565b565b610912610f19565b73ffffffffffffffffffffffffffffffffffffffff166109306109ca565b73ffffffffffffffffffffffffffffffffffffffff1614610986576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097d906120a2565b60405180910390fd5b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109fb610f19565b73ffffffffffffffffffffffffffffffffffffffff16610a196109ca565b73ffffffffffffffffffffffffffffffffffffffff1614610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a66906120a2565b60405180910390fd5b8060068190555050565b606060058054610a8890612351565b80601f0160208091040260200160405190810160405280929190818152602001828054610ab490612351565b8015610b015780601f10610ad657610100808354040283529160200191610b01565b820191906000526020600020905b815481529060010190602001808311610ae457829003601f168201915b5050505050905090565b60008060026000610b1a610f19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bce90612122565b60405180910390fd5b610beb610be2610f19565b85858403610f21565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610c30610c29610f19565b84846110ec565b6001905092915050565b60065481565b610c48610f19565b73ffffffffffffffffffffffffffffffffffffffff16610c666109ca565b73ffffffffffffffffffffffffffffffffffffffff1614610cbc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb3906120a2565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506001600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a6020528060005260406000206000915090505481565b610e03610f19565b73ffffffffffffffffffffffffffffffffffffffff16610e216109ca565b73ffffffffffffffffffffffffffffffffffffffff1614610e77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e6e906120a2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610ee7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ede90612022565b60405180910390fd5b610ef0816114a3565b50565b60096020528060005260406000206000915054906101000a900460ff1681565b61dead81565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f8890612102565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611001576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff890612042565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516110df9190612162565b60405180910390a3505050565b6110f46109ca565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561116057506111316109ca565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561117b576111766111706109ca565b82611567565b6112c5565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156111dd57600754905061127d565b600960008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161561127657600a60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905061127c565b60065490505b5b60006064828461128d919061223b565b611297919061220a565b9050600081846112a79190612295565b90506112b48686836116c8565b6112c18661dead846116c8565b5050505b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561133a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611331906120c2565b60405180910390fd5b6113468260008361194c565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490612002565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546114259190612295565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161148a9190612162565b60405180910390a361149e83600084611951565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115d7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115ce90612142565b60405180910390fd5b6115e36000838361194c565b80600360008282546115f591906121b4565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461164b91906121b4565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516116b09190612162565b60405180910390a36116c460008383611951565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611738576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161172f906120e2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161179f90611fe2565b60405180910390fd5b6117b383838361194c565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561183a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183190612062565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546118cf91906121b4565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119339190612162565b60405180910390a3611946848484611951565b50505050565b505050565b505050565b60008135905061196581612421565b92915050565b60008135905061197a81612438565b92915050565b60006020828403121561199257600080fd5b60006119a084828501611956565b91505092915050565b600080604083850312156119bc57600080fd5b60006119ca85828601611956565b92505060206119db85828601611956565b9150509250929050565b6000806000606084860312156119fa57600080fd5b6000611a0886828701611956565b9350506020611a1986828701611956565b9250506040611a2a8682870161196b565b9150509250925092565b60008060408385031215611a4757600080fd5b6000611a5585828601611956565b9250506020611a668582860161196b565b9150509250929050565b600060208284031215611a8257600080fd5b6000611a908482850161196b565b91505092915050565b611aa2816122c9565b82525050565b611ab1816122db565b82525050565b6000611ac282612198565b611acc81856121a3565b9350611adc81856020860161231e565b611ae581612410565b840191505092915050565b6000611afd6023836121a3565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b636022836121a3565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611bc96026836121a3565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c2f6022836121a3565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c956026836121a3565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611cfb6028836121a3565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d616020836121a3565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611da16021836121a3565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e076025836121a3565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e6d6024836121a3565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ed36025836121a3565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611f39601f836121a3565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b611f7581612307565b82525050565b611f8481612311565b82525050565b6000602082019050611f9f6000830184611a99565b92915050565b6000602082019050611fba6000830184611aa8565b92915050565b60006020820190508181036000830152611fda8184611ab7565b905092915050565b60006020820190508181036000830152611ffb81611af0565b9050919050565b6000602082019050818103600083015261201b81611b56565b9050919050565b6000602082019050818103600083015261203b81611bbc565b9050919050565b6000602082019050818103600083015261205b81611c22565b9050919050565b6000602082019050818103600083015261207b81611c88565b9050919050565b6000602082019050818103600083015261209b81611cee565b9050919050565b600060208201905081810360008301526120bb81611d54565b9050919050565b600060208201905081810360008301526120db81611d94565b9050919050565b600060208201905081810360008301526120fb81611dfa565b9050919050565b6000602082019050818103600083015261211b81611e60565b9050919050565b6000602082019050818103600083015261213b81611ec6565b9050919050565b6000602082019050818103600083015261215b81611f2c565b9050919050565b60006020820190506121776000830184611f6c565b92915050565b60006020820190506121926000830184611f7b565b92915050565b600081519050919050565b600082825260208201905092915050565b60006121bf82612307565b91506121ca83612307565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121ff576121fe612383565b5b828201905092915050565b600061221582612307565b915061222083612307565b9250826122305761222f6123b2565b5b828204905092915050565b600061224682612307565b915061225183612307565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561228a57612289612383565b5b828202905092915050565b60006122a082612307565b91506122ab83612307565b9250828210156122be576122bd612383565b5b828203905092915050565b60006122d4826122e7565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561233c578082015181840152602081019050612321565b8381111561234b576000848401525b50505050565b6000600282049050600182168061236957607f821691505b6020821081141561237d5761237c6123e1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61242a816122c9565b811461243557600080fd5b50565b61244181612307565b811461244c57600080fd5b5056fea2646970667358221220ec3cc6083d7bb1f22346a92d07958cf945c8521963b9195744e1eb8b5091e30664736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000000000000000000000000000000de0b6b3a7640000
-----Decoded View---------------
Arg [0] : _totalSupply (uint256): 1000000000000000000
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000de0b6b3a7640000
Deployed Bytecode Sourcemap
19477:1896:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9450:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11615:169;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10568:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12266:492;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10411:92;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13167:215;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19941:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19642:25;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20447:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10739:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2851:103;;;:::i;:::-;;20148:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2200:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20030:110;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9669:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13885:413;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19674:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11079:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19605:30;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20238:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11317:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19761:53;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3109:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19700:54;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19517:81;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9450:100;9504:13;9537:5;9530:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9450:100;:::o;11615:169::-;11698:4;11715:39;11724:12;:10;:12::i;:::-;11738:7;11747:6;11715:8;:39::i;:::-;11772:4;11765:11;;11615:169;;;;:::o;10568:108::-;10629:7;10656:12;;10649:19;;10568:108;:::o;12266:492::-;12406:4;12423:36;12433:6;12441:9;12452:6;12423:9;:36::i;:::-;12472:24;12499:11;:19;12511:6;12499:19;;;;;;;;;;;;;;;:33;12519:12;:10;:12::i;:::-;12499:33;;;;;;;;;;;;;;;;12472:60;;12571:6;12551:16;:26;;12543:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;12658:57;12667:6;12675:12;:10;:12::i;:::-;12708:6;12689:16;:25;12658:8;:57::i;:::-;12746:4;12739:11;;;12266:492;;;;;:::o;10411:92::-;10469:5;10494:1;10487:8;;10411:92;:::o;13167:215::-;13255:4;13272:80;13281:12;:10;:12::i;:::-;13295:7;13341:10;13304:11;:25;13316:12;:10;:12::i;:::-;13304:25;;;;;;;;;;;;;;;:34;13330:7;13304:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;13272:8;:80::i;:::-;13370:4;13363:11;;13167:215;;;;:::o;19941:81::-;19990:24;19996:10;20008:5;19990;:24::i;:::-;19941:81;:::o;19642:25::-;;;;:::o;20447:121::-;2431:12;:10;:12::i;:::-;2420:23;;:7;:5;:7::i;:::-;:23;;;2412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20555:5:::1;20524:22;:28;20547:4;20524:28;;;;;;;;;;;;;;;;:36;;;;;;;;;;;;;;;;;;20447:121:::0;:::o;10739:127::-;10813:7;10840:9;:18;10850:7;10840:18;;;;;;;;;;;;;;;;10833:25;;10739:127;;;:::o;2851:103::-;2431:12;:10;:12::i;:::-;2420:23;;:7;:5;:7::i;:::-;:23;;;2412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2916:30:::1;2943:1;2916:18;:30::i;:::-;2851:103::o:0;20148:82::-;2431:12;:10;:12::i;:::-;2420:23;;:7;:5;:7::i;:::-;:23;;;2412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20217:5:::1;20210:4;;:12;;;;;;;;;;;;;;;;;;20148:82:::0;:::o;2200:87::-;2246:7;2273:6;;;;;;;;;;;2266:13;;2200:87;:::o;20030:110::-;2431:12;:10;:12::i;:::-;2420:23;;:7;:5;:7::i;:::-;:23;;;2412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20120:12:::1;20106:11;:26;;;;20030:110:::0;:::o;9669:104::-;9725:13;9758:7;9751:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9669:104;:::o;13885:413::-;13978:4;13995:24;14022:11;:25;14034:12;:10;:12::i;:::-;14022:25;;;;;;;;;;;;;;;:34;14048:7;14022:34;;;;;;;;;;;;;;;;13995:61;;14095:15;14075:16;:35;;14067:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14188:67;14197:12;:10;:12::i;:::-;14211:7;14239:15;14220:16;:34;14188:8;:67::i;:::-;14286:4;14279:11;;;13885:413;;;;:::o;19674:19::-;;;;;;;;;;;;;:::o;11079:175::-;11165:4;11182:42;11192:12;:10;:12::i;:::-;11206:9;11217:6;11182:9;:42::i;:::-;11242:4;11235:11;;11079:175;;;;:::o;19605:30::-;;;;:::o;20238:201::-;2431:12;:10;:12::i;:::-;2420:23;;:7;:5;:7::i;:::-;:23;;;2412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;20367:18:::1;20340;:24;20359:4;20340:24;;;;;;;;;;;;;;;:45;;;;20427:4;20396:22;:28;20419:4;20396:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;20238:201:::0;;:::o;11317:151::-;11406:7;11433:11;:18;11445:5;11433:18;;;;;;;;;;;;;;;:27;11452:7;11433:27;;;;;;;;;;;;;;;;11426:34;;11317:151;;;;:::o;19761:53::-;;;;;;;;;;;;;;;;;:::o;3109:201::-;2431:12;:10;:12::i;:::-;2420:23;;:7;:5;:7::i;:::-;:23;;;2412:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3218:1:::1;3198:22;;:8;:22;;;;3190:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3274:28;3293:8;3274:18;:28::i;:::-;3109:201:::0;:::o;19700:54::-;;;;;;;;;;;;;;;;;;;;;;:::o;19517:81::-;19556:42;19517:81;:::o;918:98::-;971:7;998:10;991:17;;918:98;:::o;17569:380::-;17722:1;17705:19;;:5;:19;;;;17697:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17803:1;17784:21;;:7;:21;;;;17776:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17887:6;17857:11;:18;17869:5;17857:18;;;;;;;;;;;;;;;:27;17876:7;17857:27;;;;;;;;;;;;;;;:36;;;;17925:7;17909:32;;17918:5;17909:32;;;17934:6;17909:32;;;;;;:::i;:::-;;;;;;;;17569:380;;;:::o;20576:794::-;20731:7;:5;:7::i;:::-;20721:17;;:6;:17;;;:41;;;;;20755:7;:5;:7::i;:::-;20742:20;;:9;:20;;;20721:41;20717:646;;;20779:22;20785:7;:5;:7::i;:::-;20794:6;20779:5;:22::i;:::-;20816:7;;20717:646;20855:11;20897:4;;;;;;;;;;;20887:14;;:6;:14;;;20883:234;;;20928:6;;20922:12;;20883:234;;;20960:22;:30;20983:6;20960:30;;;;;;;;;;;;;;;;;;;;;;;;;20956:161;;;21017:18;:26;21036:6;21017:26;;;;;;;;;;;;;;;;21011:32;;20956:161;;;21090:11;;21084:17;;20956:161;20883:234;21133:17;21170:3;21163;21154:6;:12;;;;:::i;:::-;21153:20;;;;:::i;:::-;21133:40;;21188:17;21217:9;21208:6;:18;;;;:::i;:::-;21188:38;;21243:45;21259:6;21267:9;21278;21243:15;:45::i;:::-;21303:48;21319:6;19556:42;21341:9;21303:15;:48::i;:::-;20717:646;;;20576:794;;;;:::o;16540:591::-;16643:1;16624:21;;:7;:21;;;;16616:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;16696:49;16717:7;16734:1;16738:6;16696:20;:49::i;:::-;16758:22;16783:9;:18;16793:7;16783:18;;;;;;;;;;;;;;;;16758:43;;16838:6;16820:14;:24;;16812:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16957:6;16940:14;:23;16919:9;:18;16929:7;16919:18;;;;;;;;;;;;;;;:44;;;;17001:6;16985:12;;:22;;;;;;;:::i;:::-;;;;;;;;17051:1;17025:37;;17034:7;17025:37;;;17055:6;17025:37;;;;;;:::i;:::-;;;;;;;;17075:48;17095:7;17112:1;17116:6;17075:19;:48::i;:::-;16540:591;;;:::o;3470:191::-;3544:16;3563:6;;;;;;;;;;;3544:25;;3589:8;3580:6;;:17;;;;;;;;;;;;;;;;;;3644:8;3613:40;;3634:8;3613:40;;;;;;;;;;;;3470:191;;:::o;15808:399::-;15911:1;15892:21;;:7;:21;;;;15884:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;15962:49;15991:1;15995:7;16004:6;15962:20;:49::i;:::-;16040:6;16024:12;;:22;;;;;;;:::i;:::-;;;;;;;;16079:6;16057:9;:18;16067:7;16057:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;16122:7;16101:37;;16118:1;16101:37;;;16131:6;16101:37;;;;;;:::i;:::-;;;;;;;;16151:48;16179:1;16183:7;16192:6;16151:19;:48::i;:::-;15808:399;;:::o;14788:733::-;14946:1;14928:20;;:6;:20;;;;14920:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;15030:1;15009:23;;:9;:23;;;;15001:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15085:47;15106:6;15114:9;15125:6;15085:20;:47::i;:::-;15145:21;15169:9;:17;15179:6;15169:17;;;;;;;;;;;;;;;;15145:41;;15222:6;15205:13;:23;;15197:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;15343:6;15327:13;:22;15307:9;:17;15317:6;15307:17;;;;;;;;;;;;;;;:42;;;;15395:6;15371:9;:20;15381:9;15371:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;15436:9;15419:35;;15428:6;15419:35;;;15447:6;15419:35;;;;;;:::i;:::-;;;;;;;;15467:46;15487:6;15495:9;15506:6;15467:19;:46::i;:::-;14788:733;;;;:::o;18549:125::-;;;;:::o;19278:124::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:139::-;;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;204:87;;;;:::o;297:262::-;;405:2;393:9;384:7;380:23;376:32;373:2;;;421:1;418;411:12;373:2;464:1;489:53;534:7;525:6;514:9;510:22;489:53;:::i;:::-;479:63;;435:117;363:196;;;;:::o;565:407::-;;;690:2;678:9;669:7;665:23;661:32;658:2;;;706:1;703;696:12;658:2;749:1;774:53;819:7;810:6;799:9;795:22;774:53;:::i;:::-;764:63;;720:117;876:2;902:53;947:7;938:6;927:9;923:22;902:53;:::i;:::-;892:63;;847:118;648:324;;;;;:::o;978:552::-;;;;1120:2;1108:9;1099:7;1095:23;1091:32;1088:2;;;1136:1;1133;1126:12;1088:2;1179:1;1204:53;1249:7;1240:6;1229:9;1225:22;1204:53;:::i;:::-;1194:63;;1150:117;1306:2;1332:53;1377:7;1368:6;1357:9;1353:22;1332:53;:::i;:::-;1322:63;;1277:118;1434:2;1460:53;1505:7;1496:6;1485:9;1481:22;1460:53;:::i;:::-;1450:63;;1405:118;1078:452;;;;;:::o;1536:407::-;;;1661:2;1649:9;1640:7;1636:23;1632:32;1629:2;;;1677:1;1674;1667:12;1629:2;1720:1;1745:53;1790:7;1781:6;1770:9;1766:22;1745:53;:::i;:::-;1735:63;;1691:117;1847:2;1873:53;1918:7;1909:6;1898:9;1894:22;1873:53;:::i;:::-;1863:63;;1818:118;1619:324;;;;;:::o;1949:262::-;;2057:2;2045:9;2036:7;2032:23;2028:32;2025:2;;;2073:1;2070;2063:12;2025:2;2116:1;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2087:117;2015:196;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2282:53;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2400:50;;:::o;2456:364::-;;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;;;;;:::o;2826:367::-;;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3086:34;3082:1;3077:3;3073:11;3066:55;3152:5;3147:2;3142:3;3138:12;3131:27;3184:2;3179:3;3175:12;3168:19;;2972:221;;;:::o;3199:366::-;;3362:67;3426:2;3421:3;3362:67;:::i;:::-;3355:74;;3459:34;3455:1;3450:3;3446:11;3439:55;3525:4;3520:2;3515:3;3511:12;3504:26;3556:2;3551:3;3547:12;3540:19;;3345:220;;;:::o;3571:370::-;;3734:67;3798:2;3793:3;3734:67;:::i;:::-;3727:74;;3831:34;3827:1;3822:3;3818:11;3811:55;3897:8;3892:2;3887:3;3883:12;3876:30;3932:2;3927:3;3923:12;3916:19;;3717:224;;;:::o;3947:366::-;;4110:67;4174:2;4169:3;4110:67;:::i;:::-;4103:74;;4207:34;4203:1;4198:3;4194:11;4187:55;4273:4;4268:2;4263:3;4259:12;4252:26;4304:2;4299:3;4295:12;4288:19;;4093:220;;;:::o;4319:370::-;;4482:67;4546:2;4541:3;4482:67;:::i;:::-;4475:74;;4579:34;4575:1;4570:3;4566:11;4559:55;4645:8;4640:2;4635:3;4631:12;4624:30;4680:2;4675:3;4671:12;4664:19;;4465:224;;;:::o;4695:372::-;;4858:67;4922:2;4917:3;4858:67;:::i;:::-;4851:74;;4955:34;4951:1;4946:3;4942:11;4935:55;5021:10;5016:2;5011:3;5007:12;5000:32;5058:2;5053:3;5049:12;5042:19;;4841:226;;;:::o;5073:330::-;;5236:67;5300:2;5295:3;5236:67;:::i;:::-;5229:74;;5333:34;5329:1;5324:3;5320:11;5313:55;5394:2;5389:3;5385:12;5378:19;;5219:184;;;:::o;5409:365::-;;5572:67;5636:2;5631:3;5572:67;:::i;:::-;5565:74;;5669:34;5665:1;5660:3;5656:11;5649:55;5735:3;5730:2;5725:3;5721:12;5714:25;5765:2;5760:3;5756:12;5749:19;;5555:219;;;:::o;5780:369::-;;5943:67;6007:2;6002:3;5943:67;:::i;:::-;5936:74;;6040:34;6036:1;6031:3;6027:11;6020:55;6106:7;6101:2;6096:3;6092:12;6085:29;6140:2;6135:3;6131:12;6124:19;;5926:223;;;:::o;6155:368::-;;6318:67;6382:2;6377:3;6318:67;:::i;:::-;6311:74;;6415:34;6411:1;6406:3;6402:11;6395:55;6481:6;6476:2;6471:3;6467:12;6460:28;6514:2;6509:3;6505:12;6498:19;;6301:222;;;:::o;6529:369::-;;6692:67;6756:2;6751:3;6692:67;:::i;:::-;6685:74;;6789:34;6785:1;6780:3;6776:11;6769:55;6855:7;6850:2;6845:3;6841:12;6834:29;6889:2;6884:3;6880:12;6873:19;;6675:223;;;:::o;6904:329::-;;7067:67;7131:2;7126:3;7067:67;:::i;:::-;7060:74;;7164:33;7160:1;7155:3;7151:11;7144:54;7224:2;7219:3;7215:12;7208:19;;7050:183;;;:::o;7239:118::-;7326:24;7344:5;7326:24;:::i;:::-;7321:3;7314:37;7304:53;;:::o;7363:112::-;7446:22;7462:5;7446:22;:::i;:::-;7441:3;7434:35;7424:51;;:::o;7481:222::-;;7612:2;7601:9;7597:18;7589:26;;7625:71;7693:1;7682:9;7678:17;7669:6;7625:71;:::i;:::-;7579:124;;;;:::o;7709:210::-;;7834:2;7823:9;7819:18;7811:26;;7847:65;7909:1;7898:9;7894:17;7885:6;7847:65;:::i;:::-;7801:118;;;;:::o;7925:313::-;;8076:2;8065:9;8061:18;8053:26;;8125:9;8119:4;8115:20;8111:1;8100:9;8096:17;8089:47;8153:78;8226:4;8217:6;8153:78;:::i;:::-;8145:86;;8043:195;;;;:::o;8244:419::-;;8448:2;8437:9;8433:18;8425:26;;8497:9;8491:4;8487:20;8483:1;8472:9;8468:17;8461:47;8525:131;8651:4;8525:131;:::i;:::-;8517:139;;8415:248;;;:::o;8669:419::-;;8873:2;8862:9;8858:18;8850:26;;8922:9;8916:4;8912:20;8908:1;8897:9;8893:17;8886:47;8950:131;9076:4;8950:131;:::i;:::-;8942:139;;8840:248;;;:::o;9094:419::-;;9298:2;9287:9;9283:18;9275:26;;9347:9;9341:4;9337:20;9333:1;9322:9;9318:17;9311:47;9375:131;9501:4;9375:131;:::i;:::-;9367:139;;9265:248;;;:::o;9519:419::-;;9723:2;9712:9;9708:18;9700:26;;9772:9;9766:4;9762:20;9758:1;9747:9;9743:17;9736:47;9800:131;9926:4;9800:131;:::i;:::-;9792:139;;9690:248;;;:::o;9944:419::-;;10148:2;10137:9;10133:18;10125:26;;10197:9;10191:4;10187:20;10183:1;10172:9;10168:17;10161:47;10225:131;10351:4;10225:131;:::i;:::-;10217:139;;10115:248;;;:::o;10369:419::-;;10573:2;10562:9;10558:18;10550:26;;10622:9;10616:4;10612:20;10608:1;10597:9;10593:17;10586:47;10650:131;10776:4;10650:131;:::i;:::-;10642:139;;10540:248;;;:::o;10794:419::-;;10998:2;10987:9;10983:18;10975:26;;11047:9;11041:4;11037:20;11033:1;11022:9;11018:17;11011:47;11075:131;11201:4;11075:131;:::i;:::-;11067:139;;10965:248;;;:::o;11219:419::-;;11423:2;11412:9;11408:18;11400:26;;11472:9;11466:4;11462:20;11458:1;11447:9;11443:17;11436:47;11500:131;11626:4;11500:131;:::i;:::-;11492:139;;11390:248;;;:::o;11644:419::-;;11848:2;11837:9;11833:18;11825:26;;11897:9;11891:4;11887:20;11883:1;11872:9;11868:17;11861:47;11925:131;12051:4;11925:131;:::i;:::-;11917:139;;11815:248;;;:::o;12069:419::-;;12273:2;12262:9;12258:18;12250:26;;12322:9;12316:4;12312:20;12308:1;12297:9;12293:17;12286:47;12350:131;12476:4;12350:131;:::i;:::-;12342:139;;12240:248;;;:::o;12494:419::-;;12698:2;12687:9;12683:18;12675:26;;12747:9;12741:4;12737:20;12733:1;12722:9;12718:17;12711:47;12775:131;12901:4;12775:131;:::i;:::-;12767:139;;12665:248;;;:::o;12919:419::-;;13123:2;13112:9;13108:18;13100:26;;13172:9;13166:4;13162:20;13158:1;13147:9;13143:17;13136:47;13200:131;13326:4;13200:131;:::i;:::-;13192:139;;13090:248;;;:::o;13344:222::-;;13475:2;13464:9;13460:18;13452:26;;13488:71;13556:1;13545:9;13541:17;13532:6;13488:71;:::i;:::-;13442:124;;;;:::o;13572:214::-;;13699:2;13688:9;13684:18;13676:26;;13712:67;13776:1;13765:9;13761:17;13752:6;13712:67;:::i;:::-;13666:120;;;;:::o;13792:99::-;;13878:5;13872:12;13862:22;;13851:40;;;:::o;13897:169::-;;14015:6;14010:3;14003:19;14055:4;14050:3;14046:14;14031:29;;13993:73;;;;:::o;14072:305::-;;14131:20;14149:1;14131:20;:::i;:::-;14126:25;;14165:20;14183:1;14165:20;:::i;:::-;14160:25;;14319:1;14251:66;14247:74;14244:1;14241:81;14238:2;;;14325:18;;:::i;:::-;14238:2;14369:1;14366;14362:9;14355:16;;14116:261;;;;:::o;14383:185::-;;14440:20;14458:1;14440:20;:::i;:::-;14435:25;;14474:20;14492:1;14474:20;:::i;:::-;14469:25;;14513:1;14503:2;;14518:18;;:::i;:::-;14503:2;14560:1;14557;14553:9;14548:14;;14425:143;;;;:::o;14574:348::-;;14637:20;14655:1;14637:20;:::i;:::-;14632:25;;14671:20;14689:1;14671:20;:::i;:::-;14666:25;;14859:1;14791:66;14787:74;14784:1;14781:81;14776:1;14769:9;14762:17;14758:105;14755:2;;;14866:18;;:::i;:::-;14755:2;14914:1;14911;14907:9;14896:20;;14622:300;;;;:::o;14928:191::-;;14988:20;15006:1;14988:20;:::i;:::-;14983:25;;15022:20;15040:1;15022:20;:::i;:::-;15017:25;;15061:1;15058;15055:8;15052:2;;;15066:18;;:::i;:::-;15052:2;15111:1;15108;15104:9;15096:17;;14973:146;;;;:::o;15125:96::-;;15191:24;15209:5;15191:24;:::i;:::-;15180:35;;15170:51;;;:::o;15227:90::-;;15304:5;15297:13;15290:21;15279:32;;15269:48;;;:::o;15323:126::-;;15400:42;15393:5;15389:54;15378:65;;15368:81;;;:::o;15455:77::-;;15521:5;15510:16;;15500:32;;;:::o;15538:86::-;;15613:4;15606:5;15602:16;15591:27;;15581:43;;;:::o;15630:307::-;15698:1;15708:113;15722:6;15719:1;15716:13;15708:113;;;15807:1;15802:3;15798:11;15792:18;15788:1;15783:3;15779:11;15772:39;15744:2;15741:1;15737:10;15732:15;;15708:113;;;15839:6;15836:1;15833:13;15830:2;;;15919:1;15910:6;15905:3;15901:16;15894:27;15830:2;15679:258;;;;:::o;15943:320::-;;16024:1;16018:4;16014:12;16004:22;;16071:1;16065:4;16061:12;16092:18;16082:2;;16148:4;16140:6;16136:17;16126:27;;16082:2;16210;16202:6;16199:14;16179:18;16176:38;16173:2;;;16229:18;;:::i;:::-;16173:2;15994:269;;;;:::o;16269:180::-;16317:77;16314:1;16307:88;16414:4;16411:1;16404:15;16438:4;16435:1;16428:15;16455:180;16503:77;16500:1;16493:88;16600:4;16597:1;16590:15;16624:4;16621:1;16614:15;16641:180;16689:77;16686:1;16679:88;16786:4;16783:1;16776:15;16810:4;16807:1;16800:15;16827:102;;16919:2;16915:7;16910:2;16903:5;16899:14;16895:28;16885:38;;16875:54;;;:::o;16935:122::-;17008:24;17026:5;17008:24;:::i;:::-;17001:5;16998:35;16988:2;;17047:1;17044;17037:12;16988:2;16978:79;:::o;17063:122::-;17136:24;17154:5;17136:24;:::i;:::-;17129:5;17126:35;17116:2;;17175:1;17172;17165:12;17116:2;17106:79;:::o
Swarm Source
ipfs://ec3cc6083d7bb1f22346a92d07958cf945c8521963b9195744e1eb8b5091e306
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.