Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
MEME
Overview
Max Total Supply
690,000,000,000 WASSIE
Holders
4,155 ( -0.048%)
Market
Price
$0.00 @ 0.000000 ETH (-7.21%)
Onchain Market Cap
$2,559,900.00
Circulating Supply Market Cap
$2,543,891.00
Other Info
Token Contract (WITH 18 Decimals)
Balance
6,786,166.665584203680721798 WASSIEValue
$25.18 ( ~0.0101474529463804 Eth) [0.0010%]Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
WASSIE
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion, Audited
Contract Source Code (Solidity Standard Json-Input format)Audit Report
/** *Submitted for verification at Etherscan.io on 2023-04-14 */ //SOCIALS // https://twitter.com/WassieTokenETH // https://t.me/AskTheWassie // https://www.ask-wassie.com/ // 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.4; /** * @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.4; /** * @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.4; /** * @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.4; /** * @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.4; /** * @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 {} } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; } // File contracts/WASSIE.sol pragma solidity ^0.8.4; contract WASSIE is Ownable, ERC20 { uint256 public maxHoldingAmount; address public uniswapV2Pair; IUniswapV2Router02 immutable router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 SUPPLY = 690000000000 * 10**18; uint256 fee = 10; bool private inSwap = false; constructor() ERC20("WASSIE", "WASSIE") payable { _mint(msg.sender, SUPPLY * 7 / 100); _mint(address(this), SUPPLY * 93 / 100); maxHoldingAmount = SUPPLY * 1 / 100; } receive() external payable {} function removeFee() external onlyOwner { fee = 0; } function removeMaxHoldingAmount() external onlyOwner { maxHoldingAmount = SUPPLY; } function openTrading() external onlyOwner { address pair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _approve(address(this), address(router), balanceOf(address(this))); router.addLiquidityETH{ value: address(this).balance } ( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); uniswapV2Pair = pair; } function _transfer(address from, address to, uint256 amount) internal override { if(uniswapV2Pair == address(0)) { require(from == address(this) || from == address(0) || from == owner() || to == owner(), "Not started"); super._transfer(from, to, amount); return; } if(from == uniswapV2Pair && to != address(this) && to != owner() && to != address(router)) { require(super.balanceOf(to) + amount <= maxHoldingAmount, "max wallet reached"); } uint256 swapAmount = balanceOf(address(this)); if(swapAmount > SUPPLY / 1000) { swapAmount = SUPPLY / 1000; } if (swapAmount >= SUPPLY / 2000 && !inSwap && from != uniswapV2Pair) { inSwap = true; swapTokensForEth(swapAmount); uint256 balance = address(this).balance; if(balance > 0) { withdraw(balance); } inSwap = false; } if( fee > 0 && from != address(this) && from != owner() && from != address(router) ) { uint256 feeTokens = amount * fee / 100; amount -= feeTokens; super._transfer(from, address(this), feeTokens); } super._transfer(from, to, amount); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = router.WETH(); _approve(address(this), address(router), tokenAmount); router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function withdraw(uint256 amount) private { (bool success,) = owner().call{value: amount}(""); success; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- "TechRate" - October 30, 2023- Security Audit Report
[{"inputs":[],"stateMutability":"payable","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":[],"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":"maxHoldingAmount","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":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"removeMaxHoldingAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60a0604052737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1660809073ffffffffffffffffffffffffffffffffffffffff1660601b8152506c08b5829f66bff9a42950000000600855600a6009556000600a60006101000a81548160ff0219169083151502179055506040518060400160405280600681526020017f57415353494500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f57415353494500000000000000000000000000000000000000000000000000008152506200010b620000ff620001ca60201b60201c565b620001d260201b60201c565b8160049080519060200190620001239291906200041a565b5080600590805190602001906200013c9291906200041a565b5050506200016f3360646007600854620001579190620005e7565b620001639190620005af565b6200029660201b60201c565b6200019f306064605d600854620001879190620005e7565b620001939190620005af565b6200029660201b60201c565b60646001600854620001b29190620005e7565b620001be9190620005af565b6006819055506200073e565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000309576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003009062000502565b60405180910390fd5b6200031d600083836200041060201b60201c565b806003600082825462000331919062000552565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000389919062000552565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620003f0919062000524565b60405180910390a36200040c600083836200041560201b60201c565b5050565b505050565b505050565b828054620004289062000652565b90600052602060002090601f0160209004810192826200044c576000855562000498565b82601f106200046757805160ff191683800117855562000498565b8280016001018555821562000498579182015b82811115620004975782518255916020019190600101906200047a565b5b509050620004a79190620004ab565b5090565b5b80821115620004c6576000816000905550600101620004ac565b5090565b6000620004d9601f8362000541565b9150620004e68262000715565b602082019050919050565b620004fc8162000648565b82525050565b600060208201905081810360008301526200051d81620004ca565b9050919050565b60006020820190506200053b6000830184620004f1565b92915050565b600082825260208201905092915050565b60006200055f8262000648565b91506200056c8362000648565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620005a457620005a362000688565b5b828201905092915050565b6000620005bc8262000648565b9150620005c98362000648565b925082620005dc57620005db620006b7565b5b828204905092915050565b6000620005f48262000648565b9150620006018362000648565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156200063d576200063c62000688565b5b828202905092915050565b6000819050919050565b600060028204905060018216806200066b57607f821691505b60208210811415620006825762000681620006e6565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b60805160601c612ae36200079560003960008181610ab001528181610b6a01528181610c7d01528181610cac015281816113e60152818161163401528181611b0601528181611c1c0152611c430152612ae36000f3fe6080604052600436106101185760003560e01c806389f9a1d3116100a0578063a9059cbb11610064578063a9059cbb146103b0578063c9567bf9146103ed578063dd62ed3e14610404578063efa4af4c14610441578063f2fde38b146104585761011f565b806389f9a1d3146102db5780638da5cb5b14610306578063909278811461033157806395d89b4114610348578063a457c2d7146103735761011f565b8063313ce567116100e7578063313ce567146101f4578063395093511461021f57806349bd5a5e1461025c57806370a0823114610287578063715018a6146102c45761011f565b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461018c57806323b872dd146101b75761011f565b3661011f57005b600080fd5b34801561013057600080fd5b50610139610481565b6040516101469190612298565b60405180910390f35b34801561015b57600080fd5b5061017660048036038101906101719190611e8b565b610513565b604051610183919061227d565b60405180910390f35b34801561019857600080fd5b506101a1610531565b6040516101ae919061241a565b60405180910390f35b3480156101c357600080fd5b506101de60048036038101906101d99190611e3c565b61053b565b6040516101eb919061227d565b60405180910390f35b34801561020057600080fd5b50610209610633565b604051610216919061248f565b60405180910390f35b34801561022b57600080fd5b5061024660048036038101906102419190611e8b565b61063c565b604051610253919061227d565b60405180910390f35b34801561026857600080fd5b506102716106e8565b60405161027e91906121d8565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190611dae565b61070e565b6040516102bb919061241a565b60405180910390f35b3480156102d057600080fd5b506102d9610757565b005b3480156102e757600080fd5b506102f06107df565b6040516102fd919061241a565b60405180910390f35b34801561031257600080fd5b5061031b6107e5565b60405161032891906121d8565b60405180910390f35b34801561033d57600080fd5b5061034661080e565b005b34801561035457600080fd5b5061035d610895565b60405161036a9190612298565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190611e8b565b610927565b6040516103a7919061227d565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190611e8b565b610a12565b6040516103e4919061227d565b60405180910390f35b3480156103f957600080fd5b50610402610a30565b005b34801561041057600080fd5b5061042b60048036038101906104269190611e00565b610db7565b604051610438919061241a565b60405180910390f35b34801561044d57600080fd5b50610456610e3e565b005b34801561046457600080fd5b5061047f600480360381019061047a9190611dae565b610ec4565b005b606060048054610490906126b9565b80601f01602080910402602001604051908101604052809291908181526020018280546104bc906126b9565b80156105095780601f106104de57610100808354040283529160200191610509565b820191906000526020600020905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b6000610527610520610fbc565b8484610fc4565b6001905092915050565b6000600354905090565b600061054884848461118f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610593610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a9061237a565b60405180910390fd5b6106278561061f610fbc565b858403610fc4565b60019150509392505050565b60006012905090565b60006106de610649610fbc565b848460026000610657610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106d9919061250a565b610fc4565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075f610fbc565b73ffffffffffffffffffffffffffffffffffffffff1661077d6107e5565b73ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca9061239a565b60405180910390fd5b6107dd60006116d3565b565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610816610fbc565b73ffffffffffffffffffffffffffffffffffffffff166108346107e5565b73ffffffffffffffffffffffffffffffffffffffff161461088a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108819061239a565b60405180910390fd5b600854600681905550565b6060600580546108a4906126b9565b80601f01602080910402602001604051908101604052809291908181526020018280546108d0906126b9565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b60008060026000610936610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea906123fa565b60405180910390fd5b610a076109fe610fbc565b85858403610fc4565b600191505092915050565b6000610a26610a1f610fbc565b848461118f565b6001905092915050565b610a38610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610a566107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa39061239a565b60405180910390fd5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610b1457600080fd5b505afa158015610b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4c9190611dd7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610bce57600080fd5b505afa158015610be2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c069190611dd7565b6040518363ffffffff1660e01b8152600401610c239291906121f3565b602060405180830381600087803b158015610c3d57600080fd5b505af1158015610c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c759190611dd7565b9050610caa307f0000000000000000000000000000000000000000000000000000000000000000610ca53061070e565b610fc4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610cf13061070e565b600080610cfc6107e5565b426040518863ffffffff1660e01b8152600401610d1e9695949392919061221c565b6060604051808303818588803b158015610d3757600080fd5b505af1158015610d4b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d709190611ec7565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e46610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610e646107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb19061239a565b60405180910390fd5b6000600981905550565b610ecc610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610eea6107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f379061239a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa7906122fa565b60405180910390fd5b610fb9816116d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b906123da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061231a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611182919061241a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611315573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061124c5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611289575061125a6107e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806112c657506112976107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906122da565b60405180910390fd5b611310838383611797565b6116ce565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561139e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156113dd57506113ad6107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561143557507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561149357600654816114478461070e565b611451919061250a565b1115611492576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114899061235a565b60405180910390fd5b5b600061149e3061070e565b90506103e86008546114b09190612560565b8111156114ca576103e86008546114c79190612560565b90505b6107d06008546114da9190612560565b81101580156114f65750600a60009054906101000a900460ff16155b80156115505750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156115ae576001600a60006101000a81548160ff02191690831515021790555061157981611a1b565b600047905060008111156115915761159081611cd9565b5b6000600a60006101000a81548160ff021916908315150217905550505b60006009541180156115ec57503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561162b57506115fb6107e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561168357507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156116c157600060646009548461169a9190612591565b6116a49190612560565b905080836116b291906125eb565b92506116bf853083611797565b505b6116cc848484611797565b505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906123ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906122ba565b60405180910390fd5b611882838383611d50565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061233a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199e919061250a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a02919061241a565b60405180910390a3611a15848484611d55565b50505050565b6000600267ffffffffffffffff811115611a5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a8c5781602001602082028036833780820191505090505b5090503081600081518110611aca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b6a57600080fd5b505afa158015611b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba29190611dd7565b81600181518110611bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c41307f000000000000000000000000000000000000000000000000000000000000000084610fc4565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611ca3959493929190612435565b600060405180830381600087803b158015611cbd57600080fd5b505af1158015611cd1573d6000803e3d6000fd5b505050505050565b6000611ce36107e5565b73ffffffffffffffffffffffffffffffffffffffff1682604051611d06906121c3565b60006040518083038185875af1925050503d8060008114611d43576040519150601f19603f3d011682016040523d82523d6000602084013e611d48565b606091505b505090505050565b505050565b505050565b600081359050611d6981612a7f565b92915050565b600081519050611d7e81612a7f565b92915050565b600081359050611d9381612a96565b92915050565b600081519050611da881612a96565b92915050565b600060208284031215611dc057600080fd5b6000611dce84828501611d5a565b91505092915050565b600060208284031215611de957600080fd5b6000611df784828501611d6f565b91505092915050565b60008060408385031215611e1357600080fd5b6000611e2185828601611d5a565b9250506020611e3285828601611d5a565b9150509250929050565b600080600060608486031215611e5157600080fd5b6000611e5f86828701611d5a565b9350506020611e7086828701611d5a565b9250506040611e8186828701611d84565b9150509250925092565b60008060408385031215611e9e57600080fd5b6000611eac85828601611d5a565b9250506020611ebd85828601611d84565b9150509250929050565b600080600060608486031215611edc57600080fd5b6000611eea86828701611d99565b9350506020611efb86828701611d99565b9250506040611f0c86828701611d99565b9150509250925092565b6000611f228383611f2e565b60208301905092915050565b611f378161261f565b82525050565b611f468161261f565b82525050565b6000611f57826124ba565b611f6181856124dd565b9350611f6c836124aa565b8060005b83811015611f9d578151611f848882611f16565b9750611f8f836124d0565b925050600181019050611f70565b5085935050505092915050565b611fb381612631565b82525050565b611fc281612674565b82525050565b6000611fd3826124c5565b611fdd81856124f9565b9350611fed818560208601612686565b611ff681612778565b840191505092915050565b600061200e6023836124f9565b915061201982612789565b604082019050919050565b6000612031600b836124f9565b915061203c826127d8565b602082019050919050565b60006120546026836124f9565b915061205f82612801565b604082019050919050565b60006120776022836124f9565b915061208282612850565b604082019050919050565b600061209a6026836124f9565b91506120a58261289f565b604082019050919050565b60006120bd6012836124f9565b91506120c8826128ee565b602082019050919050565b60006120e06028836124f9565b91506120eb82612917565b604082019050919050565b60006121036020836124f9565b915061210e82612966565b602082019050919050565b60006121266025836124f9565b91506121318261298f565b604082019050919050565b60006121496000836124ee565b9150612154826129de565b600082019050919050565b600061216c6024836124f9565b9150612177826129e1565b604082019050919050565b600061218f6025836124f9565b915061219a82612a30565b604082019050919050565b6121ae8161265d565b82525050565b6121bd81612667565b82525050565b60006121ce8261213c565b9150819050919050565b60006020820190506121ed6000830184611f3d565b92915050565b60006040820190506122086000830185611f3d565b6122156020830184611f3d565b9392505050565b600060c0820190506122316000830189611f3d565b61223e60208301886121a5565b61224b6040830187611fb9565b6122586060830186611fb9565b6122656080830185611f3d565b61227260a08301846121a5565b979650505050505050565b60006020820190506122926000830184611faa565b92915050565b600060208201905081810360008301526122b28184611fc8565b905092915050565b600060208201905081810360008301526122d381612001565b9050919050565b600060208201905081810360008301526122f381612024565b9050919050565b6000602082019050818103600083015261231381612047565b9050919050565b600060208201905081810360008301526123338161206a565b9050919050565b600060208201905081810360008301526123538161208d565b9050919050565b60006020820190508181036000830152612373816120b0565b9050919050565b60006020820190508181036000830152612393816120d3565b9050919050565b600060208201905081810360008301526123b3816120f6565b9050919050565b600060208201905081810360008301526123d381612119565b9050919050565b600060208201905081810360008301526123f38161215f565b9050919050565b6000602082019050818103600083015261241381612182565b9050919050565b600060208201905061242f60008301846121a5565b92915050565b600060a08201905061244a60008301886121a5565b6124576020830187611fb9565b81810360408301526124698186611f4c565b90506124786060830185611f3d565b61248560808301846121a5565b9695505050505050565b60006020820190506124a460008301846121b4565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006125158261265d565b91506125208361265d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612555576125546126eb565b5b828201905092915050565b600061256b8261265d565b91506125768361265d565b9250826125865761258561271a565b5b828204905092915050565b600061259c8261265d565b91506125a78361265d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125e0576125df6126eb565b5b828202905092915050565b60006125f68261265d565b91506126018361265d565b925082821015612614576126136126eb565b5b828203905092915050565b600061262a8261263d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061267f8261265d565b9050919050565b60005b838110156126a4578082015181840152602081019050612689565b838111156126b3576000848401525b50505050565b600060028204905060018216806126d157607f821691505b602082108114156126e5576126e4612749565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c657420726561636865640000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612a888161261f565b8114612a9357600080fd5b50565b612a9f8161265d565b8114612aaa57600080fd5b5056fea26469706673582212205c01fca9efd298b0e09f139c32ee96d6b40aa78b46da9431e8b9b5b4240e86c964736f6c63430008040033
Deployed Bytecode
0x6080604052600436106101185760003560e01c806389f9a1d3116100a0578063a9059cbb11610064578063a9059cbb146103b0578063c9567bf9146103ed578063dd62ed3e14610404578063efa4af4c14610441578063f2fde38b146104585761011f565b806389f9a1d3146102db5780638da5cb5b14610306578063909278811461033157806395d89b4114610348578063a457c2d7146103735761011f565b8063313ce567116100e7578063313ce567146101f4578063395093511461021f57806349bd5a5e1461025c57806370a0823114610287578063715018a6146102c45761011f565b806306fdde0314610124578063095ea7b31461014f57806318160ddd1461018c57806323b872dd146101b75761011f565b3661011f57005b600080fd5b34801561013057600080fd5b50610139610481565b6040516101469190612298565b60405180910390f35b34801561015b57600080fd5b5061017660048036038101906101719190611e8b565b610513565b604051610183919061227d565b60405180910390f35b34801561019857600080fd5b506101a1610531565b6040516101ae919061241a565b60405180910390f35b3480156101c357600080fd5b506101de60048036038101906101d99190611e3c565b61053b565b6040516101eb919061227d565b60405180910390f35b34801561020057600080fd5b50610209610633565b604051610216919061248f565b60405180910390f35b34801561022b57600080fd5b5061024660048036038101906102419190611e8b565b61063c565b604051610253919061227d565b60405180910390f35b34801561026857600080fd5b506102716106e8565b60405161027e91906121d8565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a99190611dae565b61070e565b6040516102bb919061241a565b60405180910390f35b3480156102d057600080fd5b506102d9610757565b005b3480156102e757600080fd5b506102f06107df565b6040516102fd919061241a565b60405180910390f35b34801561031257600080fd5b5061031b6107e5565b60405161032891906121d8565b60405180910390f35b34801561033d57600080fd5b5061034661080e565b005b34801561035457600080fd5b5061035d610895565b60405161036a9190612298565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190611e8b565b610927565b6040516103a7919061227d565b60405180910390f35b3480156103bc57600080fd5b506103d760048036038101906103d29190611e8b565b610a12565b6040516103e4919061227d565b60405180910390f35b3480156103f957600080fd5b50610402610a30565b005b34801561041057600080fd5b5061042b60048036038101906104269190611e00565b610db7565b604051610438919061241a565b60405180910390f35b34801561044d57600080fd5b50610456610e3e565b005b34801561046457600080fd5b5061047f600480360381019061047a9190611dae565b610ec4565b005b606060048054610490906126b9565b80601f01602080910402602001604051908101604052809291908181526020018280546104bc906126b9565b80156105095780601f106104de57610100808354040283529160200191610509565b820191906000526020600020905b8154815290600101906020018083116104ec57829003601f168201915b5050505050905090565b6000610527610520610fbc565b8484610fc4565b6001905092915050565b6000600354905090565b600061054884848461118f565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610593610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161060a9061237a565b60405180910390fd5b6106278561061f610fbc565b858403610fc4565b60019150509392505050565b60006012905090565b60006106de610649610fbc565b848460026000610657610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106d9919061250a565b610fc4565b6001905092915050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61075f610fbc565b73ffffffffffffffffffffffffffffffffffffffff1661077d6107e5565b73ffffffffffffffffffffffffffffffffffffffff16146107d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ca9061239a565b60405180910390fd5b6107dd60006116d3565b565b60065481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610816610fbc565b73ffffffffffffffffffffffffffffffffffffffff166108346107e5565b73ffffffffffffffffffffffffffffffffffffffff161461088a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108819061239a565b60405180910390fd5b600854600681905550565b6060600580546108a4906126b9565b80601f01602080910402602001604051908101604052809291908181526020018280546108d0906126b9565b801561091d5780601f106108f25761010080835404028352916020019161091d565b820191906000526020600020905b81548152906001019060200180831161090057829003601f168201915b5050505050905090565b60008060026000610936610fbc565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109f3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ea906123fa565b60405180910390fd5b610a076109fe610fbc565b85858403610fc4565b600191505092915050565b6000610a26610a1f610fbc565b848461118f565b6001905092915050565b610a38610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610a566107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610aac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa39061239a565b60405180910390fd5b60007f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b158015610b1457600080fd5b505afa158015610b28573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610b4c9190611dd7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015610bce57600080fd5b505afa158015610be2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c069190611dd7565b6040518363ffffffff1660e01b8152600401610c239291906121f3565b602060405180830381600087803b158015610c3d57600080fd5b505af1158015610c51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c759190611dd7565b9050610caa307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d610ca53061070e565b610fc4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610cf13061070e565b600080610cfc6107e5565b426040518863ffffffff1660e01b8152600401610d1e9695949392919061221c565b6060604051808303818588803b158015610d3757600080fd5b505af1158015610d4b573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610d709190611ec7565b50505080600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610e46610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610e646107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610eba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610eb19061239a565b60405180910390fd5b6000600981905550565b610ecc610fbc565b73ffffffffffffffffffffffffffffffffffffffff16610eea6107e5565b73ffffffffffffffffffffffffffffffffffffffff1614610f40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f379061239a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa7906122fa565b60405180910390fd5b610fb9816116d3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611034576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102b906123da565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156110a4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109b9061231a565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611182919061241a565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611315573073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061124c5750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b80611289575061125a6107e5565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b806112c657506112976107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611305576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112fc906122da565b60405180910390fd5b611310838383611797565b6116ce565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614801561139e57503073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156113dd57506113ad6107e5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b801561143557507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b1561149357600654816114478461070e565b611451919061250a565b1115611492576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114899061235a565b60405180910390fd5b5b600061149e3061070e565b90506103e86008546114b09190612560565b8111156114ca576103e86008546114c79190612560565b90505b6107d06008546114da9190612560565b81101580156114f65750600a60009054906101000a900460ff16155b80156115505750600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156115ae576001600a60006101000a81548160ff02191690831515021790555061157981611a1b565b600047905060008111156115915761159081611cd9565b5b6000600a60006101000a81548160ff021916908315150217905550505b60006009541180156115ec57503073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561162b57506115fb6107e5565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b801561168357507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b156116c157600060646009548461169a9190612591565b6116a49190612560565b905080836116b291906125eb565b92506116bf853083611797565b505b6116cc848484611797565b505b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611807576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117fe906123ba565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611877576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161186e906122ba565b60405180910390fd5b611882838383611d50565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611909576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119009061233a565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461199e919061250a565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611a02919061241a565b60405180910390a3611a15848484611d55565b50505050565b6000600267ffffffffffffffff811115611a5e577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b604051908082528060200260200182016040528015611a8c5781602001602082028036833780820191505090505b5090503081600081518110611aca577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015611b6a57600080fd5b505afa158015611b7e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba29190611dd7565b81600181518110611bdc577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611c41307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610fc4565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401611ca3959493929190612435565b600060405180830381600087803b158015611cbd57600080fd5b505af1158015611cd1573d6000803e3d6000fd5b505050505050565b6000611ce36107e5565b73ffffffffffffffffffffffffffffffffffffffff1682604051611d06906121c3565b60006040518083038185875af1925050503d8060008114611d43576040519150601f19603f3d011682016040523d82523d6000602084013e611d48565b606091505b505090505050565b505050565b505050565b600081359050611d6981612a7f565b92915050565b600081519050611d7e81612a7f565b92915050565b600081359050611d9381612a96565b92915050565b600081519050611da881612a96565b92915050565b600060208284031215611dc057600080fd5b6000611dce84828501611d5a565b91505092915050565b600060208284031215611de957600080fd5b6000611df784828501611d6f565b91505092915050565b60008060408385031215611e1357600080fd5b6000611e2185828601611d5a565b9250506020611e3285828601611d5a565b9150509250929050565b600080600060608486031215611e5157600080fd5b6000611e5f86828701611d5a565b9350506020611e7086828701611d5a565b9250506040611e8186828701611d84565b9150509250925092565b60008060408385031215611e9e57600080fd5b6000611eac85828601611d5a565b9250506020611ebd85828601611d84565b9150509250929050565b600080600060608486031215611edc57600080fd5b6000611eea86828701611d99565b9350506020611efb86828701611d99565b9250506040611f0c86828701611d99565b9150509250925092565b6000611f228383611f2e565b60208301905092915050565b611f378161261f565b82525050565b611f468161261f565b82525050565b6000611f57826124ba565b611f6181856124dd565b9350611f6c836124aa565b8060005b83811015611f9d578151611f848882611f16565b9750611f8f836124d0565b925050600181019050611f70565b5085935050505092915050565b611fb381612631565b82525050565b611fc281612674565b82525050565b6000611fd3826124c5565b611fdd81856124f9565b9350611fed818560208601612686565b611ff681612778565b840191505092915050565b600061200e6023836124f9565b915061201982612789565b604082019050919050565b6000612031600b836124f9565b915061203c826127d8565b602082019050919050565b60006120546026836124f9565b915061205f82612801565b604082019050919050565b60006120776022836124f9565b915061208282612850565b604082019050919050565b600061209a6026836124f9565b91506120a58261289f565b604082019050919050565b60006120bd6012836124f9565b91506120c8826128ee565b602082019050919050565b60006120e06028836124f9565b91506120eb82612917565b604082019050919050565b60006121036020836124f9565b915061210e82612966565b602082019050919050565b60006121266025836124f9565b91506121318261298f565b604082019050919050565b60006121496000836124ee565b9150612154826129de565b600082019050919050565b600061216c6024836124f9565b9150612177826129e1565b604082019050919050565b600061218f6025836124f9565b915061219a82612a30565b604082019050919050565b6121ae8161265d565b82525050565b6121bd81612667565b82525050565b60006121ce8261213c565b9150819050919050565b60006020820190506121ed6000830184611f3d565b92915050565b60006040820190506122086000830185611f3d565b6122156020830184611f3d565b9392505050565b600060c0820190506122316000830189611f3d565b61223e60208301886121a5565b61224b6040830187611fb9565b6122586060830186611fb9565b6122656080830185611f3d565b61227260a08301846121a5565b979650505050505050565b60006020820190506122926000830184611faa565b92915050565b600060208201905081810360008301526122b28184611fc8565b905092915050565b600060208201905081810360008301526122d381612001565b9050919050565b600060208201905081810360008301526122f381612024565b9050919050565b6000602082019050818103600083015261231381612047565b9050919050565b600060208201905081810360008301526123338161206a565b9050919050565b600060208201905081810360008301526123538161208d565b9050919050565b60006020820190508181036000830152612373816120b0565b9050919050565b60006020820190508181036000830152612393816120d3565b9050919050565b600060208201905081810360008301526123b3816120f6565b9050919050565b600060208201905081810360008301526123d381612119565b9050919050565b600060208201905081810360008301526123f38161215f565b9050919050565b6000602082019050818103600083015261241381612182565b9050919050565b600060208201905061242f60008301846121a5565b92915050565b600060a08201905061244a60008301886121a5565b6124576020830187611fb9565b81810360408301526124698186611f4c565b90506124786060830185611f3d565b61248560808301846121a5565b9695505050505050565b60006020820190506124a460008301846121b4565b92915050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b60006125158261265d565b91506125208361265d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115612555576125546126eb565b5b828201905092915050565b600061256b8261265d565b91506125768361265d565b9250826125865761258561271a565b5b828204905092915050565b600061259c8261265d565b91506125a78361265d565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156125e0576125df6126eb565b5b828202905092915050565b60006125f68261265d565b91506126018361265d565b925082821015612614576126136126eb565b5b828203905092915050565b600061262a8261263d565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b600061267f8261265d565b9050919050565b60005b838110156126a4578082015181840152602081019050612689565b838111156126b3576000848401525b50505050565b600060028204905060018216806126d157607f821691505b602082108114156126e5576126e4612749565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4e6f742073746172746564000000000000000000000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f6d61782077616c6c657420726561636865640000000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b50565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b612a888161261f565b8114612a9357600080fd5b50565b612a9f8161265d565b8114612aaa57600080fd5b5056fea26469706673582212205c01fca9efd298b0e09f139c32ee96d6b40aa78b46da9431e8b9b5b4240e86c964736f6c63430008040033
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.