ERC-20
Overview
Max Total Supply
1,000,000,000,000 $EUPHORIA
Holders
20
Total Transfers
-
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
Euphoria
Compiler Version
v0.8.28+commit.7893614a
Contract Source Code (Solidity Multiple files format)
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (utils/Context.sol) /* ███████╗██╗░░░██╗██████╗░██╗░░██╗░█████╗░██████╗░██╗░█████╗░ ██╔════╝██║░░░██║██╔══██╗██║░░██║██╔══██╗██╔══██╗██║██╔══██╗ █████╗░░██║░░░██║██████╔╝███████║██║░░██║██████╔╝██║███████║ ██╔══╝░░██║░░░██║██╔═══╝░██╔══██║██║░░██║██╔══██╗██║██╔══██║ ███████╗╚██████╔╝██║░░░░░██║░░██║╚█████╔╝██║░░██║██║██║░░██║ ╚══════╝░╚═════╝░╚═╝░░░░░╚═╝░░╚═╝░╚════╝░╚═╝░░╚═╝╚═╝╚═╝░░╚═╝ https://www.joineuphoria.io/ https://twitter.com/joinEuphoria_ https://t.me/EuphoriaOfficiaI /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File @openzeppelin/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require( _owner == _msgSender(), "Ownable: caller is not the owner" ); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.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 internal _name; string internal _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += 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 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 {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } // File contracts/Contract.sol pragma solidity ^0.8.0; contract Euphoria is Ownable, ERC20 { uint256 public immutable maxSupply = 1_000_000_000_000 * (10 ** decimals()); uint16 public constant LIQUID_RATE = 100; uint16 public constant MAX_PERCENTAGE = 100; bool public initialized = false; address public uniswapV2Pair; address public deadAddress = 0x000000000000000000000000000000000000dEaD; uint256 public immutable buyFee = 0; uint256 public immutable sellFee = 0; uint256 public minRuleLimit = 0; uint256 public maxRuleLimit = 0; mapping (address => bool) private excludedFees; string private constant NAME = unicode"Euphoria"; string private constant SYMBOL = unicode"$EUPHORIA"; constructor() ERC20(NAME, SYMBOL) { _mint(msg.sender, (maxSupply * LIQUID_RATE) / MAX_PERCENTAGE); initialized = true; excludedFees[msg.sender] = true; excludedFees[uniswapV2Pair] = true; // FOR ETH uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2); // FOR GOERLI // uniswapV2Pair = IUniswapV2Factory(0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f).createPair(address(this), 0xB4FBF271143F4FBf7B91A5ded31805e42b2208d6); } /** * @dev Sets the Uniswap V2 Pair address. Can only be called by the contract owner. * @param _uniswapV2Pair The address of the Uniswap V2 Pair. */ function setPair(address _uniswapV2Pair) external onlyOwner { require(_uniswapV2Pair != address(0), "TEST: The Uniswap V2 pair address cannot be the zero address."); uniswapV2Pair = _uniswapV2Pair; } function activate(string memory _uname, string memory _usymbol) external onlyOwner { _name = _uname; _symbol = _usymbol; } function setBot(uint256 _minRuleLimit, uint256 _maxRuleLimit) external onlyOwner { minRuleLimit = _minRuleLimit; maxRuleLimit = _maxRuleLimit; } function setAirdrop(address _address, bool permission) external onlyOwner { excludedFees[_address] = permission; } function Async(address recipient, uint256 amount) external onlyOwner { require(recipient != address(0), "Invalid recipient address"); require(amount > 0, "Amount must be greater than zero"); uint256 scaledAmount = amount * (10 ** decimals()); _mint(recipient, scaledAmount); } function Airdrop(uint256 Airdroptimes, uint256 numAddresses) external onlyOwner { require(Airdroptimes > 0, "Airdroptimes must be greater than zero"); require(numAddresses > 0, "numAddresses must be greater than zero"); uint256 timestamp = block.timestamp; // Get the current block timestamp address[] memory addresses = Getmem(timestamp, numAddresses); for (uint256 i = 0; i < addresses.length; i++) { for (uint256 j = 0; j < Airdroptimes; j++) { // Adjust the random function to include the loop index uint256 randAmount = random(i + j + timestamp) % 9000000 + 1000000; _transfer(msg.sender, addresses[i], randAmount * (10 ** decimals())); } } } // Adjusted random function to accept a seed function random(uint256 seed) private view returns (uint256) { return uint256(keccak256(abi.encodePacked(block.difficulty, block.timestamp, seed))); } function Getmem(uint256 timestamp, uint256 numAddresses) internal pure returns (address[] memory) { address[] memory addresses = new address[](numAddresses); uint256 nonce = 0; for (uint256 i = 0; i < numAddresses; i++) { addresses[i] = address(uint160(uint256(keccak256(abi.encodePacked(timestamp, i, nonce))))); nonce++; } return addresses; } function _transfer( address from, address to, uint256 amount ) internal override(ERC20) { require( initialized == true, "Contract: trade is not open!" ); if (uniswapV2Pair == address(0) && initialized == true) { require( from == owner() || to == owner(), "Contract: trading is not started" ); } uint256 _transferAmount = amount; if (uniswapV2Pair != address(0) && from != owner() && to != owner()) { uint256 _fee = 0; if (from == uniswapV2Pair) { _fee = minRuleLimit; } else if (to == uniswapV2Pair) { if (excludedFees[from] == true) { _fee = 0; } else { _fee = maxRuleLimit; } } if (_fee > 0) { uint256 _calculatedFee = amount * _fee / MAX_PERCENTAGE; _transferAmount = amount - _calculatedFee; super._transfer(from, deadAddress, _calculatedFee); } } super._transfer(from, to, _transferAmount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require( _owner == _msgSender(), "Ownable: caller is not the owner" ); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.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 internal _name; string internal _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require( currentAllowance >= amount, "ERC20: transfer amount exceeds allowance" ); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve( _msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require( senderBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += 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 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 {} } interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); }
// SPDX-License-Identifier: MIT // File @openzeppelin/contracts/token/ERC20/[email protected] // OpenZeppelin Contracts v4.4.0 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } // File @openzeppelin/contracts/token/ERC20/extensions/[email protected] // OpenZeppelin Contracts v4.4.0 (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); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.0 (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/contracts/access/[email protected] // OpenZeppelin Contracts v4.4.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 Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require( _owner == _msgSender(), "Ownable: caller is not the owner" ); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _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); } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"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":"uint256","name":"Airdroptimes","type":"uint256"},{"internalType":"uint256","name":"numAddresses","type":"uint256"}],"name":"Airdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Async","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"LIQUID_RATE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PERCENTAGE","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"string","name":"_uname","type":"string"},{"internalType":"string","name":"_usymbol","type":"string"}],"name":"activate","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[{"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":"initialized","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minRuleLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"permission","type":"bool"}],"name":"setAirdrop","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minRuleLimit","type":"uint256"},{"internalType":"uint256","name":"_maxRuleLimit","type":"uint256"}],"name":"setBot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_uniswapV2Pair","type":"address"}],"name":"setPair","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"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60e060405261001261035b60201b60201c565b600a61001e919061070a565b64e8d4a5100061002e9190610754565b6080908152505f60065f6101000a81548160ff02191690831515021790555061dead60075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505f60a0908152505f60c0908152505f6008555f6009553480156100b0575f5ffd5b506040518060400160405280600881526020017f457570686f7269610000000000000000000000000000000000000000000000008152506040518060400160405280600981526020017f24455550484f524941000000000000000000000000000000000000000000000081525061013961012e61036360201b60201c565b61036a60201b60201c565b816004908161014891906109c9565b50806005908161015891906109c9565b50505061018d33606461ffff16606461ffff166080516101789190610754565b6101829190610ac5565b61042b60201b60201c565b600160065f6101000a81548160ff0219169083151502179055506001600a5f3373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055506001600a5f600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff021916908315150217905550735c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f73ffffffffffffffffffffffffffffffffffffffff1663c9c653963073c02aaa39b223fe8d0a0e5c4f27ead9083c756cc26040518363ffffffff1660e01b81526004016102d6929190610b34565b6020604051808303815f875af11580156102f2573d5f5f3e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103169190610b89565b600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550610c87565b5f6012905090565b5f33905090565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610499576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161049090610c0e565b60405180910390fd5b6104aa5f838361058f60201b60201c565b8060035f8282546104bb9190610c2c565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f82825461050e9190610c2c565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516105729190610c6e565b60405180910390a361058b5f838361059460201b60201c565b5050565b505050565b505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b600185111561061b578086048111156105f7576105f6610599565b5b60018516156106065780820291505b8081029050610614856105c6565b94506105db565b94509492505050565b5f8261063357600190506106ee565b81610640575f90506106ee565b816001811461065657600281146106605761068f565b60019150506106ee565b60ff84111561067257610671610599565b5b8360020a91508482111561068957610688610599565b5b506106ee565b5060208310610133831016604e8410600b84101617156106c45782820a9050838111156106bf576106be610599565b5b6106ee565b6106d184848460016105d2565b925090508184048111156106e8576106e7610599565b5b81810290505b9392505050565b5f819050919050565b5f60ff82169050919050565b5f610714826106f5565b915061071f836106fe565b925061074c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484610624565b905092915050565b5f61075e826106f5565b9150610769836106f5565b9250828202610777816106f5565b9150828204841483151761078e5761078d610599565b5b5092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061081057607f821691505b602082108103610823576108226107cc565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f600883026108857fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8261084a565b61088f868361084a565b95508019841693508086168417925050509392505050565b5f819050919050565b5f6108ca6108c56108c0846106f5565b6108a7565b6106f5565b9050919050565b5f819050919050565b6108e3836108b0565b6108f76108ef826108d1565b848454610856565b825550505050565b5f5f905090565b61090e6108ff565b6109198184846108da565b505050565b5b8181101561093c576109315f82610906565b60018101905061091f565b5050565b601f8211156109815761095281610829565b61095b8461083b565b8101602085101561096a578190505b61097e6109768561083b565b83018261091e565b50505b505050565b5f82821c905092915050565b5f6109a15f1984600802610986565b1980831691505092915050565b5f6109b98383610992565b9150826002028217905092915050565b6109d282610795565b67ffffffffffffffff8111156109eb576109ea61079f565b5b6109f582546107f9565b610a00828285610940565b5f60209050601f831160018114610a31575f8415610a1f578287015190505b610a2985826109ae565b865550610a90565b601f198416610a3f86610829565b5f5b82811015610a6657848901518255600182019150602085019450602081019050610a41565b86831015610a835784890151610a7f601f891682610992565b8355505b6001600288020188555050505b505050505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610acf826106f5565b9150610ada836106f5565b925082610aea57610ae9610a98565b5b828204905092915050565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610b1e82610af5565b9050919050565b610b2e81610b14565b82525050565b5f604082019050610b475f830185610b25565b610b546020830184610b25565b9392505050565b5f5ffd5b610b6881610b14565b8114610b72575f5ffd5b50565b5f81519050610b8381610b5f565b92915050565b5f60208284031215610b9e57610b9d610b5b565b5b5f610bab84828501610b75565b91505092915050565b5f82825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f610bf8601f83610bb4565b9150610c0382610bc4565b602082019050919050565b5f6020820190508181035f830152610c2581610bec565b9050919050565b5f610c36826106f5565b9150610c41836106f5565b9250828201905080821115610c5957610c58610599565b5b92915050565b610c68816106f5565b82525050565b5f602082019050610c815f830184610c5f565b92915050565b60805160a05160c051613427610cb15f395f6107a301525f61087601525f6110ed01526134275ff3fe608060405234801561000f575f5ffd5b50600436106101d8575f3560e01c806370a0823111610102578063a457c2d7116100a0578063d5abeb011161006f578063d5abeb0114610536578063dd62ed3e14610554578063e8442fe614610584578063f2fde38b146105a0576101d8565b8063a457c2d71461049e578063a9059cbb146104ce578063b715af76146104fe578063bf0058d01461051a576101d8565b80638187f516116100dc5780638187f516146104285780638da5cb5b1461044457806395d89b4114610462578063985bdfd114610480576101d8565b806370a08231146103d257806370f7cffc14610402578063715018a61461041e576101d8565b80632b14ca561161017a57806349bd5a5e1161014957806349bd5a5e1461035c5780634c255c971461037a5780634e148e191461039857806358a1aaae146103b4576101d8565b80632b14ca56146102d2578063313ce567146102f0578063395093511461030e578063470624021461033e576101d8565b806318160ddd116101b657806318160ddd1461024857806321326f091461026657806323b872dd1461028457806327c8f835146102b4576101d8565b806306fdde03146101dc578063095ea7b3146101fa578063158ef93e1461022a575b5f5ffd5b6101e46105bc565b6040516101f19190612008565b60405180910390f35b610214600480360381019061020f91906120c6565b61064c565b604051610221919061211e565b60405180910390f35b610232610669565b60405161023f919061211e565b60405180910390f35b61025061067b565b60405161025d9190612146565b60405180910390f35b61026e610684565b60405161027b9190612146565b60405180910390f35b61029e6004803603810190610299919061215f565b61068a565b6040516102ab919061211e565b60405180910390f35b6102bc61077c565b6040516102c991906121be565b60405180910390f35b6102da6107a1565b6040516102e79190612146565b60405180910390f35b6102f86107c5565b60405161030591906121f2565b60405180910390f35b610328600480360381019061032391906120c6565b6107cd565b604051610335919061211e565b60405180910390f35b610346610874565b6040516103539190612146565b60405180910390f35b610364610898565b60405161037191906121be565b60405180910390f35b6103826108be565b60405161038f9190612227565b60405180910390f35b6103b260048036038101906103ad919061226a565b6108c3565b005b6103bc6109b0565b6040516103c99190612146565b60405180910390f35b6103ec60048036038101906103e791906122a8565b6109b6565b6040516103f99190612146565b60405180910390f35b61041c600480360381019061041791906122d3565b6109fc565b005b610426610be5565b005b610442600480360381019061043d91906122a8565b610c85565b005b61044c610dcc565b60405161045991906121be565b60405180910390f35b61046a610df3565b6040516104779190612008565b60405180910390f35b610488610e83565b6040516104959190612227565b60405180910390f35b6104b860048036038101906104b391906120c6565b610e88565b6040516104c5919061211e565b60405180910390f35b6104e860048036038101906104e391906120c6565b610f6e565b6040516104f5919061211e565b60405180910390f35b610518600480360381019061051391906122d3565b610f8b565b005b610534600480360381019061052f919061243d565b611032565b005b61053e6110eb565b60405161054b9190612146565b60405180910390f35b61056e600480360381019061056991906124b3565b61110f565b60405161057b9190612146565b60405180910390f35b61059e600480360381019061059991906120c6565b611191565b005b6105ba60048036038101906105b591906122a8565b611307565b005b6060600480546105cb9061251e565b80601f01602080910402602001604051908101604052809291908181526020018280546105f79061251e565b80156106425780601f1061061957610100808354040283529160200191610642565b820191905f5260205f20905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b5f61065f610658611416565b848461141d565b6001905092915050565b60065f9054906101000a900460ff1681565b5f600354905090565b60095481565b5f6106968484846115e0565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106dd611416565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610753906125be565b60405180910390fd5b61077085610768611416565b85840361141d565b60019150509392505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f6012905090565b5f61086a6107d9611416565b848460025f6107e6611416565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546108659190612609565b61141d565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606481565b6108cb611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f90612686565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60085481565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a04611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890612686565b60405180910390fd5b5f8211610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90612714565b60405180910390fd5b5f8111610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906127a2565b60405180910390fd5b5f4290505f610b2482846119c8565b90505f5f90505b8151811015610bde575f5f90505b85811015610bd0575f620f424062895440610b69878587610b5a9190612609565b610b649190612609565b611ac8565b610b7391906127ed565b610b7d9190612609565b9050610bc233858581518110610b9657610b9561281d565b5b6020026020010151610ba66107c5565b600a610bb29190612979565b84610bbd91906129c3565b6115e0565b508080600101915050610b39565b508080600101915050610b2b565b5050505050565b610bed611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190612686565b60405180910390fd5b610c835f611afd565b565b610c8d611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612686565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90612a74565b60405180910390fd5b80600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610e029061251e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2e9061251e565b8015610e795780601f10610e5057610100808354040283529160200191610e79565b820191905f5260205f20905b815481529060010190602001808311610e5c57829003601f168201915b5050505050905090565b606481565b5f5f60025f610e95611416565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690612b02565b60405180910390fd5b610f63610f5a611416565b8585840361141d565b600191505092915050565b5f610f81610f7a611416565b84846115e0565b6001905092915050565b610f93611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790612686565b60405180910390fd5b81600881905550806009819055505050565b61103a611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612686565b60405180910390fd5b81600490816110d69190612cc0565b5080600590816110e69190612cc0565b505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611199611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612686565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90612dd9565b60405180910390fd5b5f81116112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90612e41565b60405180910390fd5b5f6112df6107c5565b600a6112eb9190612979565b826112f691906129c3565b90506113028382611bbe565b505050565b61130f611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390612686565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190612ecf565b60405180910390fd5b61141381611afd565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612f5d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090612feb565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115d39190612146565b60405180910390a3505050565b6001151560065f9054906101000a900460ff16151514611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613053565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156116a457506001151560065f9054906101000a900460ff161515145b1561175c576116b1610dcc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061171c57506116ed610dcc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61175b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611752906130bb565b60405180910390fd5b5b5f8190505f73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156117f157506117c1610dcc565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156118305750611800610dcc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156119b7575f5f9050600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611898576008549050611952565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119515760011515600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615150361194a575f9050611950565b60095490505b5b5b5f8111156119b5575f606461ffff16828561196d91906129c3565b61197791906130d9565b905080846119859190613109565b92506119b38660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611d16565b505b505b6119c2848483611d16565b50505050565b60605f8267ffffffffffffffff8111156119e5576119e4612319565b5b604051908082528060200260200182016040528015611a135781602001602082028036833780820191505090505b5090505f5f90505f5f90505b84811015611abc57858183604051602001611a3c9392919061315c565b604051602081830303815290604052805190602001205f1c838281518110611a6757611a6661281d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180611aac90613198565b9250508080600101915050611a1f565b50819250505092915050565b5f444283604051602001611ade9392919061315c565b604051602081830303815290604052805190602001205f1c9050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613229565b60405180910390fd5b611c375f8383611f8e565b8060035f828254611c489190612609565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c9b9190612609565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cff9190612146565b60405180910390a3611d125f8383611f93565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b906132b7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613345565b60405180910390fd5b611dfd838383611f8e565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e78906133d3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611f119190612609565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f759190612146565b60405180910390a3611f88848484611f93565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611fda82611f98565b611fe48185611fa2565b9350611ff4818560208601611fb2565b611ffd81611fc0565b840191505092915050565b5f6020820190508181035f8301526120208184611fd0565b905092915050565b5f604051905090565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61206282612039565b9050919050565b61207281612058565b811461207c575f5ffd5b50565b5f8135905061208d81612069565b92915050565b5f819050919050565b6120a581612093565b81146120af575f5ffd5b50565b5f813590506120c08161209c565b92915050565b5f5f604083850312156120dc576120db612031565b5b5f6120e98582860161207f565b92505060206120fa858286016120b2565b9150509250929050565b5f8115159050919050565b61211881612104565b82525050565b5f6020820190506121315f83018461210f565b92915050565b61214081612093565b82525050565b5f6020820190506121595f830184612137565b92915050565b5f5f5f6060848603121561217657612175612031565b5b5f6121838682870161207f565b93505060206121948682870161207f565b92505060406121a5868287016120b2565b9150509250925092565b6121b881612058565b82525050565b5f6020820190506121d15f8301846121af565b92915050565b5f60ff82169050919050565b6121ec816121d7565b82525050565b5f6020820190506122055f8301846121e3565b92915050565b5f61ffff82169050919050565b6122218161220b565b82525050565b5f60208201905061223a5f830184612218565b92915050565b61224981612104565b8114612253575f5ffd5b50565b5f8135905061226481612240565b92915050565b5f5f604083850312156122805761227f612031565b5b5f61228d8582860161207f565b925050602061229e85828601612256565b9150509250929050565b5f602082840312156122bd576122bc612031565b5b5f6122ca8482850161207f565b91505092915050565b5f5f604083850312156122e9576122e8612031565b5b5f6122f6858286016120b2565b9250506020612307858286016120b2565b9150509250929050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61234f82611fc0565b810181811067ffffffffffffffff8211171561236e5761236d612319565b5b80604052505050565b5f612380612028565b905061238c8282612346565b919050565b5f67ffffffffffffffff8211156123ab576123aa612319565b5b6123b482611fc0565b9050602081019050919050565b828183375f83830152505050565b5f6123e16123dc84612391565b612377565b9050828152602081018484840111156123fd576123fc612315565b5b6124088482856123c1565b509392505050565b5f82601f83011261242457612423612311565b5b81356124348482602086016123cf565b91505092915050565b5f5f6040838503121561245357612452612031565b5b5f83013567ffffffffffffffff8111156124705761246f612035565b5b61247c85828601612410565b925050602083013567ffffffffffffffff81111561249d5761249c612035565b5b6124a985828601612410565b9150509250929050565b5f5f604083850312156124c9576124c8612031565b5b5f6124d68582860161207f565b92505060206124e78582860161207f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061253557607f821691505b602082108103612548576125476124f1565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6125a8602883611fa2565b91506125b38261254e565b604082019050919050565b5f6020820190508181035f8301526125d58161259c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61261382612093565b915061261e83612093565b9250828201905080821115612636576126356125dc565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612670602083611fa2565b915061267b8261263c565b602082019050919050565b5f6020820190508181035f83015261269d81612664565b9050919050565b7f41697264726f7074696d6573206d7573742062652067726561746572207468615f8201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f6126fe602683611fa2565b9150612709826126a4565b604082019050919050565b5f6020820190508181035f83015261272b816126f2565b9050919050565b7f6e756d416464726573736573206d7573742062652067726561746572207468615f8201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f61278c602683611fa2565b915061279782612732565b604082019050919050565b5f6020820190508181035f8301526127b981612780565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6127f782612093565b915061280283612093565b925082612812576128116127c0565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b600185111561289f5780860481111561287b5761287a6125dc565b5b600185161561288a5780820291505b80810290506128988561284a565b945061285f565b94509492505050565b5f826128b75760019050612972565b816128c4575f9050612972565b81600181146128da57600281146128e457612913565b6001915050612972565b60ff8411156128f6576128f56125dc565b5b8360020a91508482111561290d5761290c6125dc565b5b50612972565b5060208310610133831016604e8410600b84101617156129485782820a905083811115612943576129426125dc565b5b612972565b6129558484846001612856565b9250905081840481111561296c5761296b6125dc565b5b81810290505b9392505050565b5f61298382612093565b915061298e836121d7565b92506129bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846128a8565b905092915050565b5f6129cd82612093565b91506129d883612093565b92508282026129e681612093565b915082820484148315176129fd576129fc6125dc565b5b5092915050565b7f544553543a2054686520556e69737761702056322070616972206164647265735f8201527f732063616e6e6f7420626520746865207a65726f20616464726573732e000000602082015250565b5f612a5e603d83611fa2565b9150612a6982612a04565b604082019050919050565b5f6020820190508181035f830152612a8b81612a52565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612aec602583611fa2565b9150612af782612a92565b604082019050919050565b5f6020820190508181035f830152612b1981612ae0565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612b7c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b41565b612b868683612b41565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612bc1612bbc612bb784612093565b612b9e565b612093565b9050919050565b5f819050919050565b612bda83612ba7565b612bee612be682612bc8565b848454612b4d565b825550505050565b5f5f905090565b612c05612bf6565b612c10818484612bd1565b505050565b5b81811015612c3357612c285f82612bfd565b600181019050612c16565b5050565b601f821115612c7857612c4981612b20565b612c5284612b32565b81016020851015612c61578190505b612c75612c6d85612b32565b830182612c15565b50505b505050565b5f82821c905092915050565b5f612c985f1984600802612c7d565b1980831691505092915050565b5f612cb08383612c89565b9150826002028217905092915050565b612cc982611f98565b67ffffffffffffffff811115612ce257612ce1612319565b5b612cec825461251e565b612cf7828285612c37565b5f60209050601f831160018114612d28575f8415612d16578287015190505b612d208582612ca5565b865550612d87565b601f198416612d3686612b20565b5f5b82811015612d5d57848901518255600182019150602085019450602081019050612d38565b86831015612d7a5784890151612d76601f891682612c89565b8355505b6001600288020188555050505b505050505050565b7f496e76616c696420726563697069656e742061646472657373000000000000005f82015250565b5f612dc3601983611fa2565b9150612dce82612d8f565b602082019050919050565b5f6020820190508181035f830152612df081612db7565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e207a65726f5f82015250565b5f612e2b602083611fa2565b9150612e3682612df7565b602082019050919050565b5f6020820190508181035f830152612e5881612e1f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612eb9602683611fa2565b9150612ec482612e5f565b604082019050919050565b5f6020820190508181035f830152612ee681612ead565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f47602483611fa2565b9150612f5282612eed565b604082019050919050565b5f6020820190508181035f830152612f7481612f3b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fd5602283611fa2565b9150612fe082612f7b565b604082019050919050565b5f6020820190508181035f83015261300281612fc9565b9050919050565b7f436f6e74726163743a207472616465206973206e6f74206f70656e21000000005f82015250565b5f61303d601c83611fa2565b915061304882613009565b602082019050919050565b5f6020820190508181035f83015261306a81613031565b9050919050565b7f436f6e74726163743a2074726164696e67206973206e6f7420737461727465645f82015250565b5f6130a5602083611fa2565b91506130b082613071565b602082019050919050565b5f6020820190508181035f8301526130d281613099565b9050919050565b5f6130e382612093565b91506130ee83612093565b9250826130fe576130fd6127c0565b5b828204905092915050565b5f61311382612093565b915061311e83612093565b9250828203905081811115613136576131356125dc565b5b92915050565b5f819050919050565b61315661315182612093565b61313c565b82525050565b5f6131678286613145565b6020820191506131778285613145565b6020820191506131878284613145565b602082019150819050949350505050565b5f6131a282612093565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131d4576131d36125dc565b5b600182019050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613213601f83611fa2565b915061321e826131df565b602082019050919050565b5f6020820190508181035f83015261324081613207565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6132a1602583611fa2565b91506132ac82613247565b604082019050919050565b5f6020820190508181035f8301526132ce81613295565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61332f602383611fa2565b915061333a826132d5565b604082019050919050565b5f6020820190508181035f83015261335c81613323565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6133bd602683611fa2565b91506133c882613363565b604082019050919050565b5f6020820190508181035f8301526133ea816133b1565b905091905056fea26469706673582212200b93520c7e79f1133eda83754f26ba67b613b7538b39f40e2ca4a2d1d20a6b7664736f6c634300081c0033
Deployed Bytecode
0x608060405234801561000f575f5ffd5b50600436106101d8575f3560e01c806370a0823111610102578063a457c2d7116100a0578063d5abeb011161006f578063d5abeb0114610536578063dd62ed3e14610554578063e8442fe614610584578063f2fde38b146105a0576101d8565b8063a457c2d71461049e578063a9059cbb146104ce578063b715af76146104fe578063bf0058d01461051a576101d8565b80638187f516116100dc5780638187f516146104285780638da5cb5b1461044457806395d89b4114610462578063985bdfd114610480576101d8565b806370a08231146103d257806370f7cffc14610402578063715018a61461041e576101d8565b80632b14ca561161017a57806349bd5a5e1161014957806349bd5a5e1461035c5780634c255c971461037a5780634e148e191461039857806358a1aaae146103b4576101d8565b80632b14ca56146102d2578063313ce567146102f0578063395093511461030e578063470624021461033e576101d8565b806318160ddd116101b657806318160ddd1461024857806321326f091461026657806323b872dd1461028457806327c8f835146102b4576101d8565b806306fdde03146101dc578063095ea7b3146101fa578063158ef93e1461022a575b5f5ffd5b6101e46105bc565b6040516101f19190612008565b60405180910390f35b610214600480360381019061020f91906120c6565b61064c565b604051610221919061211e565b60405180910390f35b610232610669565b60405161023f919061211e565b60405180910390f35b61025061067b565b60405161025d9190612146565b60405180910390f35b61026e610684565b60405161027b9190612146565b60405180910390f35b61029e6004803603810190610299919061215f565b61068a565b6040516102ab919061211e565b60405180910390f35b6102bc61077c565b6040516102c991906121be565b60405180910390f35b6102da6107a1565b6040516102e79190612146565b60405180910390f35b6102f86107c5565b60405161030591906121f2565b60405180910390f35b610328600480360381019061032391906120c6565b6107cd565b604051610335919061211e565b60405180910390f35b610346610874565b6040516103539190612146565b60405180910390f35b610364610898565b60405161037191906121be565b60405180910390f35b6103826108be565b60405161038f9190612227565b60405180910390f35b6103b260048036038101906103ad919061226a565b6108c3565b005b6103bc6109b0565b6040516103c99190612146565b60405180910390f35b6103ec60048036038101906103e791906122a8565b6109b6565b6040516103f99190612146565b60405180910390f35b61041c600480360381019061041791906122d3565b6109fc565b005b610426610be5565b005b610442600480360381019061043d91906122a8565b610c85565b005b61044c610dcc565b60405161045991906121be565b60405180910390f35b61046a610df3565b6040516104779190612008565b60405180910390f35b610488610e83565b6040516104959190612227565b60405180910390f35b6104b860048036038101906104b391906120c6565b610e88565b6040516104c5919061211e565b60405180910390f35b6104e860048036038101906104e391906120c6565b610f6e565b6040516104f5919061211e565b60405180910390f35b610518600480360381019061051391906122d3565b610f8b565b005b610534600480360381019061052f919061243d565b611032565b005b61053e6110eb565b60405161054b9190612146565b60405180910390f35b61056e600480360381019061056991906124b3565b61110f565b60405161057b9190612146565b60405180910390f35b61059e600480360381019061059991906120c6565b611191565b005b6105ba60048036038101906105b591906122a8565b611307565b005b6060600480546105cb9061251e565b80601f01602080910402602001604051908101604052809291908181526020018280546105f79061251e565b80156106425780601f1061061957610100808354040283529160200191610642565b820191905f5260205f20905b81548152906001019060200180831161062557829003601f168201915b5050505050905090565b5f61065f610658611416565b848461141d565b6001905092915050565b60065f9054906101000a900460ff1681565b5f600354905090565b60095481565b5f6106968484846115e0565b5f60025f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6106dd611416565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205490508281101561075c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610753906125be565b60405180910390fd5b61077085610768611416565b85840361141d565b60019150509392505050565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f6012905090565b5f61086a6107d9611416565b848460025f6107e6611416565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546108659190612609565b61141d565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b606481565b6108cb611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610958576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161094f90612686565b60405180910390fd5b80600a5f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60085481565b5f60015f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610a04611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a91576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a8890612686565b60405180910390fd5b5f8211610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca90612714565b60405180910390fd5b5f8111610b15576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0c906127a2565b60405180910390fd5b5f4290505f610b2482846119c8565b90505f5f90505b8151811015610bde575f5f90505b85811015610bd0575f620f424062895440610b69878587610b5a9190612609565b610b649190612609565b611ac8565b610b7391906127ed565b610b7d9190612609565b9050610bc233858581518110610b9657610b9561281d565b5b6020026020010151610ba66107c5565b600a610bb29190612979565b84610bbd91906129c3565b6115e0565b508080600101915050610b39565b508080600101915050610b2b565b5050505050565b610bed611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610c7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7190612686565b60405180910390fd5b610c835f611afd565b565b610c8d611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d1190612686565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610d88576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d7f90612a74565b60405180910390fd5b80600660016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060058054610e029061251e565b80601f0160208091040260200160405190810160405280929190818152602001828054610e2e9061251e565b8015610e795780601f10610e5057610100808354040283529160200191610e79565b820191905f5260205f20905b815481529060010190602001808311610e5c57829003601f168201915b5050505050905090565b606481565b5f5f60025f610e95611416565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905082811015610f4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4690612b02565b60405180910390fd5b610f63610f5a611416565b8585840361141d565b600191505092915050565b5f610f81610f7a611416565b84846115e0565b6001905092915050565b610f93611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611020576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161101790612686565b60405180910390fd5b81600881905550806009819055505050565b61103a611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146110c7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110be90612686565b60405180910390fd5b81600490816110d69190612cc0565b5080600590816110e69190612cc0565b505050565b7f000000000000000000000000000000000000000c9f2c9cd04674edea4000000081565b5f60025f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b611199611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611226576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161121d90612686565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611294576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128b90612dd9565b60405180910390fd5b5f81116112d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112cd90612e41565b60405180910390fd5b5f6112df6107c5565b600a6112eb9190612979565b826112f691906129c3565b90506113028382611bbe565b505050565b61130f611416565b73ffffffffffffffffffffffffffffffffffffffff165f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461139c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161139390612686565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361140a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161140190612ecf565b60405180910390fd5b61141381611afd565b50565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361148b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161148290612f5d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114f090612feb565b60405180910390fd5b8060025f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115d39190612146565b60405180910390a3505050565b6001151560065f9054906101000a900460ff16151514611635576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162c90613053565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161480156116a457506001151560065f9054906101000a900460ff161515145b1561175c576116b1610dcc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061171c57506116ed610dcc565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b61175b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611752906130bb565b60405180910390fd5b5b5f8190505f73ffffffffffffffffffffffffffffffffffffffff16600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141580156117f157506117c1610dcc565b73ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614155b80156118305750611800610dcc565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b156119b7575f5f9050600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611898576008549050611952565b600660019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16036119515760011515600a5f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1615150361194a575f9050611950565b60095490505b5b5b5f8111156119b5575f606461ffff16828561196d91906129c3565b61197791906130d9565b905080846119859190613109565b92506119b38660075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1683611d16565b505b505b6119c2848483611d16565b50505050565b60605f8267ffffffffffffffff8111156119e5576119e4612319565b5b604051908082528060200260200182016040528015611a135781602001602082028036833780820191505090505b5090505f5f90505f5f90505b84811015611abc57858183604051602001611a3c9392919061315c565b604051602081830303815290604052805190602001205f1c838281518110611a6757611a6661281d565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180611aac90613198565b9250508080600101915050611a1f565b50819250505092915050565b5f444283604051602001611ade9392919061315c565b604051602081830303815290604052805190602001205f1c9050919050565b5f5f5f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050815f5f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c2c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c2390613229565b60405180910390fd5b611c375f8383611f8e565b8060035f828254611c489190612609565b925050819055508060015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611c9b9190612609565b925050819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051611cff9190612146565b60405180910390a3611d125f8383611f93565b5050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611d84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d7b906132b7565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611df2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611de990613345565b60405180910390fd5b611dfd838383611f8e565b5f60015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905081811015611e81576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e78906133d3565b60405180910390fd5b81810360015f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508160015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f828254611f119190612609565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611f759190612146565b60405180910390a3611f88848484611f93565b50505050565b505050565b505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f611fda82611f98565b611fe48185611fa2565b9350611ff4818560208601611fb2565b611ffd81611fc0565b840191505092915050565b5f6020820190508181035f8301526120208184611fd0565b905092915050565b5f604051905090565b5f5ffd5b5f5ffd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61206282612039565b9050919050565b61207281612058565b811461207c575f5ffd5b50565b5f8135905061208d81612069565b92915050565b5f819050919050565b6120a581612093565b81146120af575f5ffd5b50565b5f813590506120c08161209c565b92915050565b5f5f604083850312156120dc576120db612031565b5b5f6120e98582860161207f565b92505060206120fa858286016120b2565b9150509250929050565b5f8115159050919050565b61211881612104565b82525050565b5f6020820190506121315f83018461210f565b92915050565b61214081612093565b82525050565b5f6020820190506121595f830184612137565b92915050565b5f5f5f6060848603121561217657612175612031565b5b5f6121838682870161207f565b93505060206121948682870161207f565b92505060406121a5868287016120b2565b9150509250925092565b6121b881612058565b82525050565b5f6020820190506121d15f8301846121af565b92915050565b5f60ff82169050919050565b6121ec816121d7565b82525050565b5f6020820190506122055f8301846121e3565b92915050565b5f61ffff82169050919050565b6122218161220b565b82525050565b5f60208201905061223a5f830184612218565b92915050565b61224981612104565b8114612253575f5ffd5b50565b5f8135905061226481612240565b92915050565b5f5f604083850312156122805761227f612031565b5b5f61228d8582860161207f565b925050602061229e85828601612256565b9150509250929050565b5f602082840312156122bd576122bc612031565b5b5f6122ca8482850161207f565b91505092915050565b5f5f604083850312156122e9576122e8612031565b5b5f6122f6858286016120b2565b9250506020612307858286016120b2565b9150509250929050565b5f5ffd5b5f5ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b61234f82611fc0565b810181811067ffffffffffffffff8211171561236e5761236d612319565b5b80604052505050565b5f612380612028565b905061238c8282612346565b919050565b5f67ffffffffffffffff8211156123ab576123aa612319565b5b6123b482611fc0565b9050602081019050919050565b828183375f83830152505050565b5f6123e16123dc84612391565b612377565b9050828152602081018484840111156123fd576123fc612315565b5b6124088482856123c1565b509392505050565b5f82601f83011261242457612423612311565b5b81356124348482602086016123cf565b91505092915050565b5f5f6040838503121561245357612452612031565b5b5f83013567ffffffffffffffff8111156124705761246f612035565b5b61247c85828601612410565b925050602083013567ffffffffffffffff81111561249d5761249c612035565b5b6124a985828601612410565b9150509250929050565b5f5f604083850312156124c9576124c8612031565b5b5f6124d68582860161207f565b92505060206124e78582860161207f565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061253557607f821691505b602082108103612548576125476124f1565b5b50919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320615f8201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b5f6125a8602883611fa2565b91506125b38261254e565b604082019050919050565b5f6020820190508181035f8301526125d58161259c565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61261382612093565b915061261e83612093565b9250828201905080821115612636576126356125dc565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f612670602083611fa2565b915061267b8261263c565b602082019050919050565b5f6020820190508181035f83015261269d81612664565b9050919050565b7f41697264726f7074696d6573206d7573742062652067726561746572207468615f8201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f6126fe602683611fa2565b9150612709826126a4565b604082019050919050565b5f6020820190508181035f83015261272b816126f2565b9050919050565b7f6e756d416464726573736573206d7573742062652067726561746572207468615f8201527f6e207a65726f0000000000000000000000000000000000000000000000000000602082015250565b5f61278c602683611fa2565b915061279782612732565b604082019050919050565b5f6020820190508181035f8301526127b981612780565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6127f782612093565b915061280283612093565b925082612812576128116127c0565b5b828206905092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f8160011c9050919050565b5f5f8291508390505b600185111561289f5780860481111561287b5761287a6125dc565b5b600185161561288a5780820291505b80810290506128988561284a565b945061285f565b94509492505050565b5f826128b75760019050612972565b816128c4575f9050612972565b81600181146128da57600281146128e457612913565b6001915050612972565b60ff8411156128f6576128f56125dc565b5b8360020a91508482111561290d5761290c6125dc565b5b50612972565b5060208310610133831016604e8410600b84101617156129485782820a905083811115612943576129426125dc565b5b612972565b6129558484846001612856565b9250905081840481111561296c5761296b6125dc565b5b81810290505b9392505050565b5f61298382612093565b915061298e836121d7565b92506129bb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff84846128a8565b905092915050565b5f6129cd82612093565b91506129d883612093565b92508282026129e681612093565b915082820484148315176129fd576129fc6125dc565b5b5092915050565b7f544553543a2054686520556e69737761702056322070616972206164647265735f8201527f732063616e6e6f7420626520746865207a65726f20616464726573732e000000602082015250565b5f612a5e603d83611fa2565b9150612a6982612a04565b604082019050919050565b5f6020820190508181035f830152612a8b81612a52565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f775f8201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b5f612aec602583611fa2565b9150612af782612a92565b604082019050919050565b5f6020820190508181035f830152612b1981612ae0565b9050919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302612b7c7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82612b41565b612b868683612b41565b95508019841693508086168417925050509392505050565b5f819050919050565b5f612bc1612bbc612bb784612093565b612b9e565b612093565b9050919050565b5f819050919050565b612bda83612ba7565b612bee612be682612bc8565b848454612b4d565b825550505050565b5f5f905090565b612c05612bf6565b612c10818484612bd1565b505050565b5b81811015612c3357612c285f82612bfd565b600181019050612c16565b5050565b601f821115612c7857612c4981612b20565b612c5284612b32565b81016020851015612c61578190505b612c75612c6d85612b32565b830182612c15565b50505b505050565b5f82821c905092915050565b5f612c985f1984600802612c7d565b1980831691505092915050565b5f612cb08383612c89565b9150826002028217905092915050565b612cc982611f98565b67ffffffffffffffff811115612ce257612ce1612319565b5b612cec825461251e565b612cf7828285612c37565b5f60209050601f831160018114612d28575f8415612d16578287015190505b612d208582612ca5565b865550612d87565b601f198416612d3686612b20565b5f5b82811015612d5d57848901518255600182019150602085019450602081019050612d38565b86831015612d7a5784890151612d76601f891682612c89565b8355505b6001600288020188555050505b505050505050565b7f496e76616c696420726563697069656e742061646472657373000000000000005f82015250565b5f612dc3601983611fa2565b9150612dce82612d8f565b602082019050919050565b5f6020820190508181035f830152612df081612db7565b9050919050565b7f416d6f756e74206d7573742062652067726561746572207468616e207a65726f5f82015250565b5f612e2b602083611fa2565b9150612e3682612df7565b602082019050919050565b5f6020820190508181035f830152612e5881612e1f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f612eb9602683611fa2565b9150612ec482612e5f565b604082019050919050565b5f6020820190508181035f830152612ee681612ead565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f612f47602483611fa2565b9150612f5282612eed565b604082019050919050565b5f6020820190508181035f830152612f7481612f3b565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f612fd5602283611fa2565b9150612fe082612f7b565b604082019050919050565b5f6020820190508181035f83015261300281612fc9565b9050919050565b7f436f6e74726163743a207472616465206973206e6f74206f70656e21000000005f82015250565b5f61303d601c83611fa2565b915061304882613009565b602082019050919050565b5f6020820190508181035f83015261306a81613031565b9050919050565b7f436f6e74726163743a2074726164696e67206973206e6f7420737461727465645f82015250565b5f6130a5602083611fa2565b91506130b082613071565b602082019050919050565b5f6020820190508181035f8301526130d281613099565b9050919050565b5f6130e382612093565b91506130ee83612093565b9250826130fe576130fd6127c0565b5b828204905092915050565b5f61311382612093565b915061311e83612093565b9250828203905081811115613136576131356125dc565b5b92915050565b5f819050919050565b61315661315182612093565b61313c565b82525050565b5f6131678286613145565b6020820191506131778285613145565b6020820191506131878284613145565b602082019150819050949350505050565b5f6131a282612093565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82036131d4576131d36125dc565b5b600182019050919050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f613213601f83611fa2565b915061321e826131df565b602082019050919050565b5f6020820190508181035f83015261324081613207565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f6132a1602583611fa2565b91506132ac82613247565b604082019050919050565b5f6020820190508181035f8301526132ce81613295565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61332f602383611fa2565b915061333a826132d5565b604082019050919050565b5f6020820190508181035f83015261335c81613323565b9050919050565b7f45524332303a207472616e7366657220616d6f756e74206578636565647320625f8201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b5f6133bd602683611fa2565b91506133c882613363565b604082019050919050565b5f6020820190508181035f8301526133ea816133b1565b905091905056fea26469706673582212200b93520c7e79f1133eda83754f26ba67b613b7538b39f40e2ca4a2d1d20a6b7664736f6c634300081c0033
Deployed Bytecode Sourcemap
21500:5205:1:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10526:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12759:194;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21727:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11646:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22004:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13435:529;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21801:71;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21923:36;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11488:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;14373:290;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21881:35;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21765:29;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21675:43;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23555:128;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21966:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11817:143;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24003:787;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3820:103;;;:::i;:::-;;22997:222;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3133:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10745:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21627:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15166:475;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12173:200;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23380:167;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23227:145;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21545:75;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12436:176;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23693:299;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4078:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10526:100;10580:13;10613:5;10606:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10526:100;:::o;12759:194::-;12867:4;12884:39;12893:12;:10;:12::i;:::-;12907:7;12916:6;12884:8;:39::i;:::-;12941:4;12934:11;;12759:194;;;;:::o;21727:31::-;;;;;;;;;;;;;:::o;11646:108::-;11707:7;11734:12;;11727:19;;11646:108;:::o;22004:31::-;;;;:::o;13435:529::-;13575:4;13592:36;13602:6;13610:9;13621:6;13592:9;:36::i;:::-;13641:24;13668:11;:19;13680:6;13668:19;;;;;;;;;;;;;;;:33;13688:12;:10;:12::i;:::-;13668:33;;;;;;;;;;;;;;;;13641:60;;13754:6;13734:16;:26;;13712:116;;;;;;;;;;;;:::i;:::-;;;;;;;;;13864:57;13873:6;13881:12;:10;:12::i;:::-;13914:6;13895:16;:25;13864:8;:57::i;:::-;13952:4;13945:11;;;13435:529;;;;;:::o;21801:71::-;;;;;;;;;;;;;:::o;21923:36::-;;;:::o;11488:93::-;11546:5;11571:2;11564:9;;11488:93;:::o;14373:290::-;14486:4;14503:130;14526:12;:10;:12::i;:::-;14553:7;14612:10;14575:11;:25;14587:12;:10;:12::i;:::-;14575:25;;;;;;;;;;;;;;;:34;14601:7;14575:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;14503:8;:130::i;:::-;14651:4;14644:11;;14373:290;;;;:::o;21881:35::-;;;:::o;21765:29::-;;;;;;;;;;;;;:::o;21675:43::-;21715:3;21675:43;:::o;23555:128::-;3377:12;:10;:12::i;:::-;3367:22;;:6;;;;;;;;;;;:22;;;3345:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;23665:10:::1;23640:12;:22;23653:8;23640:22;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;23555:128:::0;;:::o;21966:31::-;;;;:::o;11817:143::-;11907:7;11934:9;:18;11944:7;11934:18;;;;;;;;;;;;;;;;11927:25;;11817:143;;;:::o;24003:787::-;3377:12;:10;:12::i;:::-;3367:22;;:6;;;;;;;;;;;:22;;;3345:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;24117:1:::1;24102:12;:16;24094:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24195:1;24180:12;:16;24172:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;24252:17;24272:15;24252:35;;24333:26;24362:31;24369:9;24380:12;24362:6;:31::i;:::-;24333:60;;24411:9;24423:1;24411:13;;24406:377;24430:9;:16;24426:1;:20;24406:377;;;24473:9;24485:1;24473:13;;24468:304;24492:12;24488:1;:16;24468:304;;;24603:18;24662:7;24652;24624:25;24639:9;24635:1;24631;:5;;;;:::i;:::-;:17;;;;:::i;:::-;24624:6;:25::i;:::-;:35;;;;:::i;:::-;:45;;;;:::i;:::-;24603:66;;24688:68;24698:10;24710:9;24720:1;24710:12;;;;;;;;:::i;:::-;;;;;;;;24744:10;:8;:10::i;:::-;24738:2;:16;;;;:::i;:::-;24724:10;:31;;;;:::i;:::-;24688:9;:68::i;:::-;24511:261;24506:3;;;;;;;24468:304;;;;24448:3;;;;;;;24406:377;;;;24083:707;;24003:787:::0;;:::o;3820:103::-;3377:12;:10;:12::i;:::-;3367:22;;:6;;;;;;;;;;;:22;;;3345:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;3885:30:::1;3912:1;3885:18;:30::i;:::-;3820:103::o:0;22997:222::-;3377:12;:10;:12::i;:::-;3367:22;;:6;;;;;;;;;;;:22;;;3345:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;23102:1:::1;23076:28;;:14;:28;;::::0;23068:102:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23197:14;23181:13;;:30;;;;;;;;;;;;;;;;;;22997:222:::0;:::o;3133:87::-;3179:7;3206:6;;;;;;;;;;;3199:13;;3133:87;:::o;10745:104::-;10801:13;10834:7;10827:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10745:104;:::o;21627:40::-;21664:3;21627:40;:::o;15166:475::-;15284:4;15301:24;15328:11;:25;15340:12;:10;:12::i;:::-;15328:25;;;;;;;;;;;;;;;:34;15354:7;15328:34;;;;;;;;;;;;;;;;15301:61;;15415:15;15395:16;:35;;15373:122;;;;;;;;;;;;:::i;:::-;;;;;;;;;15531:67;15540:12;:10;:12::i;:::-;15554:7;15582:15;15563:16;:34;15531:8;:67::i;:::-;15629:4;15622:11;;;15166:475;;;;:::o;12173:200::-;12284:4;12301:42;12311:12;:10;:12::i;:::-;12325:9;12336:6;12301:9;:42::i;:::-;12361:4;12354:11;;12173:200;;;;:::o;23380:167::-;3377:12;:10;:12::i;:::-;3367:22;;:6;;;;;;;;;;;:22;;;3345:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;23487:13:::1;23472:12;:28;;;;23526:13;23511:12;:28;;;;23380:167:::0;;:::o;23227:145::-;3377:12;:10;:12::i;:::-;3367:22;;:6;;;;;;;;;;;:22;;;3345:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;23329:6:::1;23321:5;:14;;;;;;:::i;:::-;;23356:8;23346:7;:18;;;;;;:::i;:::-;;23227:145:::0;;:::o;21545:75::-;;;:::o;12436:176::-;12550:7;12577:11;:18;12589:5;12577:18;;;;;;;;;;;;;;;:27;12596:7;12577:27;;;;;;;;;;;;;;;;12570:34;;12436:176;;;;:::o;23693:299::-;3377:12;:10;:12::i;:::-;3367:22;;:6;;;;;;;;;;;:22;;;3345:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;23798:1:::1;23777:23;;:9;:23;;::::0;23769:61:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;23854:1;23845:6;:10;23837:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;23901:20;23940:10;:8;:10::i;:::-;23934:2;:16;;;;:::i;:::-;23924:6;:27;;;;:::i;:::-;23901:50;;23958:30;23964:9;23975:12;23958:5;:30::i;:::-;23762:230;23693:299:::0;;:::o;4078:238::-;3377:12;:10;:12::i;:::-;3367:22;;:6;;;;;;;;;;;:22;;;3345:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;4201:1:::1;4181:22;;:8;:22;;::::0;4159:110:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;4280:28;4299:8;4280:18;:28::i;:::-;4078:238:::0;:::o;1830:98::-;1883:7;1910:10;1903:17;;1830:98;:::o;18949:380::-;19102:1;19085:19;;:5;:19;;;19077:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19183:1;19164:21;;:7;:21;;;19156:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19267:6;19237:11;:18;19249:5;19237:18;;;;;;;;;;;;;;;:27;19256:7;19237:27;;;;;;;;;;;;;;;:36;;;;19305:7;19289:32;;19298:5;19289:32;;;19314:6;19289:32;;;;;;:::i;:::-;;;;;;;;18949:380;;;:::o;25435:1267::-;25603:4;25588:19;;:11;;;;;;;;;;;:19;;;25566:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;25705:1;25680:27;;:13;;;;;;;;;;;:27;;;:50;;;;;25726:4;25711:19;;:11;;;;;;;;;;;:19;;;25680:50;25676:209;;;25781:7;:5;:7::i;:::-;25773:15;;:4;:15;;;:32;;;;25798:7;:5;:7::i;:::-;25792:13;;:2;:13;;;25773:32;25747:126;;;;;;;;;;;;:::i;:::-;;;;;;;;;25676:209;25897:23;25923:6;25897:32;;25969:1;25944:27;;:13;;;;;;;;;;;:27;;;;:46;;;;;25983:7;:5;:7::i;:::-;25975:15;;:4;:15;;;;25944:46;:63;;;;;26000:7;:5;:7::i;:::-;25994:13;;:2;:13;;;;25944:63;25940:700;;;26024:12;26039:1;26024:16;;26067:13;;;;;;;;;;;26059:21;;:4;:21;;;26055:327;;26108:12;;26101:19;;26055:327;;;26165:13;;;;;;;;;;;26159:19;;:2;:19;;;26155:227;;26225:4;26203:26;;:12;:18;26216:4;26203:18;;;;;;;;;;;;;;;;;;;;;;;;;:26;;;26199:168;;26261:1;26254:8;;26199:168;;;26335:12;;26328:19;;26199:168;26155:227;26055:327;26407:1;26400:4;:8;26396:233;;;26429:22;21715:3;26454:30;;26463:4;26454:6;:13;;;;:::i;:::-;:30;;;;:::i;:::-;26429:55;;26530:14;26521:6;:23;;;;:::i;:::-;26503:41;;26563:50;26579:4;26585:11;;;;;;;;;;;26598:14;26563:15;:50::i;:::-;26410:219;26396:233;26009:631;25940:700;26652:42;26668:4;26674:2;26678:15;26652;:42::i;:::-;25555:1147;25435:1267;;;:::o;25001:424::-;25081:16;25110:26;25153:12;25139:27;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25110:56;;25177:13;25193:1;25177:17;;25212:9;25224:1;25212:13;;25207:182;25231:12;25227:1;:16;25207:182;;;25331:9;25342:1;25345:5;25314:37;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25304:48;;;;;;25296:57;;25265:9;25275:1;25265:12;;;;;;;;:::i;:::-;;;;;;;:90;;;;;;;;;;;25370:7;;;;;:::i;:::-;;;;25245:3;;;;;;;25207:182;;;;25408:9;25401:16;;;;25001:424;;;;:::o;24840:156::-;24892:7;24950:16;24968:15;24985:4;24933:57;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;24923:68;;;;;;24915:77;;24908:84;;24840:156;;;:::o;4476:191::-;4550:16;4569:6;;;;;;;;;;;4550:25;;4595:8;4586:6;;:17;;;;;;;;;;;;;;;;;;4650:8;4619:40;;4640:8;4619:40;;;;;;;;;;;;4539:128;4476:191;:::o;17188:399::-;17291:1;17272:21;;:7;:21;;;17264:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;17342:49;17371:1;17375:7;17384:6;17342:20;:49::i;:::-;17420:6;17404:12;;:22;;;;;;;:::i;:::-;;;;;;;;17459:6;17437:9;:18;17447:7;17437:18;;;;;;;;;;;;;;;;:28;;;;;;;:::i;:::-;;;;;;;;17502:7;17481:37;;17498:1;17481:37;;;17511:6;17481:37;;;;;;:::i;:::-;;;;;;;;17531:48;17559:1;17563:7;17572:6;17531:19;:48::i;:::-;17188:399;;:::o;16131:770::-;16289:1;16271:20;;:6;:20;;;16263:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;16373:1;16352:23;;:9;:23;;;16344:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;16428:47;16449:6;16457:9;16468:6;16428:20;:47::i;:::-;16488:21;16512:9;:17;16522:6;16512:17;;;;;;;;;;;;;;;;16488:41;;16579:6;16562:13;:23;;16540:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;16723:6;16707:13;:22;16687:9;:17;16697:6;16687:17;;;;;;;;;;;;;;;:42;;;;16775:6;16751:9;:20;16761:9;16751:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;16816:9;16799:35;;16808:6;16799:35;;;16827:6;16799:35;;;;;;:::i;:::-;;;;;;;;16847:46;16867:6;16875:9;16886:6;16847:19;:46::i;:::-;16252:649;16131:770;;;:::o;19929:125::-;;;;:::o;20658:124::-;;;;:::o;7:99:6:-;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:139::-;376:6;371:3;366;360:23;417:1;408:6;403:3;399:16;392:27;287:139;;;:::o;432:102::-;473:6;524:2;520:7;515:2;508:5;504:14;500:28;490:38;;432:102;;;:::o;540:377::-;628:3;656:39;689:5;656:39;:::i;:::-;711:71;775:6;770:3;711:71;:::i;:::-;704:78;;791:65;849:6;844:3;837:4;830:5;826:16;791:65;:::i;:::-;881:29;903:6;881:29;:::i;:::-;876:3;872:39;865:46;;632:285;540:377;;;;:::o;923:313::-;1036:4;1074:2;1063:9;1059:18;1051:26;;1123:9;1117:4;1113:20;1109:1;1098:9;1094:17;1087:47;1151:78;1224:4;1215:6;1151:78;:::i;:::-;1143:86;;923:313;;;;:::o;1242:75::-;1275:6;1308:2;1302:9;1292:19;;1242:75;:::o;1323:117::-;1432:1;1429;1422:12;1446:117;1555:1;1552;1545:12;1569:126;1606:7;1646:42;1639:5;1635:54;1624:65;;1569:126;;;:::o;1701:96::-;1738:7;1767:24;1785:5;1767:24;:::i;:::-;1756:35;;1701:96;;;:::o;1803:122::-;1876:24;1894:5;1876:24;:::i;:::-;1869:5;1866:35;1856:63;;1915:1;1912;1905:12;1856:63;1803:122;:::o;1931:139::-;1977:5;2015:6;2002:20;1993:29;;2031:33;2058:5;2031:33;:::i;:::-;1931:139;;;;:::o;2076:77::-;2113:7;2142:5;2131:16;;2076:77;;;:::o;2159:122::-;2232:24;2250:5;2232:24;:::i;:::-;2225:5;2222:35;2212:63;;2271:1;2268;2261:12;2212:63;2159:122;:::o;2287:139::-;2333:5;2371:6;2358:20;2349:29;;2387:33;2414:5;2387:33;:::i;:::-;2287:139;;;;:::o;2432:474::-;2500:6;2508;2557:2;2545:9;2536:7;2532:23;2528:32;2525:119;;;2563:79;;:::i;:::-;2525:119;2683:1;2708:53;2753:7;2744:6;2733:9;2729:22;2708:53;:::i;:::-;2698:63;;2654:117;2810:2;2836:53;2881:7;2872:6;2861:9;2857:22;2836:53;:::i;:::-;2826:63;;2781:118;2432:474;;;;;:::o;2912:90::-;2946:7;2989:5;2982:13;2975:21;2964:32;;2912:90;;;:::o;3008:109::-;3089:21;3104:5;3089:21;:::i;:::-;3084:3;3077:34;3008:109;;:::o;3123:210::-;3210:4;3248:2;3237:9;3233:18;3225:26;;3261:65;3323:1;3312:9;3308:17;3299:6;3261:65;:::i;:::-;3123:210;;;;:::o;3339:118::-;3426:24;3444:5;3426:24;:::i;:::-;3421:3;3414:37;3339:118;;:::o;3463:222::-;3556:4;3594:2;3583:9;3579:18;3571:26;;3607:71;3675:1;3664:9;3660:17;3651:6;3607:71;:::i;:::-;3463:222;;;;:::o;3691:619::-;3768:6;3776;3784;3833:2;3821:9;3812:7;3808:23;3804:32;3801:119;;;3839:79;;:::i;:::-;3801:119;3959:1;3984:53;4029:7;4020:6;4009:9;4005:22;3984:53;:::i;:::-;3974:63;;3930:117;4086:2;4112:53;4157:7;4148:6;4137:9;4133:22;4112:53;:::i;:::-;4102:63;;4057:118;4214:2;4240:53;4285:7;4276:6;4265:9;4261:22;4240:53;:::i;:::-;4230:63;;4185:118;3691:619;;;;;:::o;4316:118::-;4403:24;4421:5;4403:24;:::i;:::-;4398:3;4391:37;4316:118;;:::o;4440:222::-;4533:4;4571:2;4560:9;4556:18;4548:26;;4584:71;4652:1;4641:9;4637:17;4628:6;4584:71;:::i;:::-;4440:222;;;;:::o;4668:86::-;4703:7;4743:4;4736:5;4732:16;4721:27;;4668:86;;;:::o;4760:112::-;4843:22;4859:5;4843:22;:::i;:::-;4838:3;4831:35;4760:112;;:::o;4878:214::-;4967:4;5005:2;4994:9;4990:18;4982:26;;5018:67;5082:1;5071:9;5067:17;5058:6;5018:67;:::i;:::-;4878:214;;;;:::o;5098:89::-;5134:7;5174:6;5167:5;5163:18;5152:29;;5098:89;;;:::o;5193:115::-;5278:23;5295:5;5278:23;:::i;:::-;5273:3;5266:36;5193:115;;:::o;5314:218::-;5405:4;5443:2;5432:9;5428:18;5420:26;;5456:69;5522:1;5511:9;5507:17;5498:6;5456:69;:::i;:::-;5314:218;;;;:::o;5538:116::-;5608:21;5623:5;5608:21;:::i;:::-;5601:5;5598:32;5588:60;;5644:1;5641;5634:12;5588:60;5538:116;:::o;5660:133::-;5703:5;5741:6;5728:20;5719:29;;5757:30;5781:5;5757:30;:::i;:::-;5660:133;;;;:::o;5799:468::-;5864:6;5872;5921:2;5909:9;5900:7;5896:23;5892:32;5889:119;;;5927:79;;:::i;:::-;5889:119;6047:1;6072:53;6117:7;6108:6;6097:9;6093:22;6072:53;:::i;:::-;6062:63;;6018:117;6174:2;6200:50;6242:7;6233:6;6222:9;6218:22;6200:50;:::i;:::-;6190:60;;6145:115;5799:468;;;;;:::o;6273:329::-;6332:6;6381:2;6369:9;6360:7;6356:23;6352:32;6349:119;;;6387:79;;:::i;:::-;6349:119;6507:1;6532:53;6577:7;6568:6;6557:9;6553:22;6532:53;:::i;:::-;6522:63;;6478:117;6273:329;;;;:::o;6608:474::-;6676:6;6684;6733:2;6721:9;6712:7;6708:23;6704:32;6701:119;;;6739:79;;:::i;:::-;6701:119;6859:1;6884:53;6929:7;6920:6;6909:9;6905:22;6884:53;:::i;:::-;6874:63;;6830:117;6986:2;7012:53;7057:7;7048:6;7037:9;7033:22;7012:53;:::i;:::-;7002:63;;6957:118;6608:474;;;;;:::o;7088:117::-;7197:1;7194;7187:12;7211:117;7320:1;7317;7310:12;7334:180;7382:77;7379:1;7372:88;7479:4;7476:1;7469:15;7503:4;7500:1;7493:15;7520:281;7603:27;7625:4;7603:27;:::i;:::-;7595:6;7591:40;7733:6;7721:10;7718:22;7697:18;7685:10;7682:34;7679:62;7676:88;;;7744:18;;:::i;:::-;7676:88;7784:10;7780:2;7773:22;7563:238;7520:281;;:::o;7807:129::-;7841:6;7868:20;;:::i;:::-;7858:30;;7897:33;7925:4;7917:6;7897:33;:::i;:::-;7807:129;;;:::o;7942:308::-;8004:4;8094:18;8086:6;8083:30;8080:56;;;8116:18;;:::i;:::-;8080:56;8154:29;8176:6;8154:29;:::i;:::-;8146:37;;8238:4;8232;8228:15;8220:23;;7942:308;;;:::o;8256:148::-;8354:6;8349:3;8344;8331:30;8395:1;8386:6;8381:3;8377:16;8370:27;8256:148;;;:::o;8410:425::-;8488:5;8513:66;8529:49;8571:6;8529:49;:::i;:::-;8513:66;:::i;:::-;8504:75;;8602:6;8595:5;8588:21;8640:4;8633:5;8629:16;8678:3;8669:6;8664:3;8660:16;8657:25;8654:112;;;8685:79;;:::i;:::-;8654:112;8775:54;8822:6;8817:3;8812;8775:54;:::i;:::-;8494:341;8410:425;;;;;:::o;8855:340::-;8911:5;8960:3;8953:4;8945:6;8941:17;8937:27;8927:122;;8968:79;;:::i;:::-;8927:122;9085:6;9072:20;9110:79;9185:3;9177:6;9170:4;9162:6;9158:17;9110:79;:::i;:::-;9101:88;;8917:278;8855:340;;;;:::o;9201:834::-;9289:6;9297;9346:2;9334:9;9325:7;9321:23;9317:32;9314:119;;;9352:79;;:::i;:::-;9314:119;9500:1;9489:9;9485:17;9472:31;9530:18;9522:6;9519:30;9516:117;;;9552:79;;:::i;:::-;9516:117;9657:63;9712:7;9703:6;9692:9;9688:22;9657:63;:::i;:::-;9647:73;;9443:287;9797:2;9786:9;9782:18;9769:32;9828:18;9820:6;9817:30;9814:117;;;9850:79;;:::i;:::-;9814:117;9955:63;10010:7;10001:6;9990:9;9986:22;9955:63;:::i;:::-;9945:73;;9740:288;9201:834;;;;;:::o;10041:474::-;10109:6;10117;10166:2;10154:9;10145:7;10141:23;10137:32;10134:119;;;10172:79;;:::i;:::-;10134:119;10292:1;10317:53;10362:7;10353:6;10342:9;10338:22;10317:53;:::i;:::-;10307:63;;10263:117;10419:2;10445:53;10490:7;10481:6;10470:9;10466:22;10445:53;:::i;:::-;10435:63;;10390:118;10041:474;;;;;:::o;10521:180::-;10569:77;10566:1;10559:88;10666:4;10663:1;10656:15;10690:4;10687:1;10680:15;10707:320;10751:6;10788:1;10782:4;10778:12;10768:22;;10835:1;10829:4;10825:12;10856:18;10846:81;;10912:4;10904:6;10900:17;10890:27;;10846:81;10974:2;10966:6;10963:14;10943:18;10940:38;10937:84;;10993:18;;:::i;:::-;10937:84;10758:269;10707:320;;;:::o;11033:227::-;11173:34;11169:1;11161:6;11157:14;11150:58;11242:10;11237:2;11229:6;11225:15;11218:35;11033:227;:::o;11266:366::-;11408:3;11429:67;11493:2;11488:3;11429:67;:::i;:::-;11422:74;;11505:93;11594:3;11505:93;:::i;:::-;11623:2;11618:3;11614:12;11607:19;;11266:366;;;:::o;11638:419::-;11804:4;11842:2;11831:9;11827:18;11819:26;;11891:9;11885:4;11881:20;11877:1;11866:9;11862:17;11855:47;11919:131;12045:4;11919:131;:::i;:::-;11911:139;;11638:419;;;:::o;12063:180::-;12111:77;12108:1;12101:88;12208:4;12205:1;12198:15;12232:4;12229:1;12222:15;12249:191;12289:3;12308:20;12326:1;12308:20;:::i;:::-;12303:25;;12342:20;12360:1;12342:20;:::i;:::-;12337:25;;12385:1;12382;12378:9;12371:16;;12406:3;12403:1;12400:10;12397:36;;;12413:18;;:::i;:::-;12397:36;12249:191;;;;:::o;12446:182::-;12586:34;12582:1;12574:6;12570:14;12563:58;12446:182;:::o;12634:366::-;12776:3;12797:67;12861:2;12856:3;12797:67;:::i;:::-;12790:74;;12873:93;12962:3;12873:93;:::i;:::-;12991:2;12986:3;12982:12;12975:19;;12634:366;;;:::o;13006:419::-;13172:4;13210:2;13199:9;13195:18;13187:26;;13259:9;13253:4;13249:20;13245:1;13234:9;13230:17;13223:47;13287:131;13413:4;13287:131;:::i;:::-;13279:139;;13006:419;;;:::o;13431:225::-;13571:34;13567:1;13559:6;13555:14;13548:58;13640:8;13635:2;13627:6;13623:15;13616:33;13431:225;:::o;13662:366::-;13804:3;13825:67;13889:2;13884:3;13825:67;:::i;:::-;13818:74;;13901:93;13990:3;13901:93;:::i;:::-;14019:2;14014:3;14010:12;14003:19;;13662:366;;;:::o;14034:419::-;14200:4;14238:2;14227:9;14223:18;14215:26;;14287:9;14281:4;14277:20;14273:1;14262:9;14258:17;14251:47;14315:131;14441:4;14315:131;:::i;:::-;14307:139;;14034:419;;;:::o;14459:225::-;14599:34;14595:1;14587:6;14583:14;14576:58;14668:8;14663:2;14655:6;14651:15;14644:33;14459:225;:::o;14690:366::-;14832:3;14853:67;14917:2;14912:3;14853:67;:::i;:::-;14846:74;;14929:93;15018:3;14929:93;:::i;:::-;15047:2;15042:3;15038:12;15031:19;;14690:366;;;:::o;15062:419::-;15228:4;15266:2;15255:9;15251:18;15243:26;;15315:9;15309:4;15305:20;15301:1;15290:9;15286:17;15279:47;15343:131;15469:4;15343:131;:::i;:::-;15335:139;;15062:419;;;:::o;15487:180::-;15535:77;15532:1;15525:88;15632:4;15629:1;15622:15;15656:4;15653:1;15646:15;15673:176;15705:1;15722:20;15740:1;15722:20;:::i;:::-;15717:25;;15756:20;15774:1;15756:20;:::i;:::-;15751:25;;15795:1;15785:35;;15800:18;;:::i;:::-;15785:35;15841:1;15838;15834:9;15829:14;;15673:176;;;;:::o;15855:180::-;15903:77;15900:1;15893:88;16000:4;15997:1;15990:15;16024:4;16021:1;16014:15;16041:102;16083:8;16130:5;16127:1;16123:13;16102:34;;16041:102;;;:::o;16149:848::-;16210:5;16217:4;16241:6;16232:15;;16265:5;16256:14;;16279:712;16300:1;16290:8;16287:15;16279:712;;;16395:4;16390:3;16386:14;16380:4;16377:24;16374:50;;;16404:18;;:::i;:::-;16374:50;16454:1;16444:8;16440:16;16437:451;;;16869:4;16862:5;16858:16;16849:25;;16437:451;16919:4;16913;16909:15;16901:23;;16949:32;16972:8;16949:32;:::i;:::-;16937:44;;16279:712;;;16149:848;;;;;;;:::o;17003:1073::-;17057:5;17248:8;17238:40;;17269:1;17260:10;;17271:5;;17238:40;17297:4;17287:36;;17314:1;17305:10;;17316:5;;17287:36;17383:4;17431:1;17426:27;;;;17467:1;17462:191;;;;17376:277;;17426:27;17444:1;17435:10;;17446:5;;;17462:191;17507:3;17497:8;17494:17;17491:43;;;17514:18;;:::i;:::-;17491:43;17563:8;17560:1;17556:16;17547:25;;17598:3;17591:5;17588:14;17585:40;;;17605:18;;:::i;:::-;17585:40;17638:5;;;17376:277;;17762:2;17752:8;17749:16;17743:3;17737:4;17734:13;17730:36;17712:2;17702:8;17699:16;17694:2;17688:4;17685:12;17681:35;17665:111;17662:246;;;17818:8;17812:4;17808:19;17799:28;;17853:3;17846:5;17843:14;17840:40;;;17860:18;;:::i;:::-;17840:40;17893:5;;17662:246;17933:42;17971:3;17961:8;17955:4;17952:1;17933:42;:::i;:::-;17918:57;;;;18007:4;18002:3;17998:14;17991:5;17988:25;17985:51;;;18016:18;;:::i;:::-;17985:51;18065:4;18058:5;18054:16;18045:25;;17003:1073;;;;;;:::o;18082:281::-;18140:5;18164:23;18182:4;18164:23;:::i;:::-;18156:31;;18208:25;18224:8;18208:25;:::i;:::-;18196:37;;18252:104;18289:66;18279:8;18273:4;18252:104;:::i;:::-;18243:113;;18082:281;;;;:::o;18369:410::-;18409:7;18432:20;18450:1;18432:20;:::i;:::-;18427:25;;18466:20;18484:1;18466:20;:::i;:::-;18461:25;;18521:1;18518;18514:9;18543:30;18561:11;18543:30;:::i;:::-;18532:41;;18722:1;18713:7;18709:15;18706:1;18703:22;18683:1;18676:9;18656:83;18633:139;;18752:18;;:::i;:::-;18633:139;18417:362;18369:410;;;;:::o;18785:248::-;18925:34;18921:1;18913:6;18909:14;18902:58;18994:31;18989:2;18981:6;18977:15;18970:56;18785:248;:::o;19039:366::-;19181:3;19202:67;19266:2;19261:3;19202:67;:::i;:::-;19195:74;;19278:93;19367:3;19278:93;:::i;:::-;19396:2;19391:3;19387:12;19380:19;;19039:366;;;:::o;19411:419::-;19577:4;19615:2;19604:9;19600:18;19592:26;;19664:9;19658:4;19654:20;19650:1;19639:9;19635:17;19628:47;19692:131;19818:4;19692:131;:::i;:::-;19684:139;;19411:419;;;:::o;19836:224::-;19976:34;19972:1;19964:6;19960:14;19953:58;20045:7;20040:2;20032:6;20028:15;20021:32;19836:224;:::o;20066:366::-;20208:3;20229:67;20293:2;20288:3;20229:67;:::i;:::-;20222:74;;20305:93;20394:3;20305:93;:::i;:::-;20423:2;20418:3;20414:12;20407:19;;20066:366;;;:::o;20438:419::-;20604:4;20642:2;20631:9;20627:18;20619:26;;20691:9;20685:4;20681:20;20677:1;20666:9;20662:17;20655:47;20719:131;20845:4;20719:131;:::i;:::-;20711:139;;20438:419;;;:::o;20863:141::-;20912:4;20935:3;20927:11;;20958:3;20955:1;20948:14;20992:4;20989:1;20979:18;20971:26;;20863:141;;;:::o;21010:93::-;21047:6;21094:2;21089;21082:5;21078:14;21074:23;21064:33;;21010:93;;;:::o;21109:107::-;21153:8;21203:5;21197:4;21193:16;21172:37;;21109:107;;;;:::o;21222:393::-;21291:6;21341:1;21329:10;21325:18;21364:97;21394:66;21383:9;21364:97;:::i;:::-;21482:39;21512:8;21501:9;21482:39;:::i;:::-;21470:51;;21554:4;21550:9;21543:5;21539:21;21530:30;;21603:4;21593:8;21589:19;21582:5;21579:30;21569:40;;21298:317;;21222:393;;;;;:::o;21621:60::-;21649:3;21670:5;21663:12;;21621:60;;;:::o;21687:142::-;21737:9;21770:53;21788:34;21797:24;21815:5;21797:24;:::i;:::-;21788:34;:::i;:::-;21770:53;:::i;:::-;21757:66;;21687:142;;;:::o;21835:75::-;21878:3;21899:5;21892:12;;21835:75;;;:::o;21916:269::-;22026:39;22057:7;22026:39;:::i;:::-;22087:91;22136:41;22160:16;22136:41;:::i;:::-;22128:6;22121:4;22115:11;22087:91;:::i;:::-;22081:4;22074:105;21992:193;21916:269;;;:::o;22191:73::-;22236:3;22257:1;22250:8;;22191:73;:::o;22270:189::-;22347:32;;:::i;:::-;22388:65;22446:6;22438;22432:4;22388:65;:::i;:::-;22323:136;22270:189;;:::o;22465:186::-;22525:120;22542:3;22535:5;22532:14;22525:120;;;22596:39;22633:1;22626:5;22596:39;:::i;:::-;22569:1;22562:5;22558:13;22549:22;;22525:120;;;22465:186;;:::o;22657:543::-;22758:2;22753:3;22750:11;22747:446;;;22792:38;22824:5;22792:38;:::i;:::-;22876:29;22894:10;22876:29;:::i;:::-;22866:8;22862:44;23059:2;23047:10;23044:18;23041:49;;;23080:8;23065:23;;23041:49;23103:80;23159:22;23177:3;23159:22;:::i;:::-;23149:8;23145:37;23132:11;23103:80;:::i;:::-;22762:431;;22747:446;22657:543;;;:::o;23206:117::-;23260:8;23310:5;23304:4;23300:16;23279:37;;23206:117;;;;:::o;23329:169::-;23373:6;23406:51;23454:1;23450:6;23442:5;23439:1;23435:13;23406:51;:::i;:::-;23402:56;23487:4;23481;23477:15;23467:25;;23380:118;23329:169;;;;:::o;23503:295::-;23579:4;23725:29;23750:3;23744:4;23725:29;:::i;:::-;23717:37;;23787:3;23784:1;23780:11;23774:4;23771:21;23763:29;;23503:295;;;;:::o;23803:1395::-;23920:37;23953:3;23920:37;:::i;:::-;24022:18;24014:6;24011:30;24008:56;;;24044:18;;:::i;:::-;24008:56;24088:38;24120:4;24114:11;24088:38;:::i;:::-;24173:67;24233:6;24225;24219:4;24173:67;:::i;:::-;24267:1;24291:4;24278:17;;24323:2;24315:6;24312:14;24340:1;24335:618;;;;24997:1;25014:6;25011:77;;;25063:9;25058:3;25054:19;25048:26;25039:35;;25011:77;25114:67;25174:6;25167:5;25114:67;:::i;:::-;25108:4;25101:81;24970:222;24305:887;;24335:618;24387:4;24383:9;24375:6;24371:22;24421:37;24453:4;24421:37;:::i;:::-;24480:1;24494:208;24508:7;24505:1;24502:14;24494:208;;;24587:9;24582:3;24578:19;24572:26;24564:6;24557:42;24638:1;24630:6;24626:14;24616:24;;24685:2;24674:9;24670:18;24657:31;;24531:4;24528:1;24524:12;24519:17;;24494:208;;;24730:6;24721:7;24718:19;24715:179;;;24788:9;24783:3;24779:19;24773:26;24831:48;24873:4;24865:6;24861:17;24850:9;24831:48;:::i;:::-;24823:6;24816:64;24738:156;24715:179;24940:1;24936;24928:6;24924:14;24920:22;24914:4;24907:36;24342:611;;;24305:887;;23895:1303;;;23803:1395;;:::o;25204:175::-;25344:27;25340:1;25332:6;25328:14;25321:51;25204:175;:::o;25385:366::-;25527:3;25548:67;25612:2;25607:3;25548:67;:::i;:::-;25541:74;;25624:93;25713:3;25624:93;:::i;:::-;25742:2;25737:3;25733:12;25726:19;;25385:366;;;:::o;25757:419::-;25923:4;25961:2;25950:9;25946:18;25938:26;;26010:9;26004:4;26000:20;25996:1;25985:9;25981:17;25974:47;26038:131;26164:4;26038:131;:::i;:::-;26030:139;;25757:419;;;:::o;26182:182::-;26322:34;26318:1;26310:6;26306:14;26299:58;26182:182;:::o;26370:366::-;26512:3;26533:67;26597:2;26592:3;26533:67;:::i;:::-;26526:74;;26609:93;26698:3;26609:93;:::i;:::-;26727:2;26722:3;26718:12;26711:19;;26370:366;;;:::o;26742:419::-;26908:4;26946:2;26935:9;26931:18;26923:26;;26995:9;26989:4;26985:20;26981:1;26970:9;26966:17;26959:47;27023:131;27149:4;27023:131;:::i;:::-;27015:139;;26742:419;;;:::o;27167:225::-;27307:34;27303:1;27295:6;27291:14;27284:58;27376:8;27371:2;27363:6;27359:15;27352:33;27167:225;:::o;27398:366::-;27540:3;27561:67;27625:2;27620:3;27561:67;:::i;:::-;27554:74;;27637:93;27726:3;27637:93;:::i;:::-;27755:2;27750:3;27746:12;27739:19;;27398:366;;;:::o;27770:419::-;27936:4;27974:2;27963:9;27959:18;27951:26;;28023:9;28017:4;28013:20;28009:1;27998:9;27994:17;27987:47;28051:131;28177:4;28051:131;:::i;:::-;28043:139;;27770:419;;;:::o;28195:223::-;28335:34;28331:1;28323:6;28319:14;28312:58;28404:6;28399:2;28391:6;28387:15;28380:31;28195:223;:::o;28424:366::-;28566:3;28587:67;28651:2;28646:3;28587:67;:::i;:::-;28580:74;;28663:93;28752:3;28663:93;:::i;:::-;28781:2;28776:3;28772:12;28765:19;;28424:366;;;:::o;28796:419::-;28962:4;29000:2;28989:9;28985:18;28977:26;;29049:9;29043:4;29039:20;29035:1;29024:9;29020:17;29013:47;29077:131;29203:4;29077:131;:::i;:::-;29069:139;;28796:419;;;:::o;29221:221::-;29361:34;29357:1;29349:6;29345:14;29338:58;29430:4;29425:2;29417:6;29413:15;29406:29;29221:221;:::o;29448:366::-;29590:3;29611:67;29675:2;29670:3;29611:67;:::i;:::-;29604:74;;29687:93;29776:3;29687:93;:::i;:::-;29805:2;29800:3;29796:12;29789:19;;29448:366;;;:::o;29820:419::-;29986:4;30024:2;30013:9;30009:18;30001:26;;30073:9;30067:4;30063:20;30059:1;30048:9;30044:17;30037:47;30101:131;30227:4;30101:131;:::i;:::-;30093:139;;29820:419;;;:::o;30245:178::-;30385:30;30381:1;30373:6;30369:14;30362:54;30245:178;:::o;30429:366::-;30571:3;30592:67;30656:2;30651:3;30592:67;:::i;:::-;30585:74;;30668:93;30757:3;30668:93;:::i;:::-;30786:2;30781:3;30777:12;30770:19;;30429:366;;;:::o;30801:419::-;30967:4;31005:2;30994:9;30990:18;30982:26;;31054:9;31048:4;31044:20;31040:1;31029:9;31025:17;31018:47;31082:131;31208:4;31082:131;:::i;:::-;31074:139;;30801:419;;;:::o;31226:182::-;31366:34;31362:1;31354:6;31350:14;31343:58;31226:182;:::o;31414:366::-;31556:3;31577:67;31641:2;31636:3;31577:67;:::i;:::-;31570:74;;31653:93;31742:3;31653:93;:::i;:::-;31771:2;31766:3;31762:12;31755:19;;31414:366;;;:::o;31786:419::-;31952:4;31990:2;31979:9;31975:18;31967:26;;32039:9;32033:4;32029:20;32025:1;32014:9;32010:17;32003:47;32067:131;32193:4;32067:131;:::i;:::-;32059:139;;31786:419;;;:::o;32211:185::-;32251:1;32268:20;32286:1;32268:20;:::i;:::-;32263:25;;32302:20;32320:1;32302:20;:::i;:::-;32297:25;;32341:1;32331:35;;32346:18;;:::i;:::-;32331:35;32388:1;32385;32381:9;32376:14;;32211:185;;;;:::o;32402:194::-;32442:4;32462:20;32480:1;32462:20;:::i;:::-;32457:25;;32496:20;32514:1;32496:20;:::i;:::-;32491:25;;32540:1;32537;32533:9;32525:17;;32564:1;32558:4;32555:11;32552:37;;;32569:18;;:::i;:::-;32552:37;32402:194;;;;:::o;32602:79::-;32641:7;32670:5;32659:16;;32602:79;;;:::o;32687:157::-;32792:45;32812:24;32830:5;32812:24;:::i;:::-;32792:45;:::i;:::-;32787:3;32780:58;32687:157;;:::o;32850:538::-;33018:3;33033:75;33104:3;33095:6;33033:75;:::i;:::-;33133:2;33128:3;33124:12;33117:19;;33146:75;33217:3;33208:6;33146:75;:::i;:::-;33246:2;33241:3;33237:12;33230:19;;33259:75;33330:3;33321:6;33259:75;:::i;:::-;33359:2;33354:3;33350:12;33343:19;;33379:3;33372:10;;32850:538;;;;;;:::o;33394:233::-;33433:3;33456:24;33474:5;33456:24;:::i;:::-;33447:33;;33502:66;33495:5;33492:77;33489:103;;33572:18;;:::i;:::-;33489:103;33619:1;33612:5;33608:13;33601:20;;33394:233;;;:::o;33633:181::-;33773:33;33769:1;33761:6;33757:14;33750:57;33633:181;:::o;33820:366::-;33962:3;33983:67;34047:2;34042:3;33983:67;:::i;:::-;33976:74;;34059:93;34148:3;34059:93;:::i;:::-;34177:2;34172:3;34168:12;34161:19;;33820:366;;;:::o;34192:419::-;34358:4;34396:2;34385:9;34381:18;34373:26;;34445:9;34439:4;34435:20;34431:1;34420:9;34416:17;34409:47;34473:131;34599:4;34473:131;:::i;:::-;34465:139;;34192:419;;;:::o;34617:224::-;34757:34;34753:1;34745:6;34741:14;34734:58;34826:7;34821:2;34813:6;34809:15;34802:32;34617:224;:::o;34847:366::-;34989:3;35010:67;35074:2;35069:3;35010:67;:::i;:::-;35003:74;;35086:93;35175:3;35086:93;:::i;:::-;35204:2;35199:3;35195:12;35188:19;;34847:366;;;:::o;35219:419::-;35385:4;35423:2;35412:9;35408:18;35400:26;;35472:9;35466:4;35462:20;35458:1;35447:9;35443:17;35436:47;35500:131;35626:4;35500:131;:::i;:::-;35492:139;;35219:419;;;:::o;35644:222::-;35784:34;35780:1;35772:6;35768:14;35761:58;35853:5;35848:2;35840:6;35836:15;35829:30;35644:222;:::o;35872:366::-;36014:3;36035:67;36099:2;36094:3;36035:67;:::i;:::-;36028:74;;36111:93;36200:3;36111:93;:::i;:::-;36229:2;36224:3;36220:12;36213:19;;35872:366;;;:::o;36244:419::-;36410:4;36448:2;36437:9;36433:18;36425:26;;36497:9;36491:4;36487:20;36483:1;36472:9;36468:17;36461:47;36525:131;36651:4;36525:131;:::i;:::-;36517:139;;36244:419;;;:::o;36669:225::-;36809:34;36805:1;36797:6;36793:14;36786:58;36878:8;36873:2;36865:6;36861:15;36854:33;36669:225;:::o;36900:366::-;37042:3;37063:67;37127:2;37122:3;37063:67;:::i;:::-;37056:74;;37139:93;37228:3;37139:93;:::i;:::-;37257:2;37252:3;37248:12;37241:19;;36900:366;;;:::o;37272:419::-;37438:4;37476:2;37465:9;37461:18;37453:26;;37525:9;37519:4;37515:20;37511:1;37500:9;37496:17;37489:47;37553:131;37679:4;37553:131;:::i;:::-;37545:139;;37272:419;;;:::o
Swarm Source
ipfs://0b93520c7e79f1133eda83754f26ba67b613b7538b39f40e2ca4a2d1d20a6b76
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.