ERC-20
DeFi
Overview
Max Total Supply
100,000,000 GTR
Holders
1,080 (0.00%)
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
46.93447647 GTRValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
GhostTraderV2
Compiler Version
v0.8.13+commit.abaa5c0e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.13; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; interface IERC721 { function balanceOf(address owner) external view returns (uint256 balance); } contract GhostTraderV2 is ERC20, Ownable { //init bool public __initComplete; uint256 public __initMaxTotalSupply; //tax IERC20 public lpAddress; mapping(address => bool) private taxWhitelist; mapping(uint8 => uint16) public taxPercents; mapping(uint8 => address) public taxAddresses; mapping(uint8 => IERC721) public taxBuyWaiverNftAddresses; mapping(IERC721 => uint8) public taxBuyWaiverNftPercents; //events event TransferSummary(uint8 direction, address taxAddress, uint256 taxAmount, uint256 remainingAmount); constructor() ERC20("Ghost Trader", "GTR") { taxWhitelist[address(this)] = true; __initComplete = false; __initMaxTotalSupply = 100000000 * (10 ** 18); } // // INIT FUNCTIONS // function __initSetComplete() external onlyOwner { require(__initComplete == false, "INIT_COMPLETE"); __initComplete = true; } function __initAirdrop(address[] calldata addresses, uint256[] calldata amounts) external onlyOwner { require(__initComplete == false, "INIT_COMPLETE"); require(addresses.length == amounts.length, "INPUT_MISMATCH"); uint256 i = 0; //calculate total new tokens to mint uint256 mintTotal = 0; for (i = 0; i < addresses.length; i++) mintTotal += amounts[i]; require((totalSupply() + mintTotal) <= __initMaxTotalSupply, "INVALID_NEW_SUPPLY"); //mint tokens for (i = 0; i < addresses.length; i++) _mint(addresses[i], amounts[i]); } // // OVERRIDES // function _transfer(address from, address to, uint256 amount) internal virtual override(ERC20) { //prevent transfers during initialisation require(__initComplete == true || taxWhitelist[from] == true || taxWhitelist[to] == true, "INIT_INCOMPLETE"); uint256 remainingAmount = amount; if (taxWhitelist[from] == false && taxWhitelist[to] == false) { //calculate trade direction uint8 direction = 3; if (address(from) == address(lpAddress)) { direction = 1; } else if (address(to) == address(lpAddress)) { direction = 2; } //calculate taxes address taxAddress = taxAddresses[direction]; uint16 taxPercent = taxPercents[direction]; uint256 taxAmount = (taxAddress == address(0) || taxPercent == 0 ? 0 : remainingAmount * taxPercent / 100); //apply nft buy fee waiver if wallet is holding an approved NFT if (direction == 1 && taxAmount > 0 && taxAddress != address(0)) { IERC721 taxBuyWaiverNftAddress; for (uint8 i = 0; i < 5; i++) { taxBuyWaiverNftAddress = taxBuyWaiverNftAddresses[i]; if (address(taxBuyWaiverNftAddress) != address(0) && taxBuyWaiverNftAddress.balanceOf(to) > 0) { taxAmount = remainingAmount * (taxPercent-taxBuyWaiverNftPercents[taxBuyWaiverNftAddress]) / 100; continue; } } } //execute taxes if (taxAmount > 0 && taxAddress != address(0)) { remainingAmount -= taxAmount; super._transfer(from, taxAddress, taxAmount); } emit TransferSummary(direction, taxAddress, taxAmount, remainingAmount); } require(remainingAmount > 0, "TRANSFER_TOO_SMALL"); super._transfer(from, to, remainingAmount); } // // PUBLIC FUNCTIONS // function getTaxEffectiveRates() external view returns(uint16 buy, uint16 sell, uint16 transfer, uint16 divisor) { uint16 buyDiscount = 0; IERC721 taxBuyWaiverNftAddress; for (uint8 i = 0; i < 5; i++) { taxBuyWaiverNftAddress = taxBuyWaiverNftAddresses[i]; if (address(taxBuyWaiverNftAddress) != address(0) && taxBuyWaiverNftAddress.balanceOf(msg.sender) > 0) { buyDiscount = taxBuyWaiverNftPercents[taxBuyWaiverNftAddress]; continue; } } return (taxPercents[1] - buyDiscount, taxPercents[2], taxPercents[3], 100); } // // ADMIN FUNCTIONS // function setLpAddress(IERC20 a) external onlyOwner { require(address(a) != address(0), "ADDRESS_INVALID"); lpAddress = a; } function getTaxWhitelistStatus(address a) external view onlyOwner returns (bool isWhitelisted) { return (taxWhitelist[a]); } function setTaxWhitelistStatus(address[] calldata addresses, bool[] calldata statuses) external onlyOwner { require(addresses.length == statuses.length, "INPUT_MISMATCH"); for (uint256 i = 0; i < addresses.length; i++) { require(addresses[i] != address(0), "ADDRESS_INVALID"); taxWhitelist[addresses[i]] = statuses[i]; } } function setTaxAmounts(uint8 direction, uint8 percent, address a) external onlyOwner { require(direction > 0 && direction <= 3, "INVALID_DIRECTION"); require(percent <= 20, "INVALID_PERCENT"); taxPercents[direction] = percent; taxAddresses[direction] = a; } function setTaxBuyWaiverNftAmounts(uint8 index, uint8 percent, IERC721 a) external onlyOwner { require(index < 5, "INVALID_INDEX"); taxBuyWaiverNftAddresses[index] = a; taxBuyWaiverNftPercents[a] = percent; } function withdrawToken(IERC20 token, uint256 amount, address to) external onlyOwner { if (address(token) == address(0)) { (bool success, ) = to.call{value: (amount == 0 ? address(this).balance : amount)}(new bytes(0)); require(success, "NATIVE_TRANSFER_FAILED"); } else { (bool success, bytes memory data) = address(token).call(abi.encodeWithSelector(IERC20.transfer.selector, to, (amount == 0 ? token.balanceOf(address(this)) : amount))); require(success && (data.length == 0 || abi.decode(data, (bool))), "ERC20_TRANSFER_FAILED"); } } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @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.openzeppelin.com/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: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, 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}. * * 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 override 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 override 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 from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, 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: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"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"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"direction","type":"uint8"},{"indexed":false,"internalType":"address","name":"taxAddress","type":"address"},{"indexed":false,"internalType":"uint256","name":"taxAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"remainingAmount","type":"uint256"}],"name":"TransferSummary","type":"event"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"uint256[]","name":"amounts","type":"uint256[]"}],"name":"__initAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"__initComplete","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__initMaxTotalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"__initSetComplete","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":[],"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":[],"name":"getTaxEffectiveRates","outputs":[{"internalType":"uint16","name":"buy","type":"uint16"},{"internalType":"uint16","name":"sell","type":"uint16"},{"internalType":"uint16","name":"transfer","type":"uint16"},{"internalType":"uint16","name":"divisor","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"a","type":"address"}],"name":"getTaxWhitelistStatus","outputs":[{"internalType":"bool","name":"isWhitelisted","type":"bool"}],"stateMutability":"view","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":"lpAddress","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"contract IERC20","name":"a","type":"address"}],"name":"setLpAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"direction","type":"uint8"},{"internalType":"uint8","name":"percent","type":"uint8"},{"internalType":"address","name":"a","type":"address"}],"name":"setTaxAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint8","name":"index","type":"uint8"},{"internalType":"uint8","name":"percent","type":"uint8"},{"internalType":"contract IERC721","name":"a","type":"address"}],"name":"setTaxBuyWaiverNftAmounts","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"},{"internalType":"bool[]","name":"statuses","type":"bool[]"}],"name":"setTaxWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"taxAddresses","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"taxBuyWaiverNftAddresses","outputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"contract IERC721","name":"","type":"address"}],"name":"taxBuyWaiverNftPercents","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint8","name":"","type":"uint8"}],"name":"taxPercents","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"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"},{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawToken","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600c81526020017f47686f73742054726164657200000000000000000000000000000000000000008152506040518060400160405280600381526020017f47545200000000000000000000000000000000000000000000000000000000008152508160039080519060200190620000969291906200022b565b508060049080519060200190620000af9291906200022b565b505050620000d2620000c66200015d60201b60201c565b6200016560201b60201c565b6001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506000600560146101000a81548160ff0219169083151502179055506a52b7d2dcc80cd2e40000006006819055506200033f565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b82805462000239906200030a565b90600052602060002090601f0160209004810192826200025d5760008555620002a9565b82601f106200027857805160ff1916838001178555620002a9565b82800160010185558215620002a9579182015b82811115620002a85782518255916020019190600101906200028b565b5b509050620002b89190620002bc565b5090565b5b80821115620002d7576000816000905550600101620002bd565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032357607f821691505b602082108103620003395762000338620002db565b5b50919050565b613daa806200034f6000396000f3fe6080604052600436106101d15760003560e01c8063715018a6116100f7578063a457c2d711610095578063a99ed4e311610064578063a99ed4e3146106c0578063ad15671a146106fd578063dd62ed3e14610726578063f2fde38b14610763576101d8565b8063a457c2d7146105f2578063a71dbe7c1461062f578063a9059cbb14610646578063a940e32514610683576101d8565b806391ee44f5116100d157806391ee44f51461054857806395d89b41146105715780639b2c54ec1461059c5780639b4dc8cc146105c7576101d8565b8063715018a6146104c95780638da5cb5b146104e05780638e0807c91461050b576101d8565b8063361ee9201161016f5780633f69c7a01161013e5780633f69c7a01461040c5780634d3bff21146104355780636f5e02121461046357806370a082311461048c576101d8565b8063361ee92014610352578063374942531461037b57806339509351146103a65780633ccdbb28146103e3576101d8565b806323b872dd116101ab57806323b872dd146102705780632abb474b146102ad5780632e33c624146102ea578063313ce56714610327576101d8565b806306fdde03146101dd578063095ea7b31461020857806318160ddd14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f261078c565b6040516101ff9190612720565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a91906127e0565b61081e565b60405161023c919061283b565b60405180910390f35b34801561025157600080fd5b5061025a610841565b6040516102679190612865565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612880565b61084b565b6040516102a4919061283b565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf919061290c565b61087a565b6040516102e19190612998565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061290c565b6108ad565b60405161031e91906129d0565b60405180910390f35b34801561033357600080fd5b5061033c6108ce565b60405161034991906129fa565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612ad0565b6108d7565b005b34801561038757600080fd5b50610390610a96565b60405161039d919061283b565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906127e0565b610aa9565b6040516103da919061283b565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612b8f565b610ae0565b005b34801561041857600080fd5b50610433600480360381019061042e9190612c20565b610e0a565b005b34801561044157600080fd5b5061044a610f0d565b60405161045a9493929190612c73565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612cb8565b61111a565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612ce5565b6111d5565b6040516104c09190612865565b60405180910390f35b3480156104d557600080fd5b506104de61121d565b005b3480156104ec57600080fd5b506104f5611231565b6040516105029190612d21565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612d3c565b61125b565b60405161053f91906129fa565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612d69565b61127b565b005b34801561057d57600080fd5b506105866113b4565b6040516105939190612720565b60405180910390f35b3480156105a857600080fd5b506105b1611446565b6040516105be9190612865565b60405180910390f35b3480156105d357600080fd5b506105dc61144c565b6040516105e99190612ddd565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906127e0565b611472565b604051610626919061283b565b60405180910390f35b34801561063b57600080fd5b506106446114e9565b005b34801561065257600080fd5b5061066d600480360381019061066891906127e0565b611564565b60405161067a919061283b565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612ce5565b611587565b6040516106b7919061283b565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e2919061290c565b6115e5565b6040516106f49190612d21565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190612e4e565b611618565b005b34801561073257600080fd5b5061074d60048036038101906107489190612ecf565b6117cb565b60405161075a9190612865565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190612ce5565b611852565b005b60606003805461079b90612f3e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c790612f3e565b80156108145780601f106107e957610100808354040283529160200191610814565b820191906000526020600020905b8154815290600101906020018083116107f757829003601f168201915b5050505050905090565b6000806108296118d5565b90506108368185856118dd565b600191505092915050565b6000600254905090565b6000806108566118d5565b9050610863858285611aa6565b61086e858585611b32565b60019150509392505050565b600b6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900461ffff1681565b60006012905090565b6108df61216d565b60001515600560149054906101000a900460ff16151514610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90612fbb565b60405180910390fd5b81819050848490501461097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490613027565b60405180910390fd5b600080600091505b858590508210156109ca578383838181106109a3576109a2613047565b5b90506020020135816109b591906130a5565b905081806109c2906130fb565b925050610985565b600654816109d6610841565b6109e091906130a5565b1115610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a189061318f565b60405180910390fd5b600091505b85859050821015610a8e57610a7b868684818110610a4757610a46613047565b5b9050602002016020810190610a5c9190612ce5565b858585818110610a6f57610a6e613047565b5b905060200201356121eb565b8180610a86906130fb565b925050610a26565b505050505050565b600560149054906101000a900460ff1681565b600080610ab46118d5565b9050610ad5818585610ac685896117cb565b610ad091906130a5565b6118dd565b600191505092915050565b610ae861216d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c2c5760008173ffffffffffffffffffffffffffffffffffffffff1660008414610b435783610b45565b475b600067ffffffffffffffff811115610b6057610b5f6131af565b5b6040519080825280601f01601f191660200182016040528015610b925781602001600182028036833780820191505090505b50604051610ba09190613225565b60006040518083038185875af1925050503d8060008114610bdd576040519150601f19603f3d011682016040523d82523d6000602084013e610be2565b606091505b5050905080610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613288565b60405180910390fd5b50610e05565b6000808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8460008714610c5d5786610cd8565b8773ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c969190612d21565b602060405180830381865afa158015610cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd791906132bd565b5b604051602401610ce99291906132ea565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610d539190613225565b6000604051808303816000865af19150503d8060008114610d90576040519150601f19603f3d011682016040523d82523d6000602084013e610d95565b606091505b5091509150818015610dc35750600081511480610dc2575080806020019051810190610dc1919061333f565b5b5b610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906133b8565b60405180910390fd5b50505b505050565b610e1261216d565b60058360ff1610610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613424565b60405180910390fd5b80600b60008560ff1660ff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550505050565b60008060008060008080600090505b60058160ff16101561108a57600b60008260ff1660ff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561101a575060008273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fd79190612d21565b602060405180830381865afa158015610ff4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101891906132bd565b115b1561107657600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff169250611077565b5b808061108290613444565b915050610f1c565b508160096000600160ff16815260200190815260200160002060009054906101000a900461ffff166110bc919061346d565b60096000600260ff16815260200190815260200160002060009054906101000a900461ffff1660096000600360ff16815260200190815260200160002060009054906101000a900461ffff1660649550955095509550505090919293565b61112261216d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906134ed565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61122561216d565b61122f6000612341565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b61128361216d565b60008360ff1611801561129a575060038360ff1611155b6112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613559565b60405180910390fd5b60148260ff161115611320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611317906135c5565b60405180910390fd5b8160ff16600960008560ff1660ff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555080600a60008560ff1660ff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6060600480546113c390612f3e565b80601f01602080910402602001604051908101604052809291908181526020018280546113ef90612f3e565b801561143c5780601f106114115761010080835404028352916020019161143c565b820191906000526020600020905b81548152906001019060200180831161141f57829003601f168201915b5050505050905090565b60065481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061147d6118d5565b9050600061148b82866117cb565b9050838110156114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613657565b60405180910390fd5b6114dd82868684036118dd565b60019250505092915050565b6114f161216d565b60001515600560149054906101000a900460ff16151514611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90612fbb565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550565b60008061156f6118d5565b905061157c818585611b32565b600191505092915050565b600061159161216d565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61162061216d565b818190508484905014611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90613027565b60405180910390fd5b60005b848490508110156117c457600073ffffffffffffffffffffffffffffffffffffffff168585838181106116a1576116a0613047565b5b90506020020160208101906116b69190612ce5565b73ffffffffffffffffffffffffffffffffffffffff160361170c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611703906134ed565b60405180910390fd5b82828281811061171f5761171e613047565b5b9050602002016020810190611734919061368c565b6008600087878581811061174b5761174a613047565b5b90506020020160208101906117609190612ce5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806117bc906130fb565b91505061166b565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61185a61216d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c09061372b565b60405180910390fd5b6118d281612341565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906137bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b29061384f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a999190612865565b60405180910390a3505050565b6000611ab284846117cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b2c5781811015611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906138bb565b60405180910390fd5b611b2b84848484036118dd565b5b50505050565b60011515600560149054906101000a900460ff1615151480611ba4575060011515600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b80611bff575060011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590613927565b60405180910390fd5b600081905060001515600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611cf3575060001515600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b1561211957600060039050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d5c5760019050611db7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611db657600290505b5b6000600a60008360ff1660ff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600960008460ff1660ff16815260200190815260200160002060009054906101000a900461ffff16905060008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611e61575060008261ffff16145b611e865760648261ffff1686611e779190613947565b611e8191906139d0565b611e89565b60005b905060018460ff16148015611e9e5750600081115b8015611ed75750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561207b57600080600090505b60058160ff16101561207857600b60008260ff1660ff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611fe2575060008273ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b8152600401611f9f9190612d21565b602060405180830381865afa158015611fbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe091906132bd565b115b15612064576064600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1685612044919061346d565b61ffff16886120539190613947565b61205d91906139d0565b9250612065565b5b808061207090613444565b915050611ee4565b50505b6000811180156120b85750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156120d75780856120c99190613a01565b94506120d6888483612407565b5b7fc47606c08142448805a8ef09f6e80f7a56bcbc2288fd9dc63135ca9a0955a0968484838860405161210c9493929190613a35565b60405180910390a1505050505b6000811161215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390613ac6565b60405180910390fd5b612167848483612407565b50505050565b6121756118d5565b73ffffffffffffffffffffffffffffffffffffffff16612193611231565b73ffffffffffffffffffffffffffffffffffffffff16146121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e090613b32565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613b9e565b60405180910390fd5b6122666000838361267d565b806002600082825461227891906130a5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123299190612865565b60405180910390a361233d60008383612682565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d90613c30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90613cc2565b60405180910390fd5b6124f083838361267d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90613d54565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126649190612865565b60405180910390a3612677848484612682565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126c15780820151818401526020810190506126a6565b838111156126d0576000848401525b50505050565b6000601f19601f8301169050919050565b60006126f282612687565b6126fc8185612692565b935061270c8185602086016126a3565b612715816126d6565b840191505092915050565b6000602082019050818103600083015261273a81846126e7565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127778261274c565b9050919050565b6127878161276c565b811461279257600080fd5b50565b6000813590506127a48161277e565b92915050565b6000819050919050565b6127bd816127aa565b81146127c857600080fd5b50565b6000813590506127da816127b4565b92915050565b600080604083850312156127f7576127f6612742565b5b600061280585828601612795565b9250506020612816858286016127cb565b9150509250929050565b60008115159050919050565b61283581612820565b82525050565b6000602082019050612850600083018461282c565b92915050565b61285f816127aa565b82525050565b600060208201905061287a6000830184612856565b92915050565b60008060006060848603121561289957612898612742565b5b60006128a786828701612795565b93505060206128b886828701612795565b92505060406128c9868287016127cb565b9150509250925092565b600060ff82169050919050565b6128e9816128d3565b81146128f457600080fd5b50565b600081359050612906816128e0565b92915050565b60006020828403121561292257612921612742565b5b6000612930848285016128f7565b91505092915050565b6000819050919050565b600061295e6129596129548461274c565b612939565b61274c565b9050919050565b600061297082612943565b9050919050565b600061298282612965565b9050919050565b61299281612977565b82525050565b60006020820190506129ad6000830184612989565b92915050565b600061ffff82169050919050565b6129ca816129b3565b82525050565b60006020820190506129e560008301846129c1565b92915050565b6129f4816128d3565b82525050565b6000602082019050612a0f60008301846129eb565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612a3a57612a39612a15565b5b8235905067ffffffffffffffff811115612a5757612a56612a1a565b5b602083019150836020820283011115612a7357612a72612a1f565b5b9250929050565b60008083601f840112612a9057612a8f612a15565b5b8235905067ffffffffffffffff811115612aad57612aac612a1a565b5b602083019150836020820283011115612ac957612ac8612a1f565b5b9250929050565b60008060008060408587031215612aea57612ae9612742565b5b600085013567ffffffffffffffff811115612b0857612b07612747565b5b612b1487828801612a24565b9450945050602085013567ffffffffffffffff811115612b3757612b36612747565b5b612b4387828801612a7a565b925092505092959194509250565b6000612b5c8261276c565b9050919050565b612b6c81612b51565b8114612b7757600080fd5b50565b600081359050612b8981612b63565b92915050565b600080600060608486031215612ba857612ba7612742565b5b6000612bb686828701612b7a565b9350506020612bc7868287016127cb565b9250506040612bd886828701612795565b9150509250925092565b6000612bed8261276c565b9050919050565b612bfd81612be2565b8114612c0857600080fd5b50565b600081359050612c1a81612bf4565b92915050565b600080600060608486031215612c3957612c38612742565b5b6000612c47868287016128f7565b9350506020612c58868287016128f7565b9250506040612c6986828701612c0b565b9150509250925092565b6000608082019050612c8860008301876129c1565b612c9560208301866129c1565b612ca260408301856129c1565b612caf60608301846129c1565b95945050505050565b600060208284031215612cce57612ccd612742565b5b6000612cdc84828501612b7a565b91505092915050565b600060208284031215612cfb57612cfa612742565b5b6000612d0984828501612795565b91505092915050565b612d1b8161276c565b82525050565b6000602082019050612d366000830184612d12565b92915050565b600060208284031215612d5257612d51612742565b5b6000612d6084828501612c0b565b91505092915050565b600080600060608486031215612d8257612d81612742565b5b6000612d90868287016128f7565b9350506020612da1868287016128f7565b9250506040612db286828701612795565b9150509250925092565b6000612dc782612965565b9050919050565b612dd781612dbc565b82525050565b6000602082019050612df26000830184612dce565b92915050565b60008083601f840112612e0e57612e0d612a15565b5b8235905067ffffffffffffffff811115612e2b57612e2a612a1a565b5b602083019150836020820283011115612e4757612e46612a1f565b5b9250929050565b60008060008060408587031215612e6857612e67612742565b5b600085013567ffffffffffffffff811115612e8657612e85612747565b5b612e9287828801612a24565b9450945050602085013567ffffffffffffffff811115612eb557612eb4612747565b5b612ec187828801612df8565b925092505092959194509250565b60008060408385031215612ee657612ee5612742565b5b6000612ef485828601612795565b9250506020612f0585828601612795565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f5657607f821691505b602082108103612f6957612f68612f0f565b5b50919050565b7f494e49545f434f4d504c45544500000000000000000000000000000000000000600082015250565b6000612fa5600d83612692565b9150612fb082612f6f565b602082019050919050565b60006020820190508181036000830152612fd481612f98565b9050919050565b7f494e5055545f4d49534d41544348000000000000000000000000000000000000600082015250565b6000613011600e83612692565b915061301c82612fdb565b602082019050919050565b6000602082019050818103600083015261304081613004565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130b0826127aa565b91506130bb836127aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130f0576130ef613076565b5b828201905092915050565b6000613106826127aa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361313857613137613076565b5b600182019050919050565b7f494e56414c49445f4e45575f535550504c590000000000000000000000000000600082015250565b6000613179601283612692565b915061318482613143565b602082019050919050565b600060208201905081810360008301526131a88161316c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600081905092915050565b60006131ff826131de565b61320981856131e9565b93506132198185602086016126a3565b80840191505092915050565b600061323182846131f4565b915081905092915050565b7f4e41544956455f5452414e534645525f4641494c454400000000000000000000600082015250565b6000613272601683612692565b915061327d8261323c565b602082019050919050565b600060208201905081810360008301526132a181613265565b9050919050565b6000815190506132b7816127b4565b92915050565b6000602082840312156132d3576132d2612742565b5b60006132e1848285016132a8565b91505092915050565b60006040820190506132ff6000830185612d12565b61330c6020830184612856565b9392505050565b61331c81612820565b811461332757600080fd5b50565b60008151905061333981613313565b92915050565b60006020828403121561335557613354612742565b5b60006133638482850161332a565b91505092915050565b7f45524332305f5452414e534645525f4641494c45440000000000000000000000600082015250565b60006133a2601583612692565b91506133ad8261336c565b602082019050919050565b600060208201905081810360008301526133d181613395565b9050919050565b7f494e56414c49445f494e44455800000000000000000000000000000000000000600082015250565b600061340e600d83612692565b9150613419826133d8565b602082019050919050565b6000602082019050818103600083015261343d81613401565b9050919050565b600061344f826128d3565b915060ff820361346257613461613076565b5b600182019050919050565b6000613478826129b3565b9150613483836129b3565b92508282101561349657613495613076565b5b828203905092915050565b7f414444524553535f494e56414c49440000000000000000000000000000000000600082015250565b60006134d7600f83612692565b91506134e2826134a1565b602082019050919050565b60006020820190508181036000830152613506816134ca565b9050919050565b7f494e56414c49445f444952454354494f4e000000000000000000000000000000600082015250565b6000613543601183612692565b915061354e8261350d565b602082019050919050565b6000602082019050818103600083015261357281613536565b9050919050565b7f494e56414c49445f50455243454e540000000000000000000000000000000000600082015250565b60006135af600f83612692565b91506135ba82613579565b602082019050919050565b600060208201905081810360008301526135de816135a2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613641602583612692565b915061364c826135e5565b604082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b60008135905061368681613313565b92915050565b6000602082840312156136a2576136a1612742565b5b60006136b084828501613677565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613715602683612692565b9150613720826136b9565b604082019050919050565b6000602082019050818103600083015261374481613708565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137a7602483612692565b91506137b28261374b565b604082019050919050565b600060208201905081810360008301526137d68161379a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613839602283612692565b9150613844826137dd565b604082019050919050565b600060208201905081810360008301526138688161382c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006138a5601d83612692565b91506138b08261386f565b602082019050919050565b600060208201905081810360008301526138d481613898565b9050919050565b7f494e49545f494e434f4d504c4554450000000000000000000000000000000000600082015250565b6000613911600f83612692565b915061391c826138db565b602082019050919050565b6000602082019050818103600083015261394081613904565b9050919050565b6000613952826127aa565b915061395d836127aa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399657613995613076565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139db826127aa565b91506139e6836127aa565b9250826139f6576139f56139a1565b5b828204905092915050565b6000613a0c826127aa565b9150613a17836127aa565b925082821015613a2a57613a29613076565b5b828203905092915050565b6000608082019050613a4a60008301876129eb565b613a576020830186612d12565b613a646040830185612856565b613a716060830184612856565b95945050505050565b7f5452414e534645525f544f4f5f534d414c4c0000000000000000000000000000600082015250565b6000613ab0601283612692565b9150613abb82613a7a565b602082019050919050565b60006020820190508181036000830152613adf81613aa3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b1c602083612692565b9150613b2782613ae6565b602082019050919050565b60006020820190508181036000830152613b4b81613b0f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613b88601f83612692565b9150613b9382613b52565b602082019050919050565b60006020820190508181036000830152613bb781613b7b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c1a602583612692565b9150613c2582613bbe565b604082019050919050565b60006020820190508181036000830152613c4981613c0d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613cac602383612692565b9150613cb782613c50565b604082019050919050565b60006020820190508181036000830152613cdb81613c9f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d3e602683612692565b9150613d4982613ce2565b604082019050919050565b60006020820190508181036000830152613d6d81613d31565b905091905056fea26469706673582212205eb93cb35e76d94f4e8d7eb1756590b031a75fc0e06857d4f5b87a3967ee32f964736f6c634300080d0033
Deployed Bytecode
0x6080604052600436106101d15760003560e01c8063715018a6116100f7578063a457c2d711610095578063a99ed4e311610064578063a99ed4e3146106c0578063ad15671a146106fd578063dd62ed3e14610726578063f2fde38b14610763576101d8565b8063a457c2d7146105f2578063a71dbe7c1461062f578063a9059cbb14610646578063a940e32514610683576101d8565b806391ee44f5116100d157806391ee44f51461054857806395d89b41146105715780639b2c54ec1461059c5780639b4dc8cc146105c7576101d8565b8063715018a6146104c95780638da5cb5b146104e05780638e0807c91461050b576101d8565b8063361ee9201161016f5780633f69c7a01161013e5780633f69c7a01461040c5780634d3bff21146104355780636f5e02121461046357806370a082311461048c576101d8565b8063361ee92014610352578063374942531461037b57806339509351146103a65780633ccdbb28146103e3576101d8565b806323b872dd116101ab57806323b872dd146102705780632abb474b146102ad5780632e33c624146102ea578063313ce56714610327576101d8565b806306fdde03146101dd578063095ea7b31461020857806318160ddd14610245576101d8565b366101d857005b600080fd5b3480156101e957600080fd5b506101f261078c565b6040516101ff9190612720565b60405180910390f35b34801561021457600080fd5b5061022f600480360381019061022a91906127e0565b61081e565b60405161023c919061283b565b60405180910390f35b34801561025157600080fd5b5061025a610841565b6040516102679190612865565b60405180910390f35b34801561027c57600080fd5b5061029760048036038101906102929190612880565b61084b565b6040516102a4919061283b565b60405180910390f35b3480156102b957600080fd5b506102d460048036038101906102cf919061290c565b61087a565b6040516102e19190612998565b60405180910390f35b3480156102f657600080fd5b50610311600480360381019061030c919061290c565b6108ad565b60405161031e91906129d0565b60405180910390f35b34801561033357600080fd5b5061033c6108ce565b60405161034991906129fa565b60405180910390f35b34801561035e57600080fd5b5061037960048036038101906103749190612ad0565b6108d7565b005b34801561038757600080fd5b50610390610a96565b60405161039d919061283b565b60405180910390f35b3480156103b257600080fd5b506103cd60048036038101906103c891906127e0565b610aa9565b6040516103da919061283b565b60405180910390f35b3480156103ef57600080fd5b5061040a60048036038101906104059190612b8f565b610ae0565b005b34801561041857600080fd5b50610433600480360381019061042e9190612c20565b610e0a565b005b34801561044157600080fd5b5061044a610f0d565b60405161045a9493929190612c73565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190612cb8565b61111a565b005b34801561049857600080fd5b506104b360048036038101906104ae9190612ce5565b6111d5565b6040516104c09190612865565b60405180910390f35b3480156104d557600080fd5b506104de61121d565b005b3480156104ec57600080fd5b506104f5611231565b6040516105029190612d21565b60405180910390f35b34801561051757600080fd5b50610532600480360381019061052d9190612d3c565b61125b565b60405161053f91906129fa565b60405180910390f35b34801561055457600080fd5b5061056f600480360381019061056a9190612d69565b61127b565b005b34801561057d57600080fd5b506105866113b4565b6040516105939190612720565b60405180910390f35b3480156105a857600080fd5b506105b1611446565b6040516105be9190612865565b60405180910390f35b3480156105d357600080fd5b506105dc61144c565b6040516105e99190612ddd565b60405180910390f35b3480156105fe57600080fd5b50610619600480360381019061061491906127e0565b611472565b604051610626919061283b565b60405180910390f35b34801561063b57600080fd5b506106446114e9565b005b34801561065257600080fd5b5061066d600480360381019061066891906127e0565b611564565b60405161067a919061283b565b60405180910390f35b34801561068f57600080fd5b506106aa60048036038101906106a59190612ce5565b611587565b6040516106b7919061283b565b60405180910390f35b3480156106cc57600080fd5b506106e760048036038101906106e2919061290c565b6115e5565b6040516106f49190612d21565b60405180910390f35b34801561070957600080fd5b50610724600480360381019061071f9190612e4e565b611618565b005b34801561073257600080fd5b5061074d60048036038101906107489190612ecf565b6117cb565b60405161075a9190612865565b60405180910390f35b34801561076f57600080fd5b5061078a60048036038101906107859190612ce5565b611852565b005b60606003805461079b90612f3e565b80601f01602080910402602001604051908101604052809291908181526020018280546107c790612f3e565b80156108145780601f106107e957610100808354040283529160200191610814565b820191906000526020600020905b8154815290600101906020018083116107f757829003601f168201915b5050505050905090565b6000806108296118d5565b90506108368185856118dd565b600191505092915050565b6000600254905090565b6000806108566118d5565b9050610863858285611aa6565b61086e858585611b32565b60019150509392505050565b600b6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60096020528060005260406000206000915054906101000a900461ffff1681565b60006012905090565b6108df61216d565b60001515600560149054906101000a900460ff16151514610935576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161092c90612fbb565b60405180910390fd5b81819050848490501461097d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097490613027565b60405180910390fd5b600080600091505b858590508210156109ca578383838181106109a3576109a2613047565b5b90506020020135816109b591906130a5565b905081806109c2906130fb565b925050610985565b600654816109d6610841565b6109e091906130a5565b1115610a21576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a189061318f565b60405180910390fd5b600091505b85859050821015610a8e57610a7b868684818110610a4757610a46613047565b5b9050602002016020810190610a5c9190612ce5565b858585818110610a6f57610a6e613047565b5b905060200201356121eb565b8180610a86906130fb565b925050610a26565b505050505050565b600560149054906101000a900460ff1681565b600080610ab46118d5565b9050610ad5818585610ac685896117cb565b610ad091906130a5565b6118dd565b600191505092915050565b610ae861216d565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c2c5760008173ffffffffffffffffffffffffffffffffffffffff1660008414610b435783610b45565b475b600067ffffffffffffffff811115610b6057610b5f6131af565b5b6040519080825280601f01601f191660200182016040528015610b925781602001600182028036833780820191505090505b50604051610ba09190613225565b60006040518083038185875af1925050503d8060008114610bdd576040519150601f19603f3d011682016040523d82523d6000602084013e610be2565b606091505b5050905080610c26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1d90613288565b60405180910390fd5b50610e05565b6000808473ffffffffffffffffffffffffffffffffffffffff1663a9059cbb60e01b8460008714610c5d5786610cd8565b8773ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610c969190612d21565b602060405180830381865afa158015610cb3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cd791906132bd565b5b604051602401610ce99291906132ea565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050604051610d539190613225565b6000604051808303816000865af19150503d8060008114610d90576040519150601f19603f3d011682016040523d82523d6000602084013e610d95565b606091505b5091509150818015610dc35750600081511480610dc2575080806020019051810190610dc1919061333f565b5b5b610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df9906133b8565b60405180910390fd5b50505b505050565b610e1261216d565b60058360ff1610610e58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e4f90613424565b60405180910390fd5b80600b60008560ff1660ff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908360ff160217905550505050565b60008060008060008080600090505b60058160ff16101561108a57600b60008260ff1660ff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415801561101a575060008273ffffffffffffffffffffffffffffffffffffffff166370a08231336040518263ffffffff1660e01b8152600401610fd79190612d21565b602060405180830381865afa158015610ff4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061101891906132bd565b115b1561107657600c60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff169250611077565b5b808061108290613444565b915050610f1c565b508160096000600160ff16815260200190815260200160002060009054906101000a900461ffff166110bc919061346d565b60096000600260ff16815260200190815260200160002060009054906101000a900461ffff1660096000600360ff16815260200190815260200160002060009054906101000a900461ffff1660649550955095509550505090919293565b61112261216d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611191576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611188906134ed565b60405180910390fd5b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61122561216d565b61122f6000612341565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c6020528060005260406000206000915054906101000a900460ff1681565b61128361216d565b60008360ff1611801561129a575060038360ff1611155b6112d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112d090613559565b60405180910390fd5b60148260ff161115611320576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611317906135c5565b60405180910390fd5b8160ff16600960008560ff1660ff16815260200190815260200160002060006101000a81548161ffff021916908361ffff16021790555080600a60008560ff1660ff16815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b6060600480546113c390612f3e565b80601f01602080910402602001604051908101604052809291908181526020018280546113ef90612f3e565b801561143c5780601f106114115761010080835404028352916020019161143c565b820191906000526020600020905b81548152906001019060200180831161141f57829003601f168201915b5050505050905090565b60065481565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061147d6118d5565b9050600061148b82866117cb565b9050838110156114d0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114c790613657565b60405180910390fd5b6114dd82868684036118dd565b60019250505092915050565b6114f161216d565b60001515600560149054906101000a900460ff16151514611547576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153e90612fbb565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550565b60008061156f6118d5565b905061157c818585611b32565b600191505092915050565b600061159161216d565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600a6020528060005260406000206000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61162061216d565b818190508484905014611668576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165f90613027565b60405180910390fd5b60005b848490508110156117c457600073ffffffffffffffffffffffffffffffffffffffff168585838181106116a1576116a0613047565b5b90506020020160208101906116b69190612ce5565b73ffffffffffffffffffffffffffffffffffffffff160361170c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611703906134ed565b60405180910390fd5b82828281811061171f5761171e613047565b5b9050602002016020810190611734919061368c565b6008600087878581811061174b5761174a613047565b5b90506020020160208101906117609190612ce5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806117bc906130fb565b91505061166b565b5050505050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61185a61216d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036118c9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c09061372b565b60405180910390fd5b6118d281612341565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361194c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611943906137bd565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119bb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119b29061384f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a999190612865565b60405180910390a3505050565b6000611ab284846117cb565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b2c5781811015611b1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b15906138bb565b60405180910390fd5b611b2b84848484036118dd565b5b50505050565b60011515600560149054906101000a900460ff1615151480611ba4575060011515600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b80611bff575060011515600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b611c3e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3590613927565b60405180910390fd5b600081905060001515600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515148015611cf3575060001515600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161515145b1561211957600060039050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611d5c5760019050611db7565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611db657600290505b5b6000600a60008360ff1660ff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690506000600960008460ff1660ff16815260200190815260200160002060009054906101000a900461ffff16905060008073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480611e61575060008261ffff16145b611e865760648261ffff1686611e779190613947565b611e8191906139d0565b611e89565b60005b905060018460ff16148015611e9e5750600081115b8015611ed75750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561207b57600080600090505b60058160ff16101561207857600b60008260ff1660ff16815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169150600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614158015611fe2575060008273ffffffffffffffffffffffffffffffffffffffff166370a082318b6040518263ffffffff1660e01b8152600401611f9f9190612d21565b602060405180830381865afa158015611fbc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611fe091906132bd565b115b15612064576064600c60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1660ff1685612044919061346d565b61ffff16886120539190613947565b61205d91906139d0565b9250612065565b5b808061207090613444565b915050611ee4565b50505b6000811180156120b85750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156120d75780856120c99190613a01565b94506120d6888483612407565b5b7fc47606c08142448805a8ef09f6e80f7a56bcbc2288fd9dc63135ca9a0955a0968484838860405161210c9493929190613a35565b60405180910390a1505050505b6000811161215c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161215390613ac6565b60405180910390fd5b612167848483612407565b50505050565b6121756118d5565b73ffffffffffffffffffffffffffffffffffffffff16612193611231565b73ffffffffffffffffffffffffffffffffffffffff16146121e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121e090613b32565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361225a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225190613b9e565b60405180910390fd5b6122666000838361267d565b806002600082825461227891906130a5565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516123299190612865565b60405180910390a361233d60008383612682565b5050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612476576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161246d90613c30565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036124e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124dc90613cc2565b60405180910390fd5b6124f083838361267d565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612576576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161256d90613d54565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516126649190612865565b60405180910390a3612677848484612682565b50505050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126c15780820151818401526020810190506126a6565b838111156126d0576000848401525b50505050565b6000601f19601f8301169050919050565b60006126f282612687565b6126fc8185612692565b935061270c8185602086016126a3565b612715816126d6565b840191505092915050565b6000602082019050818103600083015261273a81846126e7565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127778261274c565b9050919050565b6127878161276c565b811461279257600080fd5b50565b6000813590506127a48161277e565b92915050565b6000819050919050565b6127bd816127aa565b81146127c857600080fd5b50565b6000813590506127da816127b4565b92915050565b600080604083850312156127f7576127f6612742565b5b600061280585828601612795565b9250506020612816858286016127cb565b9150509250929050565b60008115159050919050565b61283581612820565b82525050565b6000602082019050612850600083018461282c565b92915050565b61285f816127aa565b82525050565b600060208201905061287a6000830184612856565b92915050565b60008060006060848603121561289957612898612742565b5b60006128a786828701612795565b93505060206128b886828701612795565b92505060406128c9868287016127cb565b9150509250925092565b600060ff82169050919050565b6128e9816128d3565b81146128f457600080fd5b50565b600081359050612906816128e0565b92915050565b60006020828403121561292257612921612742565b5b6000612930848285016128f7565b91505092915050565b6000819050919050565b600061295e6129596129548461274c565b612939565b61274c565b9050919050565b600061297082612943565b9050919050565b600061298282612965565b9050919050565b61299281612977565b82525050565b60006020820190506129ad6000830184612989565b92915050565b600061ffff82169050919050565b6129ca816129b3565b82525050565b60006020820190506129e560008301846129c1565b92915050565b6129f4816128d3565b82525050565b6000602082019050612a0f60008301846129eb565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f840112612a3a57612a39612a15565b5b8235905067ffffffffffffffff811115612a5757612a56612a1a565b5b602083019150836020820283011115612a7357612a72612a1f565b5b9250929050565b60008083601f840112612a9057612a8f612a15565b5b8235905067ffffffffffffffff811115612aad57612aac612a1a565b5b602083019150836020820283011115612ac957612ac8612a1f565b5b9250929050565b60008060008060408587031215612aea57612ae9612742565b5b600085013567ffffffffffffffff811115612b0857612b07612747565b5b612b1487828801612a24565b9450945050602085013567ffffffffffffffff811115612b3757612b36612747565b5b612b4387828801612a7a565b925092505092959194509250565b6000612b5c8261276c565b9050919050565b612b6c81612b51565b8114612b7757600080fd5b50565b600081359050612b8981612b63565b92915050565b600080600060608486031215612ba857612ba7612742565b5b6000612bb686828701612b7a565b9350506020612bc7868287016127cb565b9250506040612bd886828701612795565b9150509250925092565b6000612bed8261276c565b9050919050565b612bfd81612be2565b8114612c0857600080fd5b50565b600081359050612c1a81612bf4565b92915050565b600080600060608486031215612c3957612c38612742565b5b6000612c47868287016128f7565b9350506020612c58868287016128f7565b9250506040612c6986828701612c0b565b9150509250925092565b6000608082019050612c8860008301876129c1565b612c9560208301866129c1565b612ca260408301856129c1565b612caf60608301846129c1565b95945050505050565b600060208284031215612cce57612ccd612742565b5b6000612cdc84828501612b7a565b91505092915050565b600060208284031215612cfb57612cfa612742565b5b6000612d0984828501612795565b91505092915050565b612d1b8161276c565b82525050565b6000602082019050612d366000830184612d12565b92915050565b600060208284031215612d5257612d51612742565b5b6000612d6084828501612c0b565b91505092915050565b600080600060608486031215612d8257612d81612742565b5b6000612d90868287016128f7565b9350506020612da1868287016128f7565b9250506040612db286828701612795565b9150509250925092565b6000612dc782612965565b9050919050565b612dd781612dbc565b82525050565b6000602082019050612df26000830184612dce565b92915050565b60008083601f840112612e0e57612e0d612a15565b5b8235905067ffffffffffffffff811115612e2b57612e2a612a1a565b5b602083019150836020820283011115612e4757612e46612a1f565b5b9250929050565b60008060008060408587031215612e6857612e67612742565b5b600085013567ffffffffffffffff811115612e8657612e85612747565b5b612e9287828801612a24565b9450945050602085013567ffffffffffffffff811115612eb557612eb4612747565b5b612ec187828801612df8565b925092505092959194509250565b60008060408385031215612ee657612ee5612742565b5b6000612ef485828601612795565b9250506020612f0585828601612795565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612f5657607f821691505b602082108103612f6957612f68612f0f565b5b50919050565b7f494e49545f434f4d504c45544500000000000000000000000000000000000000600082015250565b6000612fa5600d83612692565b9150612fb082612f6f565b602082019050919050565b60006020820190508181036000830152612fd481612f98565b9050919050565b7f494e5055545f4d49534d41544348000000000000000000000000000000000000600082015250565b6000613011600e83612692565b915061301c82612fdb565b602082019050919050565b6000602082019050818103600083015261304081613004565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130b0826127aa565b91506130bb836127aa565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156130f0576130ef613076565b5b828201905092915050565b6000613106826127aa565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff820361313857613137613076565b5b600182019050919050565b7f494e56414c49445f4e45575f535550504c590000000000000000000000000000600082015250565b6000613179601283612692565b915061318482613143565b602082019050919050565b600060208201905081810360008301526131a88161316c565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600081519050919050565b600081905092915050565b60006131ff826131de565b61320981856131e9565b93506132198185602086016126a3565b80840191505092915050565b600061323182846131f4565b915081905092915050565b7f4e41544956455f5452414e534645525f4641494c454400000000000000000000600082015250565b6000613272601683612692565b915061327d8261323c565b602082019050919050565b600060208201905081810360008301526132a181613265565b9050919050565b6000815190506132b7816127b4565b92915050565b6000602082840312156132d3576132d2612742565b5b60006132e1848285016132a8565b91505092915050565b60006040820190506132ff6000830185612d12565b61330c6020830184612856565b9392505050565b61331c81612820565b811461332757600080fd5b50565b60008151905061333981613313565b92915050565b60006020828403121561335557613354612742565b5b60006133638482850161332a565b91505092915050565b7f45524332305f5452414e534645525f4641494c45440000000000000000000000600082015250565b60006133a2601583612692565b91506133ad8261336c565b602082019050919050565b600060208201905081810360008301526133d181613395565b9050919050565b7f494e56414c49445f494e44455800000000000000000000000000000000000000600082015250565b600061340e600d83612692565b9150613419826133d8565b602082019050919050565b6000602082019050818103600083015261343d81613401565b9050919050565b600061344f826128d3565b915060ff820361346257613461613076565b5b600182019050919050565b6000613478826129b3565b9150613483836129b3565b92508282101561349657613495613076565b5b828203905092915050565b7f414444524553535f494e56414c49440000000000000000000000000000000000600082015250565b60006134d7600f83612692565b91506134e2826134a1565b602082019050919050565b60006020820190508181036000830152613506816134ca565b9050919050565b7f494e56414c49445f444952454354494f4e000000000000000000000000000000600082015250565b6000613543601183612692565b915061354e8261350d565b602082019050919050565b6000602082019050818103600083015261357281613536565b9050919050565b7f494e56414c49445f50455243454e540000000000000000000000000000000000600082015250565b60006135af600f83612692565b91506135ba82613579565b602082019050919050565b600060208201905081810360008301526135de816135a2565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000613641602583612692565b915061364c826135e5565b604082019050919050565b6000602082019050818103600083015261367081613634565b9050919050565b60008135905061368681613313565b92915050565b6000602082840312156136a2576136a1612742565b5b60006136b084828501613677565b91505092915050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000613715602683612692565b9150613720826136b9565b604082019050919050565b6000602082019050818103600083015261374481613708565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137a7602483612692565b91506137b28261374b565b604082019050919050565b600060208201905081810360008301526137d68161379a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613839602283612692565b9150613844826137dd565b604082019050919050565b600060208201905081810360008301526138688161382c565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006138a5601d83612692565b91506138b08261386f565b602082019050919050565b600060208201905081810360008301526138d481613898565b9050919050565b7f494e49545f494e434f4d504c4554450000000000000000000000000000000000600082015250565b6000613911600f83612692565b915061391c826138db565b602082019050919050565b6000602082019050818103600083015261394081613904565b9050919050565b6000613952826127aa565b915061395d836127aa565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561399657613995613076565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006139db826127aa565b91506139e6836127aa565b9250826139f6576139f56139a1565b5b828204905092915050565b6000613a0c826127aa565b9150613a17836127aa565b925082821015613a2a57613a29613076565b5b828203905092915050565b6000608082019050613a4a60008301876129eb565b613a576020830186612d12565b613a646040830185612856565b613a716060830184612856565b95945050505050565b7f5452414e534645525f544f4f5f534d414c4c0000000000000000000000000000600082015250565b6000613ab0601283612692565b9150613abb82613a7a565b602082019050919050565b60006020820190508181036000830152613adf81613aa3565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000613b1c602083612692565b9150613b2782613ae6565b602082019050919050565b60006020820190508181036000830152613b4b81613b0f565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000613b88601f83612692565b9150613b9382613b52565b602082019050919050565b60006020820190508181036000830152613bb781613b7b565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613c1a602583612692565b9150613c2582613bbe565b604082019050919050565b60006020820190508181036000830152613c4981613c0d565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613cac602383612692565b9150613cb782613c50565b604082019050919050565b60006020820190508181036000830152613cdb81613c9f565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d3e602683612692565b9150613d4982613ce2565b604082019050919050565b60006020820190508181036000830152613d6d81613d31565b905091905056fea26469706673582212205eb93cb35e76d94f4e8d7eb1756590b031a75fc0e06857d4f5b87a3967ee32f964736f6c634300080d0033
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.