ERC-20
Overview
Max Total Supply
696,969,696,969 DN
Holders
30
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
13,068,028,700.278171668047420477 DNValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
DN
Compiler Version
v0.8.7+commit.e28d00a7
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-10-27 */ // SPDX-License-Identifier: MIT // DEEZ NUTS ROULETTE // BUY TIME - 69 ETH BLOCKS (<15 mins) // ONLY BUYS ON DEEZ NUTS FOR FIRST 69 BLOCKS, // THEN OPEN TRADING IS ENABLED AUTOMATICALLY // EARLIER BUYS = MORE OF DEEZ NUTS // GAME CANNOT BE PAUSED OR RESTARTED // File: @openzeppelin/[email protected]/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/[email protected]/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. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/[email protected]/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); /** * @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); } // File: @openzeppelin/[email protected]/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/[email protected]/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; } _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; _balances[account] += amount; emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; } _totalSupply -= amount; emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: DN.sol pragma solidity ^0.8.4; contract DN is ERC20, Ownable { uint public gameStartBlock; uint public openRouletteBlock; uint public blockDelay = 69; bool public isRouletteStarted = false; bool public isOpenTrading = false; address public uniV2Router = 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D; mapping(address => bool) private earlyTransferAllowed; constructor() ERC20("DEEZ NUTS", "DN") { _mint(msg.sender, 696969696969 * 10 ** decimals()); earlyTransferAllowed[msg.sender] = true; earlyTransferAllowed[uniV2Router] = true; } function _transfer(address from, address to, uint256 amount) internal override { require(isRouletteStarted || earlyTransferAllowed[msg.sender], "Game not started yet"); if (block.number >= openRouletteBlock){ isOpenTrading = true; } if (!isOpenTrading){ require(to != uniV2Router, "Open Trading not started"); } super._transfer(from, to, amount); } function enableBuys() external onlyOwner { isRouletteStarted = true; gameStartBlock = block.number; openRouletteBlock = gameStartBlock + blockDelay; } function setEarlyAllowed (address _account) public onlyOwner { earlyTransferAllowed[_account] = false; } function removeEarlyAllowed (address _account) public onlyOwner { earlyTransferAllowed[_account] = false; } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"blockDelay","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"enableBuys","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gameStartBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isOpenTrading","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRouletteStarted","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":"openRouletteBlock","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"removeEarlyAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_account","type":"address"}],"name":"setEarlyAllowed","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"},{"inputs":[],"name":"uniV2Router","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
608060405260456008556000600960006101000a81548160ff0219169083151502179055506000600960016101000a81548160ff021916908315150217905550737a250d5630b4cf539739df2c5dacb4c659f2488d600960026101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620000a157600080fd5b506040518060400160405280600981526020017f4445455a204e55545300000000000000000000000000000000000000000000008152506040518060400160405280600281526020017f444e000000000000000000000000000000000000000000000000000000000000815250816003908051906020019062000126929190620004d5565b5080600490805190602001906200013f929190620004d5565b50505062000162620001566200027b60201b60201c565b6200028360201b60201c565b620001a333620001776200034960201b60201c565b600a620001859190620006c5565b64a246a196c962000197919062000802565b6200035260201b60201c565b6001600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600a6000600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555062000944565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415620003c5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bc90620005bd565b60405180910390fd5b620003d960008383620004cb60201b60201c565b8060026000828254620003ed91906200060d565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546200044491906200060d565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620004ab9190620005df565b60405180910390a3620004c760008383620004d060201b60201c565b5050565b505050565b505050565b828054620004e3906200087a565b90600052602060002090601f01602090048101928262000507576000855562000553565b82601f106200052257805160ff191683800117855562000553565b8280016001018555821562000553579182015b828111156200055257825182559160200191906001019062000535565b5b50905062000562919062000566565b5090565b5b808211156200058157600081600090555060010162000567565b5090565b600062000594601f83620005fc565b9150620005a1826200091b565b602082019050919050565b620005b78162000863565b82525050565b60006020820190508181036000830152620005d88162000585565b9050919050565b6000602082019050620005f66000830184620005ac565b92915050565b600082825260208201905092915050565b60006200061a8262000863565b9150620006278362000863565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156200065f576200065e620008b0565b5b828201905092915050565b6000808291508390505b6001851115620006bc57808604811115620006945762000693620008b0565b5b6001851615620006a45780820291505b8081029050620006b4856200090e565b945062000674565b94509492505050565b6000620006d28262000863565b9150620006df836200086d565b92506200070e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000716565b905092915050565b600082620007285760019050620007fb565b81620007385760009050620007fb565b81600181146200075157600281146200075c5762000792565b6001915050620007fb565b60ff841115620007715762000770620008b0565b5b8360020a9150848211156200078b576200078a620008b0565b5b50620007fb565b5060208310610133831016604e8410600b8410161715620007cc5782820a905083811115620007c657620007c5620008b0565b5b620007fb565b620007db84848460016200066a565b92509050818404811115620007f557620007f4620008b0565b5b81810290505b9392505050565b60006200080f8262000863565b91506200081c8362000863565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615620008585762000857620008b0565b5b828202905092915050565b6000819050919050565b600060ff82169050919050565b600060028204905060018216806200089357607f821691505b60208210811415620008aa57620008a9620008df565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60008160011c9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b611b3080620009546000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80636e3455d6116100c357806395d89b411161007c57806395d89b411461036c578063a457c2d71461038a578063a9059cbb146103ba578063d98f6088146103ea578063dd62ed3e14610408578063f2fde38b146104385761014d565b80636e3455d6146102d057806370a08231146102da578063715018a61461030a5780637cd237d1146103145780638da5cb5b14610330578063958c2e521461034e5761014d565b806323b872dd1161011557806323b872dd146101f8578063313ce567146102285780633804c73d146102465780633950935114610264578063539df70014610294578063688140f4146102b25761014d565b806306fdde0314610152578063095ea7b314610170578063154b90fb146101a057806318160ddd146101bc5780632171f26c146101da575b600080fd5b61015a610454565b60405161016791906114a7565b60405180910390f35b61018a6004803603810190610185919061123b565b6104e6565b604051610197919061148c565b60405180910390f35b6101ba60048036038101906101b5919061117b565b610509565b005b6101c461056c565b6040516101d19190611629565b60405180910390f35b6101e2610576565b6040516101ef919061148c565b60405180910390f35b610212600480360381019061020d91906111e8565b610589565b60405161021f919061148c565b60405180910390f35b6102306105b8565b60405161023d9190611644565b60405180910390f35b61024e6105c1565b60405161025b9190611629565b60405180910390f35b61027e6004803603810190610279919061123b565b6105c7565b60405161028b919061148c565b60405180910390f35b61029c6105fe565b6040516102a99190611629565b60405180910390f35b6102ba610604565b6040516102c7919061148c565b60405180910390f35b6102d8610617565b005b6102f460048036038101906102ef919061117b565b610659565b6040516103019190611629565b60405180910390f35b6103126106a1565b005b61032e6004803603810190610329919061117b565b6106b5565b005b610338610718565b6040516103459190611471565b60405180910390f35b610356610742565b6040516103639190611471565b60405180910390f35b610374610768565b60405161038191906114a7565b60405180910390f35b6103a4600480360381019061039f919061123b565b6107fa565b6040516103b1919061148c565b60405180910390f35b6103d460048036038101906103cf919061123b565b610871565b6040516103e1919061148c565b60405180910390f35b6103f2610894565b6040516103ff9190611629565b60405180910390f35b610422600480360381019061041d91906111a8565b61089a565b60405161042f9190611629565b60405180910390f35b610452600480360381019061044d919061117b565b610921565b005b60606003805461046390611759565b80601f016020809104026020016040519081016040528092919081815260200182805461048f90611759565b80156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b6000806104f16109a5565b90506104fe8185856109ad565b600191505092915050565b610511610b78565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600254905090565b600960019054906101000a900460ff1681565b6000806105946109a5565b90506105a1858285610bf6565b6105ac858585610c82565b60019150509392505050565b60006012905090565b60065481565b6000806105d26109a5565b90506105f38185856105e4858961089a565b6105ee919061167b565b6109ad565b600191505092915050565b60075481565b600960009054906101000a900460ff1681565b61061f610b78565b6001600960006101000a81548160ff02191690831515021790555043600681905550600854600654610651919061167b565b600781905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a9610b78565b6106b36000610e00565b565b6106bd610b78565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461077790611759565b80601f01602080910402602001604051908101604052809291908181526020018280546107a390611759565b80156107f05780601f106107c5576101008083540402835291602001916107f0565b820191906000526020600020905b8154815290600101906020018083116107d357829003601f168201915b5050505050905090565b6000806108056109a5565b90506000610813828661089a565b905083811015610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90611609565b60405180910390fd5b61086582868684036109ad565b60019250505092915050565b60008061087c6109a5565b9050610889818585610c82565b600191505092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610929610b78565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610990906114e9565b60405180910390fd5b6109a281610e00565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a14906115e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611509565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6b9190611629565b60405180910390a3505050565b610b806109a5565b73ffffffffffffffffffffffffffffffffffffffff16610b9e610718565b73ffffffffffffffffffffffffffffffffffffffff1614610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90611589565b60405180910390fd5b565b6000610c02848461089a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7c5781811015610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611549565b60405180910390fd5b610c7b84848484036109ad565b5b50505050565b600960009054906101000a900460ff1680610ce65750600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c906115c9565b60405180910390fd5b6007544310610d4a576001600960016101000a81548160ff0219169083151502179055505b600960019054906101000a900460ff16610df057600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690611529565b60405180910390fd5b5b610dfb838383610ec6565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d906115a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d906114c9565b60405180910390fd5b610fb1838383611147565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90611569565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110ca919061167b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161112e9190611629565b60405180910390a361114184848461114c565b50505050565b505050565b505050565b60008135905061116081611acc565b92915050565b60008135905061117581611ae3565b92915050565b600060208284031215611191576111906117e9565b5b600061119f84828501611151565b91505092915050565b600080604083850312156111bf576111be6117e9565b5b60006111cd85828601611151565b92505060206111de85828601611151565b9150509250929050565b600080600060608486031215611201576112006117e9565b5b600061120f86828701611151565b935050602061122086828701611151565b925050604061123186828701611166565b9150509250925092565b60008060408385031215611252576112516117e9565b5b600061126085828601611151565b925050602061127185828601611166565b9150509250929050565b611284816116d1565b82525050565b611293816116e3565b82525050565b60006112a48261165f565b6112ae818561166a565b93506112be818560208601611726565b6112c7816117ee565b840191505092915050565b60006112df60238361166a565b91506112ea826117ff565b604082019050919050565b600061130260268361166a565b915061130d8261184e565b604082019050919050565b600061132560228361166a565b91506113308261189d565b604082019050919050565b600061134860188361166a565b9150611353826118ec565b602082019050919050565b600061136b601d8361166a565b915061137682611915565b602082019050919050565b600061138e60268361166a565b91506113998261193e565b604082019050919050565b60006113b160208361166a565b91506113bc8261198d565b602082019050919050565b60006113d460258361166a565b91506113df826119b6565b604082019050919050565b60006113f760148361166a565b915061140282611a05565b602082019050919050565b600061141a60248361166a565b915061142582611a2e565b604082019050919050565b600061143d60258361166a565b915061144882611a7d565b604082019050919050565b61145c8161170f565b82525050565b61146b81611719565b82525050565b6000602082019050611486600083018461127b565b92915050565b60006020820190506114a1600083018461128a565b92915050565b600060208201905081810360008301526114c18184611299565b905092915050565b600060208201905081810360008301526114e2816112d2565b9050919050565b60006020820190508181036000830152611502816112f5565b9050919050565b6000602082019050818103600083015261152281611318565b9050919050565b600060208201905081810360008301526115428161133b565b9050919050565b600060208201905081810360008301526115628161135e565b9050919050565b6000602082019050818103600083015261158281611381565b9050919050565b600060208201905081810360008301526115a2816113a4565b9050919050565b600060208201905081810360008301526115c2816113c7565b9050919050565b600060208201905081810360008301526115e2816113ea565b9050919050565b600060208201905081810360008301526116028161140d565b9050919050565b6000602082019050818103600083015261162281611430565b9050919050565b600060208201905061163e6000830184611453565b92915050565b60006020820190506116596000830184611462565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116868261170f565b91506116918361170f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116c6576116c561178b565b5b828201905092915050565b60006116dc826116ef565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611744578082015181840152602081019050611729565b83811115611753576000848401525b50505050565b6000600282049050600182168061177157607f821691505b60208210811415611785576117846117ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f70656e2054726164696e67206e6f7420737461727465640000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f47616d65206e6f74207374617274656420796574000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611ad5816116d1565b8114611ae057600080fd5b50565b611aec8161170f565b8114611af757600080fd5b5056fea2646970667358221220807f181275013f755ae7161286ff7b4df4df18dd9ae709982e4bb60e1e89a33764736f6c63430008070033
Deployed Bytecode
0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80636e3455d6116100c357806395d89b411161007c57806395d89b411461036c578063a457c2d71461038a578063a9059cbb146103ba578063d98f6088146103ea578063dd62ed3e14610408578063f2fde38b146104385761014d565b80636e3455d6146102d057806370a08231146102da578063715018a61461030a5780637cd237d1146103145780638da5cb5b14610330578063958c2e521461034e5761014d565b806323b872dd1161011557806323b872dd146101f8578063313ce567146102285780633804c73d146102465780633950935114610264578063539df70014610294578063688140f4146102b25761014d565b806306fdde0314610152578063095ea7b314610170578063154b90fb146101a057806318160ddd146101bc5780632171f26c146101da575b600080fd5b61015a610454565b60405161016791906114a7565b60405180910390f35b61018a6004803603810190610185919061123b565b6104e6565b604051610197919061148c565b60405180910390f35b6101ba60048036038101906101b5919061117b565b610509565b005b6101c461056c565b6040516101d19190611629565b60405180910390f35b6101e2610576565b6040516101ef919061148c565b60405180910390f35b610212600480360381019061020d91906111e8565b610589565b60405161021f919061148c565b60405180910390f35b6102306105b8565b60405161023d9190611644565b60405180910390f35b61024e6105c1565b60405161025b9190611629565b60405180910390f35b61027e6004803603810190610279919061123b565b6105c7565b60405161028b919061148c565b60405180910390f35b61029c6105fe565b6040516102a99190611629565b60405180910390f35b6102ba610604565b6040516102c7919061148c565b60405180910390f35b6102d8610617565b005b6102f460048036038101906102ef919061117b565b610659565b6040516103019190611629565b60405180910390f35b6103126106a1565b005b61032e6004803603810190610329919061117b565b6106b5565b005b610338610718565b6040516103459190611471565b60405180910390f35b610356610742565b6040516103639190611471565b60405180910390f35b610374610768565b60405161038191906114a7565b60405180910390f35b6103a4600480360381019061039f919061123b565b6107fa565b6040516103b1919061148c565b60405180910390f35b6103d460048036038101906103cf919061123b565b610871565b6040516103e1919061148c565b60405180910390f35b6103f2610894565b6040516103ff9190611629565b60405180910390f35b610422600480360381019061041d91906111a8565b61089a565b60405161042f9190611629565b60405180910390f35b610452600480360381019061044d919061117b565b610921565b005b60606003805461046390611759565b80601f016020809104026020016040519081016040528092919081815260200182805461048f90611759565b80156104dc5780601f106104b1576101008083540402835291602001916104dc565b820191906000526020600020905b8154815290600101906020018083116104bf57829003601f168201915b5050505050905090565b6000806104f16109a5565b90506104fe8185856109ad565b600191505092915050565b610511610b78565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600254905090565b600960019054906101000a900460ff1681565b6000806105946109a5565b90506105a1858285610bf6565b6105ac858585610c82565b60019150509392505050565b60006012905090565b60065481565b6000806105d26109a5565b90506105f38185856105e4858961089a565b6105ee919061167b565b6109ad565b600191505092915050565b60075481565b600960009054906101000a900460ff1681565b61061f610b78565b6001600960006101000a81548160ff02191690831515021790555043600681905550600854600654610651919061167b565b600781905550565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6106a9610b78565b6106b36000610e00565b565b6106bd610b78565b6000600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60606004805461077790611759565b80601f01602080910402602001604051908101604052809291908181526020018280546107a390611759565b80156107f05780601f106107c5576101008083540402835291602001916107f0565b820191906000526020600020905b8154815290600101906020018083116107d357829003601f168201915b5050505050905090565b6000806108056109a5565b90506000610813828661089a565b905083811015610858576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161084f90611609565b60405180910390fd5b61086582868684036109ad565b60019250505092915050565b60008061087c6109a5565b9050610889818585610c82565b600191505092915050565b60085481565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610929610b78565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610999576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610990906114e9565b60405180910390fd5b6109a281610e00565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610a1d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a14906115e9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610a8d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8490611509565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b6b9190611629565b60405180910390a3505050565b610b806109a5565b73ffffffffffffffffffffffffffffffffffffffff16610b9e610718565b73ffffffffffffffffffffffffffffffffffffffff1614610bf4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610beb90611589565b60405180910390fd5b565b6000610c02848461089a565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610c7c5781811015610c6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6590611549565b60405180910390fd5b610c7b84848484036109ad565b5b50505050565b600960009054906101000a900460ff1680610ce65750600a60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b610d25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1c906115c9565b60405180910390fd5b6007544310610d4a576001600960016101000a81548160ff0219169083151502179055505b600960019054906101000a900460ff16610df057600960029054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610def576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610de690611529565b60405180910390fd5b5b610dfb838383610ec6565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f36576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2d906115a9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fa6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9d906114c9565b60405180910390fd5b610fb1838383611147565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611037576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102e90611569565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546110ca919061167b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161112e9190611629565b60405180910390a361114184848461114c565b50505050565b505050565b505050565b60008135905061116081611acc565b92915050565b60008135905061117581611ae3565b92915050565b600060208284031215611191576111906117e9565b5b600061119f84828501611151565b91505092915050565b600080604083850312156111bf576111be6117e9565b5b60006111cd85828601611151565b92505060206111de85828601611151565b9150509250929050565b600080600060608486031215611201576112006117e9565b5b600061120f86828701611151565b935050602061122086828701611151565b925050604061123186828701611166565b9150509250925092565b60008060408385031215611252576112516117e9565b5b600061126085828601611151565b925050602061127185828601611166565b9150509250929050565b611284816116d1565b82525050565b611293816116e3565b82525050565b60006112a48261165f565b6112ae818561166a565b93506112be818560208601611726565b6112c7816117ee565b840191505092915050565b60006112df60238361166a565b91506112ea826117ff565b604082019050919050565b600061130260268361166a565b915061130d8261184e565b604082019050919050565b600061132560228361166a565b91506113308261189d565b604082019050919050565b600061134860188361166a565b9150611353826118ec565b602082019050919050565b600061136b601d8361166a565b915061137682611915565b602082019050919050565b600061138e60268361166a565b91506113998261193e565b604082019050919050565b60006113b160208361166a565b91506113bc8261198d565b602082019050919050565b60006113d460258361166a565b91506113df826119b6565b604082019050919050565b60006113f760148361166a565b915061140282611a05565b602082019050919050565b600061141a60248361166a565b915061142582611a2e565b604082019050919050565b600061143d60258361166a565b915061144882611a7d565b604082019050919050565b61145c8161170f565b82525050565b61146b81611719565b82525050565b6000602082019050611486600083018461127b565b92915050565b60006020820190506114a1600083018461128a565b92915050565b600060208201905081810360008301526114c18184611299565b905092915050565b600060208201905081810360008301526114e2816112d2565b9050919050565b60006020820190508181036000830152611502816112f5565b9050919050565b6000602082019050818103600083015261152281611318565b9050919050565b600060208201905081810360008301526115428161133b565b9050919050565b600060208201905081810360008301526115628161135e565b9050919050565b6000602082019050818103600083015261158281611381565b9050919050565b600060208201905081810360008301526115a2816113a4565b9050919050565b600060208201905081810360008301526115c2816113c7565b9050919050565b600060208201905081810360008301526115e2816113ea565b9050919050565b600060208201905081810360008301526116028161140d565b9050919050565b6000602082019050818103600083015261162281611430565b9050919050565b600060208201905061163e6000830184611453565b92915050565b60006020820190506116596000830184611462565b92915050565b600081519050919050565b600082825260208201905092915050565b60006116868261170f565b91506116918361170f565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156116c6576116c561178b565b5b828201905092915050565b60006116dc826116ef565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b83811015611744578082015181840152602081019050611729565b83811115611753576000848401525b50505050565b6000600282049050600182168061177157607f821691505b60208210811415611785576117846117ba565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f70656e2054726164696e67206e6f7420737461727465640000000000000000600082015250565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f47616d65206e6f74207374617274656420796574000000000000000000000000600082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b611ad5816116d1565b8114611ae057600080fd5b50565b611aec8161170f565b8114611af757600080fd5b5056fea2646970667358221220807f181275013f755ae7161286ff7b4df4df18dd9ae709982e4bb60e1e89a33764736f6c63430008070033
Deployed Bytecode Sourcemap
20494:1466:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9658:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12009:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21710:118;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10778:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20680:33;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12790:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10620:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20533:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13494:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20566:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20636:37;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21520:182;;;:::i;:::-;;10949:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3063:103;;;:::i;:::-;;21836:121;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2415:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20720:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9877:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14235:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11282:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20602:27;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11538:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3321:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9658:100;9712:13;9745:5;9738:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9658:100;:::o;12009:201::-;12092:4;12109:13;12125:12;:10;:12::i;:::-;12109:28;;12148:32;12157:5;12164:7;12173:6;12148:8;:32::i;:::-;12198:4;12191:11;;;12009:201;;;;:::o;21710:118::-;2301:13;:11;:13::i;:::-;21815:5:::1;21782:20;:30;21803:8;21782:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;21710:118:::0;:::o;10778:108::-;10839:7;10866:12;;10859:19;;10778:108;:::o;20680:33::-;;;;;;;;;;;;;:::o;12790:295::-;12921:4;12938:15;12956:12;:10;:12::i;:::-;12938:30;;12979:38;12995:4;13001:7;13010:6;12979:15;:38::i;:::-;13028:27;13038:4;13044:2;13048:6;13028:9;:27::i;:::-;13073:4;13066:11;;;12790:295;;;;;:::o;10620:93::-;10678:5;10703:2;10696:9;;10620:93;:::o;20533:26::-;;;;:::o;13494:238::-;13582:4;13599:13;13615:12;:10;:12::i;:::-;13599:28;;13638:64;13647:5;13654:7;13691:10;13663:25;13673:5;13680:7;13663:9;:25::i;:::-;:38;;;;:::i;:::-;13638:8;:64::i;:::-;13720:4;13713:11;;;13494:238;;;;:::o;20566:29::-;;;;:::o;20636:37::-;;;;;;;;;;;;;:::o;21520:182::-;2301:13;:11;:13::i;:::-;21592:4:::1;21572:17;;:24;;;;;;;;;;;;;;;;;;21624:12;21607:14;:29;;;;21684:10;;21667:14;;:27;;;;:::i;:::-;21647:17;:47;;;;21520:182::o:0;10949:127::-;11023:7;11050:9;:18;11060:7;11050:18;;;;;;;;;;;;;;;;11043:25;;10949:127;;;:::o;3063:103::-;2301:13;:11;:13::i;:::-;3128:30:::1;3155:1;3128:18;:30::i;:::-;3063:103::o:0;21836:121::-;2301:13;:11;:13::i;:::-;21944:5:::1;21911:20;:30;21932:8;21911:30;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;21836:121:::0;:::o;2415:87::-;2461:7;2488:6;;;;;;;;;;;2481:13;;2415:87;:::o;20720:71::-;;;;;;;;;;;;;:::o;9877:104::-;9933:13;9966:7;9959:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9877:104;:::o;14235:436::-;14328:4;14345:13;14361:12;:10;:12::i;:::-;14345:28;;14384:24;14411:25;14421:5;14428:7;14411:9;:25::i;:::-;14384:52;;14475:15;14455:16;:35;;14447:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14568:60;14577:5;14584:7;14612:15;14593:16;:34;14568:8;:60::i;:::-;14659:4;14652:11;;;;14235:436;;;;:::o;11282:193::-;11361:4;11378:13;11394:12;:10;:12::i;:::-;11378:28;;11417;11427:5;11434:2;11438:6;11417:9;:28::i;:::-;11463:4;11456:11;;;11282:193;;;;:::o;20602:27::-;;;;:::o;11538:151::-;11627:7;11654:11;:18;11666:5;11654:18;;;;;;;;;;;;;;;:27;11673:7;11654:27;;;;;;;;;;;;;;;;11647:34;;11538:151;;;;:::o;3321:201::-;2301:13;:11;:13::i;:::-;3430:1:::1;3410:22;;:8;:22;;;;3402:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;3486:28;3505:8;3486:18;:28::i;:::-;3321:201:::0;:::o;960:98::-;1013:7;1040:10;1033:17;;960:98;:::o;17860:380::-;18013:1;17996:19;;:5;:19;;;;17988:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18094:1;18075:21;;:7;:21;;;;18067:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18178:6;18148:11;:18;18160:5;18148:18;;;;;;;;;;;;;;;:27;18167:7;18148:27;;;;;;;;;;;;;;;:36;;;;18216:7;18200:32;;18209:5;18200:32;;;18225:6;18200:32;;;;;;:::i;:::-;;;;;;;;17860:380;;;:::o;2580:132::-;2655:12;:10;:12::i;:::-;2644:23;;:7;:5;:7::i;:::-;:23;;;2636:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2580:132::o;18531:453::-;18666:24;18693:25;18703:5;18710:7;18693:9;:25::i;:::-;18666:52;;18753:17;18733:16;:37;18729:248;;18815:6;18795:16;:26;;18787:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18899:51;18908:5;18915:7;18943:6;18924:16;:25;18899:8;:51::i;:::-;18729:248;18655:329;18531:453;;;:::o;21079:433::-;21177:17;;;;;;;;;;;:53;;;;21198:20;:32;21219:10;21198:32;;;;;;;;;;;;;;;;;;;;;;;;;21177:53;21169:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;21286:17;;21270:12;:33;21266:85;;21335:4;21319:13;;:20;;;;;;;;;;;;;;;;;;21266:85;21366:13;;;;;;;;;;;21361:100;;21409:11;;;;;;;;;;;21403:17;;:2;:17;;;;21395:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;21361:100;21471:33;21487:4;21493:2;21497:6;21471:15;:33::i;:::-;21079:433;;;:::o;3682:191::-;3756:16;3775:6;;;;;;;;;;;3756:25;;3801:8;3792:6;;:17;;;;;;;;;;;;;;;;;;3856:8;3825:40;;3846:8;3825:40;;;;;;;;;;;;3745:128;3682:191;:::o;15141:671::-;15288:1;15272:18;;:4;:18;;;;15264:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15365:1;15351:16;;:2;:16;;;;15343:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15420:38;15441:4;15447:2;15451:6;15420:20;:38::i;:::-;15471:19;15493:9;:15;15503:4;15493:15;;;;;;;;;;;;;;;;15471:37;;15542:6;15527:11;:21;;15519:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15659:6;15645:11;:20;15627:9;:15;15637:4;15627:15;;;;;;;;;;;;;;;:38;;;;15704:6;15687:9;:13;15697:2;15687:13;;;;;;;;;;;;;;;;:23;;;;;;;:::i;:::-;;;;;;;;15743:2;15728:26;;15737:4;15728:26;;;15747:6;15728:26;;;;;;:::i;:::-;;;;;;;;15767:37;15787:4;15793:2;15797:6;15767:19;:37::i;:::-;15253:559;15141:671;;;:::o;19584:125::-;;;;:::o;20313:124::-;;;;:::o;7:139:1:-;53:5;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;7:139;;;;:::o;152:::-;198:5;236:6;223:20;214:29;;252:33;279:5;252:33;:::i;:::-;152:139;;;;:::o;297:329::-;356:6;405:2;393:9;384:7;380:23;376:32;373:119;;;411:79;;:::i;:::-;373:119;531:1;556:53;601:7;592:6;581:9;577:22;556:53;:::i;:::-;546:63;;502:117;297:329;;;;:::o;632:474::-;700:6;708;757:2;745:9;736:7;732:23;728:32;725:119;;;763:79;;:::i;:::-;725:119;883:1;908:53;953:7;944:6;933:9;929:22;908:53;:::i;:::-;898:63;;854:117;1010:2;1036:53;1081:7;1072:6;1061:9;1057:22;1036:53;:::i;:::-;1026:63;;981:118;632:474;;;;;:::o;1112:619::-;1189:6;1197;1205;1254:2;1242:9;1233:7;1229:23;1225:32;1222:119;;;1260:79;;:::i;:::-;1222:119;1380:1;1405:53;1450:7;1441:6;1430:9;1426:22;1405:53;:::i;:::-;1395:63;;1351:117;1507:2;1533:53;1578:7;1569:6;1558:9;1554:22;1533:53;:::i;:::-;1523:63;;1478:118;1635:2;1661:53;1706:7;1697:6;1686:9;1682:22;1661:53;:::i;:::-;1651:63;;1606:118;1112:619;;;;;:::o;1737:474::-;1805:6;1813;1862:2;1850:9;1841:7;1837:23;1833:32;1830:119;;;1868:79;;:::i;:::-;1830:119;1988:1;2013:53;2058:7;2049:6;2038:9;2034:22;2013:53;:::i;:::-;2003:63;;1959:117;2115:2;2141:53;2186:7;2177:6;2166:9;2162:22;2141:53;:::i;:::-;2131:63;;2086:118;1737:474;;;;;:::o;2217:118::-;2304:24;2322:5;2304:24;:::i;:::-;2299:3;2292:37;2217:118;;:::o;2341:109::-;2422:21;2437:5;2422:21;:::i;:::-;2417:3;2410:34;2341:109;;:::o;2456:364::-;2544:3;2572:39;2605:5;2572:39;:::i;:::-;2627:71;2691:6;2686:3;2627:71;:::i;:::-;2620:78;;2707:52;2752:6;2747:3;2740:4;2733:5;2729:16;2707:52;:::i;:::-;2784:29;2806:6;2784:29;:::i;:::-;2779:3;2775:39;2768:46;;2548:272;2456:364;;;;:::o;2826:366::-;2968:3;2989:67;3053:2;3048:3;2989:67;:::i;:::-;2982:74;;3065:93;3154:3;3065:93;:::i;:::-;3183:2;3178:3;3174:12;3167:19;;2826:366;;;:::o;3198:::-;3340:3;3361:67;3425:2;3420:3;3361:67;:::i;:::-;3354:74;;3437:93;3526:3;3437:93;:::i;:::-;3555:2;3550:3;3546:12;3539:19;;3198:366;;;:::o;3570:::-;3712:3;3733:67;3797:2;3792:3;3733:67;:::i;:::-;3726:74;;3809:93;3898:3;3809:93;:::i;:::-;3927:2;3922:3;3918:12;3911:19;;3570:366;;;:::o;3942:::-;4084:3;4105:67;4169:2;4164:3;4105:67;:::i;:::-;4098:74;;4181:93;4270:3;4181:93;:::i;:::-;4299:2;4294:3;4290:12;4283:19;;3942:366;;;:::o;4314:::-;4456:3;4477:67;4541:2;4536:3;4477:67;:::i;:::-;4470:74;;4553:93;4642:3;4553:93;:::i;:::-;4671:2;4666:3;4662:12;4655:19;;4314:366;;;:::o;4686:::-;4828:3;4849:67;4913:2;4908:3;4849:67;:::i;:::-;4842:74;;4925:93;5014:3;4925:93;:::i;:::-;5043:2;5038:3;5034:12;5027:19;;4686:366;;;:::o;5058:::-;5200:3;5221:67;5285:2;5280:3;5221:67;:::i;:::-;5214:74;;5297:93;5386:3;5297:93;:::i;:::-;5415:2;5410:3;5406:12;5399:19;;5058:366;;;:::o;5430:::-;5572:3;5593:67;5657:2;5652:3;5593:67;:::i;:::-;5586:74;;5669:93;5758:3;5669:93;:::i;:::-;5787:2;5782:3;5778:12;5771:19;;5430:366;;;:::o;5802:::-;5944:3;5965:67;6029:2;6024:3;5965:67;:::i;:::-;5958:74;;6041:93;6130:3;6041:93;:::i;:::-;6159:2;6154:3;6150:12;6143:19;;5802:366;;;:::o;6174:::-;6316:3;6337:67;6401:2;6396:3;6337:67;:::i;:::-;6330:74;;6413:93;6502:3;6413:93;:::i;:::-;6531:2;6526:3;6522:12;6515:19;;6174:366;;;:::o;6546:::-;6688:3;6709:67;6773:2;6768:3;6709:67;:::i;:::-;6702:74;;6785:93;6874:3;6785:93;:::i;:::-;6903:2;6898:3;6894:12;6887:19;;6546:366;;;:::o;6918:118::-;7005:24;7023:5;7005:24;:::i;:::-;7000:3;6993:37;6918:118;;:::o;7042:112::-;7125:22;7141:5;7125:22;:::i;:::-;7120:3;7113:35;7042:112;;:::o;7160:222::-;7253:4;7291:2;7280:9;7276:18;7268:26;;7304:71;7372:1;7361:9;7357:17;7348:6;7304:71;:::i;:::-;7160:222;;;;:::o;7388:210::-;7475:4;7513:2;7502:9;7498:18;7490:26;;7526:65;7588:1;7577:9;7573:17;7564:6;7526:65;:::i;:::-;7388:210;;;;:::o;7604:313::-;7717:4;7755:2;7744:9;7740:18;7732:26;;7804:9;7798:4;7794:20;7790:1;7779:9;7775:17;7768:47;7832:78;7905:4;7896:6;7832:78;:::i;:::-;7824:86;;7604:313;;;;:::o;7923:419::-;8089:4;8127:2;8116:9;8112:18;8104:26;;8176:9;8170:4;8166:20;8162:1;8151:9;8147:17;8140:47;8204:131;8330:4;8204:131;:::i;:::-;8196:139;;7923:419;;;:::o;8348:::-;8514:4;8552:2;8541:9;8537:18;8529:26;;8601:9;8595:4;8591:20;8587:1;8576:9;8572:17;8565:47;8629:131;8755:4;8629:131;:::i;:::-;8621:139;;8348:419;;;:::o;8773:::-;8939:4;8977:2;8966:9;8962:18;8954:26;;9026:9;9020:4;9016:20;9012:1;9001:9;8997:17;8990:47;9054:131;9180:4;9054:131;:::i;:::-;9046:139;;8773:419;;;:::o;9198:::-;9364:4;9402:2;9391:9;9387:18;9379:26;;9451:9;9445:4;9441:20;9437:1;9426:9;9422:17;9415:47;9479:131;9605:4;9479:131;:::i;:::-;9471:139;;9198:419;;;:::o;9623:::-;9789:4;9827:2;9816:9;9812:18;9804:26;;9876:9;9870:4;9866:20;9862:1;9851:9;9847:17;9840:47;9904:131;10030:4;9904:131;:::i;:::-;9896:139;;9623:419;;;:::o;10048:::-;10214:4;10252:2;10241:9;10237:18;10229:26;;10301:9;10295:4;10291:20;10287:1;10276:9;10272:17;10265:47;10329:131;10455:4;10329:131;:::i;:::-;10321:139;;10048:419;;;:::o;10473:::-;10639:4;10677:2;10666:9;10662:18;10654:26;;10726:9;10720:4;10716:20;10712:1;10701:9;10697:17;10690:47;10754:131;10880:4;10754:131;:::i;:::-;10746:139;;10473:419;;;:::o;10898:::-;11064:4;11102:2;11091:9;11087:18;11079:26;;11151:9;11145:4;11141:20;11137:1;11126:9;11122:17;11115:47;11179:131;11305:4;11179:131;:::i;:::-;11171:139;;10898:419;;;:::o;11323:::-;11489:4;11527:2;11516:9;11512:18;11504:26;;11576:9;11570:4;11566:20;11562:1;11551:9;11547:17;11540:47;11604:131;11730:4;11604:131;:::i;:::-;11596:139;;11323:419;;;:::o;11748:::-;11914:4;11952:2;11941:9;11937:18;11929:26;;12001:9;11995:4;11991:20;11987:1;11976:9;11972:17;11965:47;12029:131;12155:4;12029:131;:::i;:::-;12021:139;;11748:419;;;:::o;12173:::-;12339:4;12377:2;12366:9;12362:18;12354:26;;12426:9;12420:4;12416:20;12412:1;12401:9;12397:17;12390:47;12454:131;12580:4;12454:131;:::i;:::-;12446:139;;12173:419;;;:::o;12598:222::-;12691:4;12729:2;12718:9;12714:18;12706:26;;12742:71;12810:1;12799:9;12795:17;12786:6;12742:71;:::i;:::-;12598:222;;;;:::o;12826:214::-;12915:4;12953:2;12942:9;12938:18;12930:26;;12966:67;13030:1;13019:9;13015:17;13006:6;12966:67;:::i;:::-;12826:214;;;;:::o;13127:99::-;13179:6;13213:5;13207:12;13197:22;;13127:99;;;:::o;13232:169::-;13316:11;13350:6;13345:3;13338:19;13390:4;13385:3;13381:14;13366:29;;13232:169;;;;:::o;13407:305::-;13447:3;13466:20;13484:1;13466:20;:::i;:::-;13461:25;;13500:20;13518:1;13500:20;:::i;:::-;13495:25;;13654:1;13586:66;13582:74;13579:1;13576:81;13573:107;;;13660:18;;:::i;:::-;13573:107;13704:1;13701;13697:9;13690:16;;13407:305;;;;:::o;13718:96::-;13755:7;13784:24;13802:5;13784:24;:::i;:::-;13773:35;;13718:96;;;:::o;13820:90::-;13854:7;13897:5;13890:13;13883:21;13872:32;;13820:90;;;:::o;13916:126::-;13953:7;13993:42;13986:5;13982:54;13971:65;;13916:126;;;:::o;14048:77::-;14085:7;14114:5;14103:16;;14048:77;;;:::o;14131:86::-;14166:7;14206:4;14199:5;14195:16;14184:27;;14131:86;;;:::o;14223:307::-;14291:1;14301:113;14315:6;14312:1;14309:13;14301:113;;;14400:1;14395:3;14391:11;14385:18;14381:1;14376:3;14372:11;14365:39;14337:2;14334:1;14330:10;14325:15;;14301:113;;;14432:6;14429:1;14426:13;14423:101;;;14512:1;14503:6;14498:3;14494:16;14487:27;14423:101;14272:258;14223:307;;;:::o;14536:320::-;14580:6;14617:1;14611:4;14607:12;14597:22;;14664:1;14658:4;14654:12;14685:18;14675:81;;14741:4;14733:6;14729:17;14719:27;;14675:81;14803:2;14795:6;14792:14;14772:18;14769:38;14766:84;;;14822:18;;:::i;:::-;14766:84;14587:269;14536:320;;;:::o;14862:180::-;14910:77;14907:1;14900:88;15007:4;15004:1;14997:15;15031:4;15028:1;15021:15;15048:180;15096:77;15093:1;15086:88;15193:4;15190:1;15183:15;15217:4;15214:1;15207:15;15357:117;15466:1;15463;15456:12;15480:102;15521:6;15572:2;15568:7;15563:2;15556:5;15552:14;15548:28;15538:38;;15480:102;;;:::o;15588:222::-;15728:34;15724:1;15716:6;15712:14;15705:58;15797:5;15792:2;15784:6;15780:15;15773:30;15588:222;:::o;15816:225::-;15956:34;15952:1;15944:6;15940:14;15933:58;16025:8;16020:2;16012:6;16008:15;16001:33;15816:225;:::o;16047:221::-;16187:34;16183:1;16175:6;16171:14;16164:58;16256:4;16251:2;16243:6;16239:15;16232:29;16047:221;:::o;16274:174::-;16414:26;16410:1;16402:6;16398:14;16391:50;16274:174;:::o;16454:179::-;16594:31;16590:1;16582:6;16578:14;16571:55;16454:179;:::o;16639:225::-;16779:34;16775:1;16767:6;16763:14;16756:58;16848:8;16843:2;16835:6;16831:15;16824:33;16639:225;:::o;16870:182::-;17010:34;17006:1;16998:6;16994:14;16987:58;16870:182;:::o;17058:224::-;17198:34;17194:1;17186:6;17182:14;17175:58;17267:7;17262:2;17254:6;17250:15;17243:32;17058:224;:::o;17288:170::-;17428:22;17424:1;17416:6;17412:14;17405:46;17288:170;:::o;17464:223::-;17604:34;17600:1;17592:6;17588:14;17581:58;17673:6;17668:2;17660:6;17656:15;17649:31;17464:223;:::o;17693:224::-;17833:34;17829:1;17821:6;17817:14;17810:58;17902:7;17897:2;17889:6;17885:15;17878:32;17693:224;:::o;17923:122::-;17996:24;18014:5;17996:24;:::i;:::-;17989:5;17986:35;17976:63;;18035:1;18032;18025:12;17976:63;17923:122;:::o;18051:::-;18124:24;18142:5;18124:24;:::i;:::-;18117:5;18114:35;18104:63;;18163:1;18160;18153:12;18104:63;18051:122;:::o
Swarm Source
ipfs://807f181275013f755ae7161286ff7b4df4df18dd9ae709982e4bb60e1e89a337
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.