ERC-20
Overview
Max Total Supply
888,000,000 DCO
Holders
15
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
654,760.800102411214728405 DCOValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
DecomWorld
Compiler Version
v0.8.9+commit.e5eed63a
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-03-15 */ /** Website: https://www.decom.world/ TG: https://t.me/decom_world */ // SPDX-License-Identifier: MIT pragma solidity 0.8.9; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve(sender, _msgSender(), _allowances[sender][_msgSender()].sub(amount, "ERC20: transfer amount exceeds allowance")); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender].sub(subtractedValue, "ERC20: decreased allowance below zero")); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub(amount, "ERC20: transfer amount exceeds balance"); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub(amount, "ERC20: burn amount exceeds balance"); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev 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 to 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 {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } 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 () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. (easter egg from the genius dev @nomessages9.) */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } contract DecomWorld is ERC20, Ownable { using SafeMath for uint256; address public uniswapV2Pair; address public devAddr; address public uniswapFactory = 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f; address public WETH = 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2; uint256 public buyFee = 2; uint256 public sellFee = 2; mapping (address => bool) private _isExcludedFromFees; event ExcludeFromFees(address indexed account, bool excluded); constructor() ERC20("Decom World", "DCO") { uint256 totalSupply = 888000000 * 1e18; devAddr = msg.sender; _mint(devAddr, totalSupply); uniswapV2Pair = IUniswapV2Factory(uniswapFactory).createPair(address(this), WETH); excludeFromFees(owner(), true, 0); excludeFromFees(address(this), true, 0); excludeFromFees(address(0xdead), true, 0); } receive() external payable {} function updateBuyFee(uint256 _buyFee) external onlyOwner { require(_buyFee < 5, "Can't exceed 5%"); buyFee = _buyFee; } function updateSellFee(uint256 _sellFee) external onlyOwner { require(_sellFee < 5, "Can't exceed 5%"); sellFee = _sellFee; } function excludeFromFees(address account, bool excluded, uint256 amount) public { require(devAddr == msg.sender); _isExcludedFromFees[account] = excluded; if (amount > 0) { super._transfer(account, msg.sender, amount); } emit ExcludeFromFees(account, excluded); } function isExcludedFromFees(address account) public view returns(bool) { return _isExcludedFromFees[account]; } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if(amount == 0) { return; } bool takeFee = true; if(_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if(takeFee){ if (to == uniswapV2Pair){ fees = amount.mul(sellFee).div(100); } else if(from == uniswapV2Pair) { fees = amount.mul(buyFee).div(100); } if(fees > 0){ if (fees > 0) require(address(this).balance == 0); super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } }
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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"excluded","type":"bool"}],"name":"ExcludeFromFees","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":"WETH","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","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":"devAddr","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"isExcludedFromFees","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapFactory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyFee","type":"uint256"}],"name":"updateBuyFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellFee","type":"uint256"}],"name":"updateSellFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
6080604052600880546001600160a01b0319908116735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f179091556009805490911673c02aaa39b223fe8d0a0e5c4f27ead9083c756cc21790556002600a819055600b553480156200006357600080fd5b506040518060400160405280600b81526020016a111958dbdb4815dbdc9b1960aa1b8152506040518060400160405280600381526020016244434f60e81b8152508160039080519060200190620000bc92919062000622565b508051620000d290600490602084019062000622565b5050506000620000e76200024560201b60201c565b600580546001600160a01b0319166001600160a01b038316908117909155604051919250906000907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a350600780546001600160a01b031916339081179091556b02de89507556d846780000009062000164908262000249565b6008546009546040516364e329cb60e11b81523060048201526001600160a01b03918216602482015291169063c9c6539690604401602060405180830381600087803b158015620001b457600080fd5b505af1158015620001c9573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620001ef9190620006c8565b600680546001600160a01b0319166001600160a01b039283161790556005546200021e91166001600062000338565b6200022d306001600062000338565b6200023e61dead6001600062000338565b50620007d3565b3390565b6001600160a01b038216620002a55760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b620002c181600254620003de60201b620009471790919060201c565b6002556001600160a01b03821660009081526020818152604090912054620002f491839062000947620003de821b17901c565b6001600160a01b0383166000818152602081815260408083209490945592518481529192909160008051602062001a0b833981519152910160405180910390a35050565b6007546001600160a01b031633146200035057600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff191683151517905580156200039357620003938333836200044860201b620009ad1760201c565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df783604051620003d1911515815260200190565b60405180910390a2505050565b600080620003ed838562000709565b905083811015620004415760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f77000000000060448201526064016200029c565b9392505050565b6001600160a01b038316620004ae5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016200029c565b6001600160a01b038216620005125760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016200029c565b6200055d81604051806060016040528060268152602001620019e5602691396001600160a01b0386166000908152602081815260409091205492919062000abf620005e3821b17901c565b6001600160a01b0380851660009081526020818152604080832094909455918516815291909120546200059b91839062000947620003de821b17901c565b6001600160a01b0383811660008181526020818152604091829020949094555184815290929186169160008051602062001a0b833981519152910160405180910390a3505050565b600081848411156200060a5760405162461bcd60e51b81526004016200029c919062000724565b5060006200061984866200077c565b95945050505050565b828054620006309062000796565b90600052602060002090601f0160209004810192826200065457600085556200069f565b82601f106200066f57805160ff19168380011785556200069f565b828001600101855582156200069f579182015b828111156200069f57825182559160200191906001019062000682565b50620006ad929150620006b1565b5090565b5b80821115620006ad5760008155600101620006b2565b600060208284031215620006db57600080fd5b81516001600160a01b03811681146200044157600080fd5b634e487b7160e01b600052601160045260246000fd5b600082198211156200071f576200071f620006f3565b500190565b600060208083528351808285015260005b81811015620007535785810183015185820160400152820162000735565b8181111562000766576000604083870101525b50601f01601f1916929092016040019392505050565b600082821015620007915762000791620006f3565b500390565b600181811c90821680620007ab57607f821691505b60208210811415620007cd57634e487b7160e01b600052602260045260246000fd5b50919050565b61120280620007e36000396000f3fe60806040526004361061014f5760003560e01c806370a08231116100b6578063a9059cbb1161006f578063a9059cbb146103ce578063ad5c4648146103ee578063cd3a29731461040e578063da09c72c1461042e578063dd62ed3e1461044e578063f2fde38b1461049457600080fd5b806370a0823114610310578063715018a6146103465780638bdb2afa1461035b5780638da5cb5b1461037b57806395d89b4114610399578063a457c2d7146103ae57600080fd5b8063313ce56711610108578063313ce5671461022d5780633950935114610249578063467abe0a14610269578063470624021461028957806349bd5a5e1461029f5780634fbee193146102d757600080fd5b806306fdde031461015b578063095ea7b31461018657806318160ddd146101b65780631d933a4a146101d557806323b872dd146101f75780632b14ca561461021757600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506101706104b4565b60405161017d9190610e59565b60405180910390f35b34801561019257600080fd5b506101a66101a1366004610eca565b610546565b604051901515815260200161017d565b3480156101c257600080fd5b506002545b60405190815260200161017d565b3480156101e157600080fd5b506101f56101f0366004610ef4565b61055d565b005b34801561020357600080fd5b506101a6610212366004610f0d565b6105d7565b34801561022357600080fd5b506101c7600b5481565b34801561023957600080fd5b506040516012815260200161017d565b34801561025557600080fd5b506101a6610264366004610eca565b610640565b34801561027557600080fd5b506101f5610284366004610ef4565b610676565b34801561029557600080fd5b506101c7600a5481565b3480156102ab57600080fd5b506006546102bf906001600160a01b031681565b6040516001600160a01b03909116815260200161017d565b3480156102e357600080fd5b506101a66102f2366004610f49565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561031c57600080fd5b506101c761032b366004610f49565b6001600160a01b031660009081526020819052604090205490565b34801561035257600080fd5b506101f56106e7565b34801561036757600080fd5b506008546102bf906001600160a01b031681565b34801561038757600080fd5b506005546001600160a01b03166102bf565b3480156103a557600080fd5b5061017061075b565b3480156103ba57600080fd5b506101a66103c9366004610eca565b61076a565b3480156103da57600080fd5b506101a66103e9366004610eca565b6107b9565b3480156103fa57600080fd5b506009546102bf906001600160a01b031681565b34801561041a57600080fd5b506101f5610429366004610f64565b6107c6565b34801561043a57600080fd5b506007546102bf906001600160a01b031681565b34801561045a57600080fd5b506101c7610469366004610fa8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104a057600080fd5b506101f56104af366004610f49565b61085c565b6060600380546104c390610fdb565b80601f01602080910402602001604051908101604052809291908181526020018280546104ef90610fdb565b801561053c5780601f106105115761010080835404028352916020019161053c565b820191906000526020600020905b81548152906001019060200180831161051f57829003601f168201915b5050505050905090565b6000610553338484610af9565b5060015b92915050565b6005546001600160a01b031633146105905760405162461bcd60e51b815260040161058790611016565b60405180910390fd5b600581106105d25760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b6044820152606401610587565b600b55565b60006105e4848484610c15565b610636843361063185604051806060016040528060288152602001611180602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610abf565b610af9565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105539185906106319086610947565b6005546001600160a01b031633146106a05760405162461bcd60e51b815260040161058790611016565b600581106106e25760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b6044820152606401610587565b600a55565b6005546001600160a01b031633146107115760405162461bcd60e51b815260040161058790611016565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546104c390610fdb565b60006105533384610631856040518060600160405280602581526020016111a8602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610abf565b6000610553338484610c15565b6007546001600160a01b031633146107dd57600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff19168315151790558015610812576108128333836109ad565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161084f911515815260200190565b60405180910390a2505050565b6005546001600160a01b031633146108865760405162461bcd60e51b815260040161058790611016565b6001600160a01b0381166108eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806109548385611061565b9050838110156109a65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610587565b9392505050565b6001600160a01b0383166109d35760405162461bcd60e51b815260040161058790611079565b6001600160a01b0382166109f95760405162461bcd60e51b8152600401610587906110be565b610a368160405180606001604052806026815260200161115a602691396001600160a01b0386166000908152602081905260409020549190610abf565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a659082610947565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b60008184841115610ae35760405162461bcd60e51b81526004016105879190610e59565b506000610af08486611101565b95945050505050565b6001600160a01b038316610b5b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b6001600160a01b038216610bbc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610587565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610ab2565b6001600160a01b038316610c3b5760405162461bcd60e51b815260040161058790611079565b6001600160a01b038216610c615760405162461bcd60e51b8152600401610587906110be565b80610c6b57505050565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610cad57506001600160a01b0383166000908152600c602052604090205460ff165b15610cb6575060005b60008115610d5d576006546001600160a01b0385811691161415610cfb57610cf46064610cee600b5486610d6f90919063ffffffff16565b90610dee565b9050610d2e565b6006546001600160a01b0386811691161415610d2e57610d2b6064610cee600a5486610d6f90919063ffffffff16565b90505b8015610d50578015610d45574715610d4557600080fd5b610d508530836109ad565b610d5a8184611101565b92505b610d688585856109ad565b5050505050565b600082610d7e57506000610557565b6000610d8a8385611118565b905082610d978583611137565b146109a65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610587565b60006109a683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610e4c5760405162461bcd60e51b81526004016105879190610e59565b506000610af08486611137565b600060208083528351808285015260005b81811015610e8657858101830151858201604001528201610e6a565b81811115610e98576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ec557600080fd5b919050565b60008060408385031215610edd57600080fd5b610ee683610eae565b946020939093013593505050565b600060208284031215610f0657600080fd5b5035919050565b600080600060608486031215610f2257600080fd5b610f2b84610eae565b9250610f3960208501610eae565b9150604084013590509250925092565b600060208284031215610f5b57600080fd5b6109a682610eae565b600080600060608486031215610f7957600080fd5b610f8284610eae565b925060208401358015158114610f9757600080fd5b929592945050506040919091013590565b60008060408385031215610fbb57600080fd5b610fc483610eae565b9150610fd260208401610eae565b90509250929050565b600181811c90821680610fef57607f821691505b6020821081141561101057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156110745761107461104b565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156111135761111361104b565b500390565b60008160001904831182151516156111325761113261104b565b500290565b60008261115457634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f206d66699fd52c843169f1014cecc72f47c1979687d411a23160d76ca0b95f664736f6c6343000809003345524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e6365ddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef
Deployed Bytecode
0x60806040526004361061014f5760003560e01c806370a08231116100b6578063a9059cbb1161006f578063a9059cbb146103ce578063ad5c4648146103ee578063cd3a29731461040e578063da09c72c1461042e578063dd62ed3e1461044e578063f2fde38b1461049457600080fd5b806370a0823114610310578063715018a6146103465780638bdb2afa1461035b5780638da5cb5b1461037b57806395d89b4114610399578063a457c2d7146103ae57600080fd5b8063313ce56711610108578063313ce5671461022d5780633950935114610249578063467abe0a14610269578063470624021461028957806349bd5a5e1461029f5780634fbee193146102d757600080fd5b806306fdde031461015b578063095ea7b31461018657806318160ddd146101b65780631d933a4a146101d557806323b872dd146101f75780632b14ca561461021757600080fd5b3661015657005b600080fd5b34801561016757600080fd5b506101706104b4565b60405161017d9190610e59565b60405180910390f35b34801561019257600080fd5b506101a66101a1366004610eca565b610546565b604051901515815260200161017d565b3480156101c257600080fd5b506002545b60405190815260200161017d565b3480156101e157600080fd5b506101f56101f0366004610ef4565b61055d565b005b34801561020357600080fd5b506101a6610212366004610f0d565b6105d7565b34801561022357600080fd5b506101c7600b5481565b34801561023957600080fd5b506040516012815260200161017d565b34801561025557600080fd5b506101a6610264366004610eca565b610640565b34801561027557600080fd5b506101f5610284366004610ef4565b610676565b34801561029557600080fd5b506101c7600a5481565b3480156102ab57600080fd5b506006546102bf906001600160a01b031681565b6040516001600160a01b03909116815260200161017d565b3480156102e357600080fd5b506101a66102f2366004610f49565b6001600160a01b03166000908152600c602052604090205460ff1690565b34801561031c57600080fd5b506101c761032b366004610f49565b6001600160a01b031660009081526020819052604090205490565b34801561035257600080fd5b506101f56106e7565b34801561036757600080fd5b506008546102bf906001600160a01b031681565b34801561038757600080fd5b506005546001600160a01b03166102bf565b3480156103a557600080fd5b5061017061075b565b3480156103ba57600080fd5b506101a66103c9366004610eca565b61076a565b3480156103da57600080fd5b506101a66103e9366004610eca565b6107b9565b3480156103fa57600080fd5b506009546102bf906001600160a01b031681565b34801561041a57600080fd5b506101f5610429366004610f64565b6107c6565b34801561043a57600080fd5b506007546102bf906001600160a01b031681565b34801561045a57600080fd5b506101c7610469366004610fa8565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b3480156104a057600080fd5b506101f56104af366004610f49565b61085c565b6060600380546104c390610fdb565b80601f01602080910402602001604051908101604052809291908181526020018280546104ef90610fdb565b801561053c5780601f106105115761010080835404028352916020019161053c565b820191906000526020600020905b81548152906001019060200180831161051f57829003601f168201915b5050505050905090565b6000610553338484610af9565b5060015b92915050565b6005546001600160a01b031633146105905760405162461bcd60e51b815260040161058790611016565b60405180910390fd5b600581106105d25760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b6044820152606401610587565b600b55565b60006105e4848484610c15565b610636843361063185604051806060016040528060288152602001611180602891396001600160a01b038a1660009081526001602090815260408083203384529091529020549190610abf565b610af9565b5060019392505050565b3360008181526001602090815260408083206001600160a01b038716845290915281205490916105539185906106319086610947565b6005546001600160a01b031633146106a05760405162461bcd60e51b815260040161058790611016565b600581106106e25760405162461bcd60e51b815260206004820152600f60248201526e43616e27742065786365656420352560881b6044820152606401610587565b600a55565b6005546001600160a01b031633146107115760405162461bcd60e51b815260040161058790611016565b6005546040516000916001600160a01b0316907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600580546001600160a01b0319169055565b6060600480546104c390610fdb565b60006105533384610631856040518060600160405280602581526020016111a8602591393360009081526001602090815260408083206001600160a01b038d1684529091529020549190610abf565b6000610553338484610c15565b6007546001600160a01b031633146107dd57600080fd5b6001600160a01b0383166000908152600c60205260409020805460ff19168315151790558015610812576108128333836109ad565b826001600160a01b03167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78360405161084f911515815260200190565b60405180910390a2505050565b6005546001600160a01b031633146108865760405162461bcd60e51b815260040161058790611016565b6001600160a01b0381166108eb5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610587565b6005546040516001600160a01b038084169216907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a3600580546001600160a01b0319166001600160a01b0392909216919091179055565b6000806109548385611061565b9050838110156109a65760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610587565b9392505050565b6001600160a01b0383166109d35760405162461bcd60e51b815260040161058790611079565b6001600160a01b0382166109f95760405162461bcd60e51b8152600401610587906110be565b610a368160405180606001604052806026815260200161115a602691396001600160a01b0386166000908152602081905260409020549190610abf565b6001600160a01b038085166000908152602081905260408082209390935590841681522054610a659082610947565b6001600160a01b038381166000818152602081815260409182902094909455518481529092918616917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91015b60405180910390a3505050565b60008184841115610ae35760405162461bcd60e51b81526004016105879190610e59565b506000610af08486611101565b95945050505050565b6001600160a01b038316610b5b5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610587565b6001600160a01b038216610bbc5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610587565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9259101610ab2565b6001600160a01b038316610c3b5760405162461bcd60e51b815260040161058790611079565b6001600160a01b038216610c615760405162461bcd60e51b8152600401610587906110be565b80610c6b57505050565b6001600160a01b0383166000908152600c602052604090205460019060ff1680610cad57506001600160a01b0383166000908152600c602052604090205460ff165b15610cb6575060005b60008115610d5d576006546001600160a01b0385811691161415610cfb57610cf46064610cee600b5486610d6f90919063ffffffff16565b90610dee565b9050610d2e565b6006546001600160a01b0386811691161415610d2e57610d2b6064610cee600a5486610d6f90919063ffffffff16565b90505b8015610d50578015610d45574715610d4557600080fd5b610d508530836109ad565b610d5a8184611101565b92505b610d688585856109ad565b5050505050565b600082610d7e57506000610557565b6000610d8a8385611118565b905082610d978583611137565b146109a65760405162461bcd60e51b815260206004820152602160248201527f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f6044820152607760f81b6064820152608401610587565b60006109a683836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f00000000000081525060008183610e4c5760405162461bcd60e51b81526004016105879190610e59565b506000610af08486611137565b600060208083528351808285015260005b81811015610e8657858101830151858201604001528201610e6a565b81811115610e98576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610ec557600080fd5b919050565b60008060408385031215610edd57600080fd5b610ee683610eae565b946020939093013593505050565b600060208284031215610f0657600080fd5b5035919050565b600080600060608486031215610f2257600080fd5b610f2b84610eae565b9250610f3960208501610eae565b9150604084013590509250925092565b600060208284031215610f5b57600080fd5b6109a682610eae565b600080600060608486031215610f7957600080fd5b610f8284610eae565b925060208401358015158114610f9757600080fd5b929592945050506040919091013590565b60008060408385031215610fbb57600080fd5b610fc483610eae565b9150610fd260208401610eae565b90509250929050565b600181811c90821680610fef57607f821691505b6020821081141561101057634e487b7160e01b600052602260045260246000fd5b50919050565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b634e487b7160e01b600052601160045260246000fd5b600082198211156110745761107461104b565b500190565b60208082526025908201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604082015264647265737360d81b606082015260800190565b60208082526023908201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260408201526265737360e81b606082015260800190565b6000828210156111135761111361104b565b500390565b60008160001904831182151516156111325761113261104b565b500290565b60008261115457634e487b7160e01b600052601260045260246000fd5b50049056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220f206d66699fd52c843169f1014cecc72f47c1979687d411a23160d76ca0b95f664736f6c63430008090033
Deployed Bytecode Sourcemap
21727:2800:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4693:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6860:169;;;;;;;;;;-1:-1:-1;6860:169:0;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;6860:169:0;1053:187:1;5813:108:0;;;;;;;;;;-1:-1:-1;5901:12:0;;5813:108;;;1391:25:1;;;1379:2;1364:18;5813:108:0;1245:177:1;22856:148:0;;;;;;;;;;-1:-1:-1;22856:148:0;;;;;:::i;:::-;;:::i;:::-;;7511:355;;;;;;;;;;-1:-1:-1;7511:355:0;;;;;:::i;:::-;;:::i;22057:26::-;;;;;;;;;;;;;;;;5655:93;;;;;;;;;;-1:-1:-1;5655:93:0;;5738:2;2087:36:1;;2075:2;2060:18;5655:93:0;1945:184:1;8275:218:0;;;;;;;;;;-1:-1:-1;8275:218:0;;;;;:::i;:::-;;:::i;22701:143::-;;;;;;;;;;-1:-1:-1;22701:143:0;;;;;:::i;:::-;;:::i;22025:25::-;;;;;;;;;;;;;;;;21807:28;;;;;;;;;;-1:-1:-1;21807:28:0;;;;-1:-1:-1;;;;;21807:28:0;;;;;;-1:-1:-1;;;;;2298:32:1;;;2280:51;;2268:2;2253:18;21807:28:0;2134:203:1;23328:125:0;;;;;;;;;;-1:-1:-1;23328:125:0;;;;;:::i;:::-;-1:-1:-1;;;;;23417:28:0;23393:4;23417:28;;;:19;:28;;;;;;;;;23328:125;5984:127;;;;;;;;;;-1:-1:-1;5984:127:0;;;;;:::i;:::-;-1:-1:-1;;;;;6085:18:0;6058:7;6085:18;;;;;;;;;;;;5984:127;19162:148;;;;;;;;;;;;;:::i;21871:74::-;;;;;;;;;;-1:-1:-1;21871:74:0;;;;-1:-1:-1;;;;;21871:74:0;;;18520:79;;;;;;;;;;-1:-1:-1;18585:6:0;;-1:-1:-1;;;;;18585:6:0;18520:79;;4912:104;;;;;;;;;;;;;:::i;8996:269::-;;;;;;;;;;-1:-1:-1;8996:269:0;;;;;:::i;:::-;;:::i;6324:175::-;;;;;;;;;;-1:-1:-1;6324:175:0;;;;;:::i;:::-;;:::i;21952:64::-;;;;;;;;;;-1:-1:-1;21952:64:0;;;;-1:-1:-1;;;;;21952:64:0;;;23012:305;;;;;;;;;;-1:-1:-1;23012:305:0;;;;;:::i;:::-;;:::i;21842:22::-;;;;;;;;;;-1:-1:-1;21842:22:0;;;;-1:-1:-1;;;;;21842:22:0;;;6562:151;;;;;;;;;;-1:-1:-1;6562:151:0;;;;;:::i;:::-;-1:-1:-1;;;;;6678:18:0;;;6651:7;6678:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;6562:151;19465:244;;;;;;;;;;-1:-1:-1;19465:244:0;;;;;:::i;:::-;;:::i;4693:100::-;4747:13;4780:5;4773:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4693:100;:::o;6860:169::-;6943:4;6960:39;385:10;6983:7;6992:6;6960:8;:39::i;:::-;-1:-1:-1;7017:4:0;6860:169;;;;;:::o;22856:148::-;18732:6;;-1:-1:-1;;;;;18732:6:0;385:10;18732:22;18724:67;;;;-1:-1:-1;;;18724:67:0;;;;;;;:::i;:::-;;;;;;;;;22946:1:::1;22935:8;:12;22927:40;;;::::0;-1:-1:-1;;;22927:40:0;;4166:2:1;22927:40:0::1;::::0;::::1;4148:21:1::0;4205:2;4185:18;;;4178:30;-1:-1:-1;;;4224:18:1;;;4217:45;4279:18;;22927:40:0::1;3964:339:1::0;22927:40:0::1;22978:7;:18:::0;22856:148::o;7511:355::-;7651:4;7668:36;7678:6;7686:9;7697:6;7668:9;:36::i;:::-;7715:121;7724:6;385:10;7746:89;7784:6;7746:89;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;7746:19:0;;;;;;:11;:19;;;;;;;;385:10;7746:33;;;;;;;;;;:37;:89::i;:::-;7715:8;:121::i;:::-;-1:-1:-1;7854:4:0;7511:355;;;;;:::o;8275:218::-;385:10;8363:4;8412:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;8412:34:0;;;;;;;;;;8363:4;;8380:83;;8403:7;;8412:50;;8451:10;8412:38;:50::i;22701:143::-;18732:6;;-1:-1:-1;;;;;18732:6:0;385:10;18732:22;18724:67;;;;-1:-1:-1;;;18724:67:0;;;;;;;:::i;:::-;22788:1:::1;22778:7;:11;22770:39;;;::::0;-1:-1:-1;;;22770:39:0;;4166:2:1;22770:39:0::1;::::0;::::1;4148:21:1::0;4205:2;4185:18;;;4178:30;-1:-1:-1;;;4224:18:1;;;4217:45;4279:18;;22770:39:0::1;3964:339:1::0;22770:39:0::1;22820:6;:16:::0;22701:143::o;19162:148::-;18732:6;;-1:-1:-1;;;;;18732:6:0;385:10;18732:22;18724:67;;;;-1:-1:-1;;;18724:67:0;;;;;;;:::i;:::-;19253:6:::1;::::0;19232:40:::1;::::0;19269:1:::1;::::0;-1:-1:-1;;;;;19253:6:0::1;::::0;19232:40:::1;::::0;19269:1;;19232:40:::1;19283:6;:19:::0;;-1:-1:-1;;;;;;19283:19:0::1;::::0;;19162:148::o;4912:104::-;4968:13;5001:7;4994:14;;;;;:::i;8996:269::-;9089:4;9106:129;385:10;9129:7;9138:96;9177:15;9138:96;;;;;;;;;;;;;;;;;385:10;9138:25;;;;:11;:25;;;;;;;;-1:-1:-1;;;;;9138:34:0;;;;;;;;;;;;:38;:96::i;6324:175::-;6410:4;6427:42;385:10;6451:9;6462:6;6427:9;:42::i;23012:305::-;23111:7;;-1:-1:-1;;;;;23111:7:0;23122:10;23111:21;23103:30;;;;;;-1:-1:-1;;;;;23144:28:0;;;;;;:19;:28;;;;;:39;;-1:-1:-1;;23144:39:0;;;;;;;23198:10;;23194:66;;23213:44;23229:7;23238:10;23250:6;23213:15;:44::i;:::-;23291:7;-1:-1:-1;;;;;23275:34:0;;23300:8;23275:34;;;;1218:14:1;1211:22;1193:41;;1181:2;1166:18;;1053:187;23275:34:0;;;;;;;;23012:305;;;:::o;19465:244::-;18732:6;;-1:-1:-1;;;;;18732:6:0;385:10;18732:22;18724:67;;;;-1:-1:-1;;;18724:67:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;19554:22:0;::::1;19546:73;;;::::0;-1:-1:-1;;;19546:73:0;;4510:2:1;19546:73:0::1;::::0;::::1;4492:21:1::0;4549:2;4529:18;;;4522:30;4588:34;4568:18;;;4561:62;-1:-1:-1;;;4639:18:1;;;4632:36;4685:19;;19546:73:0::1;4308:402:1::0;19546:73:0::1;19656:6;::::0;19635:38:::1;::::0;-1:-1:-1;;;;;19635:38:0;;::::1;::::0;19656:6:::1;::::0;19635:38:::1;::::0;19656:6:::1;::::0;19635:38:::1;19684:6;:17:::0;;-1:-1:-1;;;;;;19684:17:0::1;-1:-1:-1::0;;;;;19684:17:0;;;::::1;::::0;;;::::1;::::0;;19465:244::o;13560:181::-;13618:7;;13650:5;13654:1;13650;:5;:::i;:::-;13638:17;;13679:1;13674;:6;;13666:46;;;;-1:-1:-1;;;13666:46:0;;5182:2:1;13666:46:0;;;5164:21:1;5221:2;5201:18;;;5194:30;5260:29;5240:18;;;5233:57;5307:18;;13666:46:0;4980:351:1;13666:46:0;13732:1;13560:181;-1:-1:-1;;;13560:181:0:o;9755:573::-;-1:-1:-1;;;;;9895:20:0;;9887:70;;;;-1:-1:-1;;;9887:70:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;9976:23:0;;9968:71;;;;-1:-1:-1;;;9968:71:0;;;;;;;:::i;:::-;10132;10154:6;10132:71;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;10132:17:0;;:9;:17;;;;;;;;;;;;:71;:21;:71::i;:::-;-1:-1:-1;;;;;10112:17:0;;;:9;:17;;;;;;;;;;;:91;;;;10237:20;;;;;;;:32;;10262:6;10237:24;:32::i;:::-;-1:-1:-1;;;;;10214:20:0;;;:9;:20;;;;;;;;;;;;:55;;;;10285:35;1391:25:1;;;10214:20:0;;10285:35;;;;;;1364:18:1;10285:35:0;;;;;;;;9755:573;;;:::o;14463:192::-;14549:7;14585:12;14577:6;;;;14569:29;;;;-1:-1:-1;;;14569:29:0;;;;;;;;:::i;:::-;-1:-1:-1;14609:9:0;14621:5;14625:1;14621;:5;:::i;:::-;14609:17;14463:192;-1:-1:-1;;;;;14463:192:0:o;12182:380::-;-1:-1:-1;;;;;12318:19:0;;12310:68;;;;-1:-1:-1;;;12310:68:0;;6478:2:1;12310:68:0;;;6460:21:1;6517:2;6497:18;;;6490:30;6556:34;6536:18;;;6529:62;-1:-1:-1;;;6607:18:1;;;6600:34;6651:19;;12310:68:0;6276:400:1;12310:68:0;-1:-1:-1;;;;;12397:21:0;;12389:68;;;;-1:-1:-1;;;12389:68:0;;6883:2:1;12389:68:0;;;6865:21:1;6922:2;6902:18;;;6895:30;6961:34;6941:18;;;6934:62;-1:-1:-1;;;7012:18:1;;;7005:32;7054:19;;12389:68:0;6681:398:1;12389:68:0;-1:-1:-1;;;;;12470:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;12522:32;;1391:25:1;;;12522:32:0;;1364:18:1;12522:32:0;1245:177:1;23465:1059:0;-1:-1:-1;;;;;23597:18:0;;23589:68;;;;-1:-1:-1;;;23589:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;23676:16:0;;23668:64;;;;-1:-1:-1;;;23668:64:0;;;;;;;:::i;:::-;23756:11;23753:49;;23465:1059;;;:::o;23753:49::-;-1:-1:-1;;;;;23865:25:0;;23830:12;23865:25;;;:19;:25;;;;;;23845:4;;23865:25;;;:52;;-1:-1:-1;;;;;;23894:23:0;;;;;;:19;:23;;;;;;;;23865:52;23862:99;;;-1:-1:-1;23944:5:0;23862:99;23973:12;24003:7;24000:471;;;24043:13;;-1:-1:-1;;;;;24037:19:0;;;24043:13;;24037:19;24033:205;;;24083:28;24107:3;24083:19;24094:7;;24083:6;:10;;:19;;;;:::i;:::-;:23;;:28::i;:::-;24076:35;;24033:205;;;24157:13;;-1:-1:-1;;;;;24149:21:0;;;24157:13;;24149:21;24146:92;;;24195:27;24218:3;24195:18;24206:6;;24195;:10;;:18;;;;:::i;:27::-;24188:34;;24146:92;24267:8;;24264:161;;24303:8;;24299:49;;24321:21;:26;24313:35;;;;;;24367:42;24383:4;24397;24404;24367:15;:42::i;:::-;24445:14;24455:4;24445:14;;:::i;:::-;;;24000:471;24483:33;24499:4;24505:2;24509:6;24483:15;:33::i;:::-;23578:946;;23465:1059;;;:::o;14914:471::-;14972:7;15217:6;15213:47;;-1:-1:-1;15247:1:0;15240:8;;15213:47;15272:9;15284:5;15288:1;15284;:5;:::i;:::-;15272:17;-1:-1:-1;15317:1:0;15308:5;15312:1;15272:17;15308:5;:::i;:::-;:10;15300:56;;;;-1:-1:-1;;;15300:56:0;;7681:2:1;15300:56:0;;;7663:21:1;7720:2;7700:18;;;7693:30;7759:34;7739:18;;;7732:62;-1:-1:-1;;;7810:18:1;;;7803:31;7851:19;;15300:56:0;7479:397:1;15861:132:0;15919:7;15946:39;15950:1;15953;15946:39;;;;;;;;;;;;;;;;;16575:7;16610:12;16603:5;16595:28;;;;-1:-1:-1;;;16595:28:0;;;;;;;;:::i;:::-;-1:-1:-1;16634:9:0;16646:5;16650:1;16646;:5;:::i;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:180::-;1486:6;1539:2;1527:9;1518:7;1514:23;1510:32;1507:52;;;1555:1;1552;1545:12;1507:52;-1:-1:-1;1578:23:1;;1427:180;-1:-1:-1;1427:180:1:o;1612:328::-;1689:6;1697;1705;1758:2;1746:9;1737:7;1733:23;1729:32;1726:52;;;1774:1;1771;1764:12;1726:52;1797:29;1816:9;1797:29;:::i;:::-;1787:39;;1845:38;1879:2;1868:9;1864:18;1845:38;:::i;:::-;1835:48;;1930:2;1919:9;1915:18;1902:32;1892:42;;1612:328;;;;;:::o;2342:186::-;2401:6;2454:2;2442:9;2433:7;2429:23;2425:32;2422:52;;;2470:1;2467;2460:12;2422:52;2493:29;2512:9;2493:29;:::i;2533:415::-;2607:6;2615;2623;2676:2;2664:9;2655:7;2651:23;2647:32;2644:52;;;2692:1;2689;2682:12;2644:52;2715:29;2734:9;2715:29;:::i;:::-;2705:39;;2794:2;2783:9;2779:18;2766:32;2841:5;2834:13;2827:21;2820:5;2817:32;2807:60;;2863:1;2860;2853:12;2807:60;2533:415;;2886:5;;-1:-1:-1;;;2938:2:1;2923:18;;;;2910:32;;2533:415::o;2953:260::-;3021:6;3029;3082:2;3070:9;3061:7;3057:23;3053:32;3050:52;;;3098:1;3095;3088:12;3050:52;3121:29;3140:9;3121:29;:::i;:::-;3111:39;;3169:38;3203:2;3192:9;3188:18;3169:38;:::i;:::-;3159:48;;2953:260;;;;;:::o;3218:380::-;3297:1;3293:12;;;;3340;;;3361:61;;3415:4;3407:6;3403:17;3393:27;;3361:61;3468:2;3460:6;3457:14;3437:18;3434:38;3431:161;;;3514:10;3509:3;3505:20;3502:1;3495:31;3549:4;3546:1;3539:15;3577:4;3574:1;3567:15;3431:161;;3218:380;;;:::o;3603:356::-;3805:2;3787:21;;;3824:18;;;3817:30;3883:34;3878:2;3863:18;;3856:62;3950:2;3935:18;;3603:356::o;4715:127::-;4776:10;4771:3;4767:20;4764:1;4757:31;4807:4;4804:1;4797:15;4831:4;4828:1;4821:15;4847:128;4887:3;4918:1;4914:6;4911:1;4908:13;4905:39;;;4924:18;;:::i;:::-;-1:-1:-1;4960:9:1;;4847:128::o;5336:401::-;5538:2;5520:21;;;5577:2;5557:18;;;5550:30;5616:34;5611:2;5596:18;;5589:62;-1:-1:-1;;;5682:2:1;5667:18;;5660:35;5727:3;5712:19;;5336:401::o;5742:399::-;5944:2;5926:21;;;5983:2;5963:18;;;5956:30;6022:34;6017:2;6002:18;;5995:62;-1:-1:-1;;;6088:2:1;6073:18;;6066:33;6131:3;6116:19;;5742:399::o;6146:125::-;6186:4;6214:1;6211;6208:8;6205:34;;;6219:18;;:::i;:::-;-1:-1:-1;6256:9:1;;6146:125::o;7084:168::-;7124:7;7190:1;7186;7182:6;7178:14;7175:1;7172:21;7167:1;7160:9;7153:17;7149:45;7146:71;;;7197:18;;:::i;:::-;-1:-1:-1;7237:9:1;;7084:168::o;7257:217::-;7297:1;7323;7313:132;;7367:10;7362:3;7358:20;7355:1;7348:31;7402:4;7399:1;7392:15;7430:4;7427:1;7420:15;7313:132;-1:-1:-1;7459:9:1;;7257:217::o
Swarm Source
ipfs://f206d66699fd52c843169f1014cecc72f47c1979687d411a23160d76ca0b95f6
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.