ERC-20
Overview
Max Total Supply
10,000,000,000 TRUSK
Holders
126
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000001 TRUSKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TRUSK
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 5000 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /* TRUSK https://www.trusk.io/ https://x.com/trusk_eth https://t.me/truskportal */ pragma solidity ^0.8.20; import "@openzeppelin/contracts/utils/Context.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); } // TRUSK Main Contract contract TRUSK is Context, Ownable, IERC20 { /** * @dev ERC-20 Variables */ mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private constant _name = "Trusk"; string private constant _symbol = "TRUSK"; uint256 marketingTaxBuy = 150; uint256 marketingTaxSell = 300; mapping(address => bool) private _isExcludedFromFee; address public marketingWallet; uint256 private constant INIT_SUPPLY = 10_000_000_000 * 1e9; uint256 private maxWalletSize = 300_000_000 * 1e9; IUniswapV2Router02 public uniswapV2Router; address public uniswapV2Pair; //enable trading bool public tradingOpen; bool private inSwap; bool private swapEnabled = true; uint256 public _swapTokensAtAmount = INIT_SUPPLY / 5000; modifier lockTheSwap { inSwap = true; _; inSwap = false; } constructor() Ownable(msg.sender) { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); marketingWallet = msg.sender; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[address(this)] = true; _mint(msg.sender, INIT_SUPPLY); } receive() external payable {} /** * @notice ERC-20 Functions */ /** * @dev Returns the name of the token. */ function name() public pure returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public pure 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 pure returns (uint8) { return 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view 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 override returns (bool) { _transfer(_msgSender(), to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view 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 override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * 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 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 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 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 ) private { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(amount > 0, "Transfer amount must be greater than zero"); if (from != owner() && to != owner()) { //Trade start check if (!tradingOpen) { require(from == owner(), "TRUSK: This account cannot send tokens until trading is open"); } //Max wallet check if (to != uniswapV2Pair) { require(balanceOf(to) + amount < maxWalletSize, "TRUSK: Balance exceeds wallet size"); } //Swap and send tax tokens to marketing wallet only on sells uint256 contractTokenBalance = balanceOf(address(this)); if (contractTokenBalance >= _swapTokensAtAmount && !inSwap && to == uniswapV2Pair && swapEnabled && !_isExcludedFromFee[from] && !_isExcludedFromFee[to]) { swapTokensForETH(contractTokenBalance); if (address(this).balance > 0) { sendETHToFee(address(this).balance); } } } uint256 taxAmount; if (!(_isExcludedFromFee[from] || _isExcludedFromFee[to]) && !(from != uniswapV2Pair && to != uniswapV2Pair)) { if (from == uniswapV2Pair && to != address(uniswapV2Router)) { // buy taxAmount = amount * marketingTaxBuy / 1000; } else if (to == uniswapV2Pair && from != address(uniswapV2Router)) { // sell taxAmount = amount * marketingTaxSell / 1000; } } uint256 amountAfterTax = amount - taxAmount; _balances[from] -= amount; _balances[to] += amountAfterTax; _balances[address(this)] += taxAmount; emit Transfer(from, to, amountAfterTax); } /** @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) private { require(account != address(0), "ERC20: mint to the zero address"); _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); } /** * @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) private { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) private { 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 ) private { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function getTaxes() external view returns (uint256, uint256) { return (marketingTaxBuy, marketingTaxSell); } function setTaxes( uint256 _marketingTaxBuy, uint256 _marketingTaxSell ) external onlyOwner { marketingTaxBuy = _marketingTaxBuy; marketingTaxSell = _marketingTaxSell; } function excludeFromFees(address account, bool isExcluded) external onlyOwner { _isExcludedFromFee[account] = isExcluded; } function setMarketingWallet(address _marketingWallet) external onlyOwner { marketingWallet = _marketingWallet; } function setMaxWalletSize(uint256 _maxWalletSize) external onlyOwner { maxWalletSize = _maxWalletSize; } function swapTokensForETH(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function sendETHToFee(uint256 amount) private { (bool success, ) = payable(marketingWallet).call{value: amount}(""); require(success, "Unable to send ETH to marketing wallet"); } // trading cannot be stopped once opened function openTrading() external onlyOwner { tradingOpen = true; } function setSwapEnabled(bool _enabled) external onlyOwner { swapEnabled = _enabled; } function setSwapTokensAtAmount(uint256 _newSwapTokensAtAmount) external onlyOwner { _swapTokensAtAmount = _newSwapTokensAtAmount; } function manualswap() external { require(_msgSender() == owner() || _msgSender() == marketingWallet); swapTokensForETH(balanceOf(address(this))); } function manualsend() external { require(_msgSender() == owner() || _msgSender() == marketingWallet); sendETHToFee(address(this).balance); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @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 { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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 { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @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 value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of 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 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` 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 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "optimizer": { "enabled": true, "runs": 5000 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"_swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"pure","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getTaxes","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"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":"manualsend","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"manualswap","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_marketingWallet","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletSize","type":"uint256"}],"name":"setMaxWalletSize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_enabled","type":"bool"}],"name":"setSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newSwapTokensAtAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_marketingTaxBuy","type":"uint256"},{"internalType":"uint256","name":"_marketingTaxSell","type":"uint256"}],"name":"setTaxes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingOpen","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052609660045561012c600555670429d069189e0000600855600a805460ff60b01b1916600160b01b17905562000044611388678ac7230489e800006200037d565b600b5534801562000053575f80fd5b5033806200007b57604051631e4fbdf760e01b81525f60048201526024015b60405180910390fd5b62000086816200026b565b50600980546001600160a01b031916737a250d5630b4cf539739df2c5dacb4c659f2488d9081179091556040805163c45a015560e01b81529051829163c45a01559160048083019260209291908290030181865afa158015620000eb573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200011191906200039d565b6001600160a01b031663c9c6539630836001600160a01b031663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200015d573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906200018391906200039d565b6040516001600160e01b031960e085901b1681526001600160a01b039283166004820152911660248201526044016020604051808303815f875af1158015620001ce573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190620001f491906200039d565b600a80546001600160a01b03929092166001600160a01b031992831617905560078054909116339081179091555f81815260066020526040808220805460ff19908116600190811790925530845291909220805490911690911790556200026490678ac7230489e80000620002ba565b50620003f2565b5f80546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620003125760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640162000072565b8060035f828254620003259190620003cc565b90915550506001600160a01b0382165f818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b5f826200039857634e487b7160e01b5f52601260045260245ffd5b500490565b5f60208284031215620003ae575f80fd5b81516001600160a01b0381168114620003c5575f80fd5b9392505050565b80820180821115620003ec57634e487b7160e01b5f52601160045260245ffd5b92915050565b61180c80620004005f395ff3fe6080604052600436106101bd575f3560e01c806375f0a874116100f2578063c3c8cd8011610092578063e01af92c11610062578063e01af92c1461055b578063ea1644d51461057a578063f2fde38b14610599578063ffb54a99146105b8575f80fd5b8063c3c8cd80146104d0578063c647b20e146104e4578063c9567bf914610503578063dd62ed3e14610517575f80fd5b8063a457c2d7116100cd578063a457c2d714610454578063a9059cbb14610473578063afa4f3b214610492578063c0246668146104b1575f80fd5b806375f0a874146103d45780638da5cb5b146103f357806395d89b411461040f575f80fd5b8063313ce5671161015d5780635d098b38116101385780635d098b38146103575780636fc3eaec1461037857806370a082311461038c578063715018a6146103c0575f80fd5b8063313ce567146102fe578063395093511461031957806349bd5a5e14610338575f80fd5b806318160ddd1161019857806318160ddd1461028557806323b872dd146102a35780632973ef2d146102c25780632fd689e3146102e9575f80fd5b806306fdde03146101c8578063095ea7b31461021f5780631694505e1461024e575f80fd5b366101c457005b5f80fd5b3480156101d3575f80fd5b5060408051808201909152600581527f547275736b00000000000000000000000000000000000000000000000000000060208201525b60405161021691906114a8565b60405180910390f35b34801561022a575f80fd5b5061023e610239366004611525565b6105e9565b6040519015158152602001610216565b348015610259575f80fd5b5060095461026d906001600160a01b031681565b6040516001600160a01b039091168152602001610216565b348015610290575f80fd5b506003545b604051908152602001610216565b3480156102ae575f80fd5b5061023e6102bd36600461154f565b6105ff565b3480156102cd575f80fd5b5060045460055460408051928352602083019190915201610216565b3480156102f4575f80fd5b50610295600b5481565b348015610309575f80fd5b5060405160098152602001610216565b348015610324575f80fd5b5061023e610333366004611525565b610622565b348015610343575f80fd5b50600a5461026d906001600160a01b031681565b348015610362575f80fd5b5061037661037136600461158d565b61066a565b005b348015610383575f80fd5b506103766106ac565b348015610397575f80fd5b506102956103a636600461158d565b6001600160a01b03165f9081526001602052604090205490565b3480156103cb575f80fd5b506103766106ea565b3480156103df575f80fd5b5060075461026d906001600160a01b031681565b3480156103fe575f80fd5b505f546001600160a01b031661026d565b34801561041a575f80fd5b5060408051808201909152600581527f545255534b0000000000000000000000000000000000000000000000000000006020820152610209565b34801561045f575f80fd5b5061023e61046e366004611525565b6106fb565b34801561047e575f80fd5b5061023e61048d366004611525565b6107a9565b34801561049d575f80fd5b506103766104ac3660046115af565b6107b5565b3480156104bc575f80fd5b506103766104cb3660046115da565b6107c2565b3480156104db575f80fd5b50610376610812565b3480156104ef575f80fd5b506103766104fe36600461160d565b61085d565b34801561050e575f80fd5b50610376610870565b348015610522575f80fd5b5061029561053136600461162d565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b348015610566575f80fd5b50610376610575366004611664565b6108b9565b348015610585575f80fd5b506103766105943660046115af565b61090d565b3480156105a4575f80fd5b506103766105b336600461158d565b61091a565b3480156105c3575f80fd5b50600a5461023e9074010000000000000000000000000000000000000000900460ff1681565b5f6105f5338484610970565b5060015b92915050565b5f3361060c858285610ac7565b610617858585610b76565b506001949350505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909190610660908290869061065b9087906116aa565b610970565b5060019392505050565b610672611148565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b5f546001600160a01b03163314806106d757506007546001600160a01b0316336001600160a01b0316145b6106df575f80fd5b6106e84761118d565b565b6106f2611148565b6106e85f611257565b335f8181526002602090815260408083206001600160a01b03871684529091528120549091908381101561079c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106178286868403610970565b5f6105f5338484610b76565b6107bd611148565b600b55565b6107ca611148565b6001600160a01b03919091165f90815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b5f546001600160a01b031633148061083d57506007546001600160a01b0316336001600160a01b0316145b610845575f80fd5b305f908152600160205260409020546106e8906112be565b610865611148565b600491909155600555565b610878611148565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6108c1611148565b600a8054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b610915611148565b600855565b610922611148565b6001600160a01b038116610964576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152602401610793565b61096d81611257565b50565b6001600160a01b0383166109eb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610793565b6001600160a01b038216610a675760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610793565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b705781811015610b635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610793565b610b708484848403610970565b50505050565b6001600160a01b038316610bf25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610793565b6001600160a01b038216610c6e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610793565b5f8111610ce35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610793565b5f546001600160a01b03848116911614801590610d0d57505f546001600160a01b03838116911614155b15610f4f57600a5474010000000000000000000000000000000000000000900460ff16610db6575f546001600160a01b03848116911614610db65760405162461bcd60e51b815260206004820152603c60248201527f545255534b3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e67206973206f70656e000000006064820152608401610793565b600a546001600160a01b03838116911614610e6a5760085481610ded846001600160a01b03165f9081526001602052604090205490565b610df791906116aa565b10610e6a5760405162461bcd60e51b815260206004820152602260248201527f545255534b3a2042616c616e636520657863656564732077616c6c657420736960448201527f7a650000000000000000000000000000000000000000000000000000000000006064820152608401610793565b305f90815260016020526040902054600b548110801590610ea75750600a547501000000000000000000000000000000000000000000900460ff16155b8015610ec05750600a546001600160a01b038481169116145b8015610ee85750600a54760100000000000000000000000000000000000000000000900460ff165b8015610f0c57506001600160a01b0384165f9081526006602052604090205460ff16155b8015610f3057506001600160a01b0383165f9081526006602052604090205460ff16155b15610f4d57610f3e816112be565b4715610f4d57610f4d4761118d565b505b6001600160a01b0383165f9081526006602052604081205460ff1680610f8c57506001600160a01b0383165f9081526006602052604090205460ff165b158015610fc25750600a546001600160a01b03858116911614801590610fc05750600a546001600160a01b03848116911614155b155b1561106757600a546001600160a01b038581169116148015610ff257506009546001600160a01b03848116911614155b15611019576103e86004548361100891906116bd565b61101291906116d4565b9050611067565b600a546001600160a01b03848116911614801561104457506009546001600160a01b03858116911614155b15611067576103e86005548361105a91906116bd565b61106491906116d4565b90505b5f611072828461170c565b6001600160a01b0386165f9081526001602052604081208054929350859290919061109e90849061170c565b90915550506001600160a01b0384165f90815260016020526040812080548392906110ca9084906116aa565b9091555050305f90815260016020526040812080548492906110ed9084906116aa565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113991815260200190565b60405180910390a35050505050565b5f546001600160a01b031633146106e8576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610793565b6007546040515f916001600160a01b03169083908381818185875af1925050503d805f81146111d7576040519150601f19603f3d011682016040523d82523d5f602084013e6111dc565b606091505b50509050806112535760405162461bcd60e51b815260206004820152602660248201527f556e61626c6520746f2073656e642045544820746f206d61726b6574696e672060448201527f77616c6c657400000000000000000000000000000000000000000000000000006064820152608401610793565b5050565b5f80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a80547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106113315761133161171f565b6001600160a01b03928316602091820292909201810191909152600954604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156113a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c5919061174c565b816001815181106113d8576113d861171f565b6001600160a01b0392831660209182029290920101526009546113fe9130911684610970565b6009546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac9479061144f9085905f90869030904290600401611767565b5f604051808303815f87803b158015611466575f80fd5b505af1158015611478573d5f803e3d5ffd5b5050600a80547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905550505050565b5f6020808352835180828501525f5b818110156114d3578581018301518582016040015282016114b7565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b038116811461096d575f80fd5b5f8060408385031215611536575f80fd5b823561154181611511565b946020939093013593505050565b5f805f60608486031215611561575f80fd5b833561156c81611511565b9250602084013561157c81611511565b929592945050506040919091013590565b5f6020828403121561159d575f80fd5b81356115a881611511565b9392505050565b5f602082840312156115bf575f80fd5b5035919050565b803580151581146115d5575f80fd5b919050565b5f80604083850312156115eb575f80fd5b82356115f681611511565b9150611604602084016115c6565b90509250929050565b5f806040838503121561161e575f80fd5b50508035926020909101359150565b5f806040838503121561163e575f80fd5b823561164981611511565b9150602083013561165981611511565b809150509250929050565b5f60208284031215611674575f80fd5b6115a8826115c6565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b808201808211156105f9576105f961167d565b80820281158282048414176105f9576105f961167d565b5f82611707577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b818103818111156105f9576105f961167d565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6020828403121561175c575f80fd5b81516115a881611511565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156117b55784516001600160a01b031683529383019391830191600101611790565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204117920d896a0c8811bb83fce613ba6ffa285e234cb112bb18fca2a52e7a696164736f6c63430008140033
Deployed Bytecode
0x6080604052600436106101bd575f3560e01c806375f0a874116100f2578063c3c8cd8011610092578063e01af92c11610062578063e01af92c1461055b578063ea1644d51461057a578063f2fde38b14610599578063ffb54a99146105b8575f80fd5b8063c3c8cd80146104d0578063c647b20e146104e4578063c9567bf914610503578063dd62ed3e14610517575f80fd5b8063a457c2d7116100cd578063a457c2d714610454578063a9059cbb14610473578063afa4f3b214610492578063c0246668146104b1575f80fd5b806375f0a874146103d45780638da5cb5b146103f357806395d89b411461040f575f80fd5b8063313ce5671161015d5780635d098b38116101385780635d098b38146103575780636fc3eaec1461037857806370a082311461038c578063715018a6146103c0575f80fd5b8063313ce567146102fe578063395093511461031957806349bd5a5e14610338575f80fd5b806318160ddd1161019857806318160ddd1461028557806323b872dd146102a35780632973ef2d146102c25780632fd689e3146102e9575f80fd5b806306fdde03146101c8578063095ea7b31461021f5780631694505e1461024e575f80fd5b366101c457005b5f80fd5b3480156101d3575f80fd5b5060408051808201909152600581527f547275736b00000000000000000000000000000000000000000000000000000060208201525b60405161021691906114a8565b60405180910390f35b34801561022a575f80fd5b5061023e610239366004611525565b6105e9565b6040519015158152602001610216565b348015610259575f80fd5b5060095461026d906001600160a01b031681565b6040516001600160a01b039091168152602001610216565b348015610290575f80fd5b506003545b604051908152602001610216565b3480156102ae575f80fd5b5061023e6102bd36600461154f565b6105ff565b3480156102cd575f80fd5b5060045460055460408051928352602083019190915201610216565b3480156102f4575f80fd5b50610295600b5481565b348015610309575f80fd5b5060405160098152602001610216565b348015610324575f80fd5b5061023e610333366004611525565b610622565b348015610343575f80fd5b50600a5461026d906001600160a01b031681565b348015610362575f80fd5b5061037661037136600461158d565b61066a565b005b348015610383575f80fd5b506103766106ac565b348015610397575f80fd5b506102956103a636600461158d565b6001600160a01b03165f9081526001602052604090205490565b3480156103cb575f80fd5b506103766106ea565b3480156103df575f80fd5b5060075461026d906001600160a01b031681565b3480156103fe575f80fd5b505f546001600160a01b031661026d565b34801561041a575f80fd5b5060408051808201909152600581527f545255534b0000000000000000000000000000000000000000000000000000006020820152610209565b34801561045f575f80fd5b5061023e61046e366004611525565b6106fb565b34801561047e575f80fd5b5061023e61048d366004611525565b6107a9565b34801561049d575f80fd5b506103766104ac3660046115af565b6107b5565b3480156104bc575f80fd5b506103766104cb3660046115da565b6107c2565b3480156104db575f80fd5b50610376610812565b3480156104ef575f80fd5b506103766104fe36600461160d565b61085d565b34801561050e575f80fd5b50610376610870565b348015610522575f80fd5b5061029561053136600461162d565b6001600160a01b039182165f90815260026020908152604080832093909416825291909152205490565b348015610566575f80fd5b50610376610575366004611664565b6108b9565b348015610585575f80fd5b506103766105943660046115af565b61090d565b3480156105a4575f80fd5b506103766105b336600461158d565b61091a565b3480156105c3575f80fd5b50600a5461023e9074010000000000000000000000000000000000000000900460ff1681565b5f6105f5338484610970565b5060015b92915050565b5f3361060c858285610ac7565b610617858585610b76565b506001949350505050565b335f8181526002602090815260408083206001600160a01b0387168452909152812054909190610660908290869061065b9087906116aa565b610970565b5060019392505050565b610672611148565b600780547fffffffffffffffffffffffff0000000000000000000000000000000000000000166001600160a01b0392909216919091179055565b5f546001600160a01b03163314806106d757506007546001600160a01b0316336001600160a01b0316145b6106df575f80fd5b6106e84761118d565b565b6106f2611148565b6106e85f611257565b335f8181526002602090815260408083206001600160a01b03871684529091528120549091908381101561079c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760448201527f207a65726f00000000000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6106178286868403610970565b5f6105f5338484610b76565b6107bd611148565b600b55565b6107ca611148565b6001600160a01b03919091165f90815260066020526040902080547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0016911515919091179055565b5f546001600160a01b031633148061083d57506007546001600160a01b0316336001600160a01b0316145b610845575f80fd5b305f908152600160205260409020546106e8906112be565b610865611148565b600491909155600555565b610878611148565b600a80547fffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffff1674010000000000000000000000000000000000000000179055565b6108c1611148565b600a8054911515760100000000000000000000000000000000000000000000027fffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffff909216919091179055565b610915611148565b600855565b610922611148565b6001600160a01b038116610964576040517f1e4fbdf70000000000000000000000000000000000000000000000000000000081525f6004820152602401610793565b61096d81611257565b50565b6001600160a01b0383166109eb5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460448201527f72657373000000000000000000000000000000000000000000000000000000006064820152608401610793565b6001600160a01b038216610a675760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f20616464726560448201527f73730000000000000000000000000000000000000000000000000000000000006064820152608401610793565b6001600160a01b038381165f8181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6001600160a01b038381165f908152600260209081526040808320938616835292905220547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610b705781811015610b635760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610793565b610b708484848403610970565b50505050565b6001600160a01b038316610bf25760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f20616460448201527f64726573730000000000000000000000000000000000000000000000000000006064820152608401610793565b6001600160a01b038216610c6e5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201527f65737300000000000000000000000000000000000000000000000000000000006064820152608401610793565b5f8111610ce35760405162461bcd60e51b815260206004820152602960248201527f5472616e7366657220616d6f756e74206d75737420626520677265617465722060448201527f7468616e207a65726f00000000000000000000000000000000000000000000006064820152608401610793565b5f546001600160a01b03848116911614801590610d0d57505f546001600160a01b03838116911614155b15610f4f57600a5474010000000000000000000000000000000000000000900460ff16610db6575f546001600160a01b03848116911614610db65760405162461bcd60e51b815260206004820152603c60248201527f545255534b3a2054686973206163636f756e742063616e6e6f742073656e642060448201527f746f6b656e7320756e74696c2074726164696e67206973206f70656e000000006064820152608401610793565b600a546001600160a01b03838116911614610e6a5760085481610ded846001600160a01b03165f9081526001602052604090205490565b610df791906116aa565b10610e6a5760405162461bcd60e51b815260206004820152602260248201527f545255534b3a2042616c616e636520657863656564732077616c6c657420736960448201527f7a650000000000000000000000000000000000000000000000000000000000006064820152608401610793565b305f90815260016020526040902054600b548110801590610ea75750600a547501000000000000000000000000000000000000000000900460ff16155b8015610ec05750600a546001600160a01b038481169116145b8015610ee85750600a54760100000000000000000000000000000000000000000000900460ff165b8015610f0c57506001600160a01b0384165f9081526006602052604090205460ff16155b8015610f3057506001600160a01b0383165f9081526006602052604090205460ff16155b15610f4d57610f3e816112be565b4715610f4d57610f4d4761118d565b505b6001600160a01b0383165f9081526006602052604081205460ff1680610f8c57506001600160a01b0383165f9081526006602052604090205460ff165b158015610fc25750600a546001600160a01b03858116911614801590610fc05750600a546001600160a01b03848116911614155b155b1561106757600a546001600160a01b038581169116148015610ff257506009546001600160a01b03848116911614155b15611019576103e86004548361100891906116bd565b61101291906116d4565b9050611067565b600a546001600160a01b03848116911614801561104457506009546001600160a01b03858116911614155b15611067576103e86005548361105a91906116bd565b61106491906116d4565b90505b5f611072828461170c565b6001600160a01b0386165f9081526001602052604081208054929350859290919061109e90849061170c565b90915550506001600160a01b0384165f90815260016020526040812080548392906110ca9084906116aa565b9091555050305f90815260016020526040812080548492906110ed9084906116aa565b92505081905550836001600160a01b0316856001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405161113991815260200190565b60405180910390a35050505050565b5f546001600160a01b031633146106e8576040517f118cdaa7000000000000000000000000000000000000000000000000000000008152336004820152602401610793565b6007546040515f916001600160a01b03169083908381818185875af1925050503d805f81146111d7576040519150601f19603f3d011682016040523d82523d5f602084013e6111dc565b606091505b50509050806112535760405162461bcd60e51b815260206004820152602660248201527f556e61626c6520746f2073656e642045544820746f206d61726b6574696e672060448201527f77616c6c657400000000000000000000000000000000000000000000000000006064820152608401610793565b5050565b5f80546001600160a01b038381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600a80547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff1675010000000000000000000000000000000000000000001790556040805160028082526060820183525f9260208301908036833701905050905030815f815181106113315761133161171f565b6001600160a01b03928316602091820292909201810191909152600954604080517fad5c46480000000000000000000000000000000000000000000000000000000081529051919093169263ad5c46489260048083019391928290030181865afa1580156113a1573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906113c5919061174c565b816001815181106113d8576113d861171f565b6001600160a01b0392831660209182029290920101526009546113fe9130911684610970565b6009546040517f791ac9470000000000000000000000000000000000000000000000000000000081526001600160a01b039091169063791ac9479061144f9085905f90869030904290600401611767565b5f604051808303815f87803b158015611466575f80fd5b505af1158015611478573d5f803e3d5ffd5b5050600a80547fffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffff16905550505050565b5f6020808352835180828501525f5b818110156114d3578581018301518582016040015282016114b7565b505f6040828601015260407fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0601f8301168501019250505092915050565b6001600160a01b038116811461096d575f80fd5b5f8060408385031215611536575f80fd5b823561154181611511565b946020939093013593505050565b5f805f60608486031215611561575f80fd5b833561156c81611511565b9250602084013561157c81611511565b929592945050506040919091013590565b5f6020828403121561159d575f80fd5b81356115a881611511565b9392505050565b5f602082840312156115bf575f80fd5b5035919050565b803580151581146115d5575f80fd5b919050565b5f80604083850312156115eb575f80fd5b82356115f681611511565b9150611604602084016115c6565b90509250929050565b5f806040838503121561161e575f80fd5b50508035926020909101359150565b5f806040838503121561163e575f80fd5b823561164981611511565b9150602083013561165981611511565b809150509250929050565b5f60208284031215611674575f80fd5b6115a8826115c6565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b808201808211156105f9576105f961167d565b80820281158282048414176105f9576105f961167d565b5f82611707577f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b500490565b818103818111156105f9576105f961167d565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f6020828403121561175c575f80fd5b81516115a881611511565b5f60a082018783526020878185015260a0604085015281875180845260c08601915082890193505f5b818110156117b55784516001600160a01b031683529383019391830191600101611790565b50506001600160a01b0396909616606085015250505060800152939250505056fea26469706673582212204117920d896a0c8811bb83fce613ba6ffa285e234cb112bb18fca2a52e7a696164736f6c63430008140033
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.