More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 356 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 20673074 | 62 days ago | IN | 0 ETH | 0.00005931 | ||||
Approve | 20624719 | 69 days ago | IN | 0 ETH | 0.00005385 | ||||
Approve | 20488732 | 88 days ago | IN | 0 ETH | 0.00006547 | ||||
Approve | 20343500 | 108 days ago | IN | 0 ETH | 0.00027901 | ||||
Approve | 20189446 | 130 days ago | IN | 0 ETH | 0.00020343 | ||||
Approve | 19935488 | 165 days ago | IN | 0 ETH | 0.00103351 | ||||
Approve | 19859725 | 176 days ago | IN | 0 ETH | 0.00021938 | ||||
Approve | 19024183 | 293 days ago | IN | 0 ETH | 0.00146506 | ||||
Transfer | 18873597 | 314 days ago | IN | 0 ETH | 0.00080185 | ||||
Approve | 18724011 | 335 days ago | IN | 0 ETH | 0.00245313 | ||||
Approve | 18151286 | 415 days ago | IN | 0 ETH | 0.00050396 | ||||
Approve | 17968651 | 441 days ago | IN | 0 ETH | 0.00066017 | ||||
Approve | 17751718 | 471 days ago | IN | 0 ETH | 0.00088848 | ||||
Approve | 17649977 | 485 days ago | IN | 0 ETH | 0.00138744 | ||||
Approve | 17571612 | 496 days ago | IN | 0 ETH | 0.00060579 | ||||
Approve | 17467063 | 511 days ago | IN | 0 ETH | 0.00039902 | ||||
Approve | 17359327 | 526 days ago | IN | 0 ETH | 0.0012994 | ||||
Transfer | 17243516 | 543 days ago | IN | 0 ETH | 0.00269196 | ||||
Approve | 17202926 | 548 days ago | IN | 0 ETH | 0.00496775 | ||||
Approve | 17165198 | 554 days ago | IN | 0 ETH | 0.00220237 | ||||
Transfer | 17160968 | 554 days ago | IN | 0 ETH | 0.00218542 | ||||
Approve | 17143890 | 557 days ago | IN | 0 ETH | 0.00142685 | ||||
Approve | 17129355 | 559 days ago | IN | 0 ETH | 0.00169812 | ||||
Approve | 17125838 | 559 days ago | IN | 0 ETH | 0.0022364 | ||||
Approve | 17121882 | 560 days ago | IN | 0 ETH | 0.0014738 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
Copepe
Compiler Version
v0.8.18+commit.87f61d96
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-04-18 */ // SPDX-License-Identifier: MIT // File: @openzeppelin/contracts/utils/Context.sol // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } // File: @openzeppelin/contracts/access/Ownable.sol // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } // File: @openzeppelin/contracts/token/ERC20/IERC20.sol // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } // File: @openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); } // File: @openzeppelin/contracts/token/ERC20/ERC20.sol // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; /** * @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.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev 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; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } // File: contracts/Copepe.sol pragma solidity ^0.8.9; contract Copepe is ERC20, Ownable { bool public limited; uint256 public maxHoldingAmount; uint256 public minHoldingAmount; address public uniswapV2Pair; mapping(address => bool) public blacklists; constructor() ERC20("Copepe", "COPEPE") { _mint(msg.sender, 420690000000000 * 10 ** decimals()); } function blacklist(address _address, bool _isBlacklisting) external onlyOwner { blacklists[_address] = _isBlacklisting; } function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _minHoldingAmount) external onlyOwner { limited = _limited; uniswapV2Pair = _uniswapV2Pair; maxHoldingAmount = _maxHoldingAmount; minHoldingAmount = _minHoldingAmount; } function _beforeTokenTransfer( address from, address to, uint256 amount ) override internal virtual { require(!blacklists[to] && !blacklists[from], "Blacklisted"); if (uniswapV2Pair == address(0)) { require(from == owner() || to == owner(), "Trading has not started yet!"); return; } if (limited && from == uniswapV2Pair) { require(super.balanceOf(to) + amount <= maxHoldingAmount && super.balanceOf(to) + amount >= minHoldingAmount, "Forbid"); } } function burn(uint256 value) external { _burn(msg.sender, value); } }
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":"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":[{"internalType":"address","name":"_address","type":"address"},{"internalType":"bool","name":"_isBlacklisting","type":"bool"}],"name":"blacklist","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"blacklists","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":"limited","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minHoldingAmount","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":[{"internalType":"bool","name":"_limited","type":"bool"},{"internalType":"address","name":"_uniswapV2Pair","type":"address"},{"internalType":"uint256","name":"_maxHoldingAmount","type":"uint256"},{"internalType":"uint256","name":"_minHoldingAmount","type":"uint256"}],"name":"setRule","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600681526020017f436f7065706500000000000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f434f50455045000000000000000000000000000000000000000000000000000081525081600390816200008f91906200095e565b508060049081620000a191906200095e565b505050620000c4620000b86200010d60201b60201c565b6200011560201b60201c565b6200010733620000d9620001db60201b60201c565b600a620000e7919062000bd5565b66017e9d8602b400620000fb919062000c26565b620001e460201b60201c565b62000eb3565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006012905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000256576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200024d9062000cd2565b60405180910390fd5b6200026a600083836200035160201b60201c565b80600260008282546200027e919062000cf4565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000331919062000d40565b60405180910390a36200034d600083836200066d60201b60201c565b5050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003f65750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000438576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200042f9062000dad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036200055b576200049f6200067260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620005135750620004e46200067260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000555576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054c9062000e1f565b60405180910390fd5b62000668565b600560149054906101000a900460ff168015620005c55750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006675760065481620005e5846200069c60201b620006b01760201c565b620005f1919062000cf4565b111580156200062457506007548162000615846200069c60201b620006b01760201c565b62000621919062000cf4565b10155b62000666576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200065d9062000e91565b60405180910390fd5b5b5b505050565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200076657607f821691505b6020821081036200077c576200077b6200071e565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007e67fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620007a7565b620007f28683620007a7565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200083f6200083962000833846200080a565b62000814565b6200080a565b9050919050565b6000819050919050565b6200085b836200081e565b620008736200086a8262000846565b848454620007b4565b825550505050565b600090565b6200088a6200087b565b6200089781848462000850565b505050565b5b81811015620008bf57620008b360008262000880565b6001810190506200089d565b5050565b601f8211156200090e57620008d88162000782565b620008e38462000797565b81016020851015620008f3578190505b6200090b620009028562000797565b8301826200089c565b50505b505050565b600082821c905092915050565b6000620009336000198460080262000913565b1980831691505092915050565b60006200094e838362000920565b9150826002028217905092915050565b6200096982620006e4565b67ffffffffffffffff811115620009855762000984620006ef565b5b6200099182546200074d565b6200099e828285620008c3565b600060209050601f831160018114620009d65760008415620009c1578287015190505b620009cd858262000940565b86555062000a3d565b601f198416620009e68662000782565b60005b8281101562000a1057848901518255600182019150602085019450602081019050620009e9565b8683101562000a30578489015162000a2c601f89168262000920565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ad35780860481111562000aab5762000aaa62000a45565b5b600185161562000abb5780820291505b808102905062000acb8562000a74565b945062000a8b565b94509492505050565b60008262000aee576001905062000bc1565b8162000afe576000905062000bc1565b816001811462000b17576002811462000b225762000b58565b600191505062000bc1565b60ff84111562000b375762000b3662000a45565b5b8360020a91508482111562000b515762000b5062000a45565b5b5062000bc1565b5060208310610133831016604e8410600b841016171562000b925782820a90508381111562000b8c5762000b8b62000a45565b5b62000bc1565b62000ba1848484600162000a81565b9250905081840481111562000bbb5762000bba62000a45565b5b81810290505b9392505050565b600060ff82169050919050565b600062000be2826200080a565b915062000bef8362000bc8565b925062000c1e7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000adc565b905092915050565b600062000c33826200080a565b915062000c40836200080a565b925082820262000c50816200080a565b9150828204841483151762000c6a5762000c6962000a45565b5b5092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000cba601f8362000c71565b915062000cc78262000c82565b602082019050919050565b6000602082019050818103600083015262000ced8162000cab565b9050919050565b600062000d01826200080a565b915062000d0e836200080a565b925082820190508082111562000d295762000d2862000a45565b5b92915050565b62000d3a816200080a565b82525050565b600060208201905062000d57600083018462000d2f565b92915050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b600062000d95600b8362000c71565b915062000da28262000d5d565b602082019050919050565b6000602082019050818103600083015262000dc88162000d86565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965742100000000600082015250565b600062000e07601c8362000c71565b915062000e148262000dcf565b602082019050919050565b6000602082019050818103600083015262000e3a8162000df8565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b600062000e7960068362000c71565b915062000e868262000e41565b602082019050919050565b6000602082019050818103600083015262000eac8162000e6a565b9050919050565b61208f8062000ec36000396000f3fe608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461036757806395d89b4114610385578063a457c2d7146103a3578063a9059cbb146103d3578063dd62ed3e14610403578063f2fde38b1461043357610142565b806349bd5a5e146102d357806370a08231146102f1578063715018a614610321578063860a32ec1461032b57806389f9a1d31461034957610142565b806323b872dd1161010a57806323b872dd14610201578063313ce56714610231578063395093511461024f5780633aa633aa1461027f578063404e51291461029b57806342966c68146102b757610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461019557806318160ddd146101c55780631ab99e12146101e3575b600080fd5b61014f61044f565b60405161015c91906114dc565b60405180910390f35b61017f600480360381019061017a9190611597565b6104e1565b60405161018c91906115f2565b60405180910390f35b6101af60048036038101906101aa919061160d565b610504565b6040516101bc91906115f2565b60405180910390f35b6101cd610524565b6040516101da9190611649565b60405180910390f35b6101eb61052e565b6040516101f89190611649565b60405180910390f35b61021b60048036038101906102169190611664565b610534565b60405161022891906115f2565b60405180910390f35b610239610563565b60405161024691906116d3565b60405180910390f35b61026960048036038101906102649190611597565b61056c565b60405161027691906115f2565b60405180910390f35b6102996004803603810190610294919061171a565b6105a3565b005b6102b560048036038101906102b09190611781565b61061a565b005b6102d160048036038101906102cc91906117c1565b61067d565b005b6102db61068a565b6040516102e891906117fd565b60405180910390f35b61030b6004803603810190610306919061160d565b6106b0565b6040516103189190611649565b60405180910390f35b6103296106f8565b005b61033361070c565b60405161034091906115f2565b60405180910390f35b61035161071f565b60405161035e9190611649565b60405180910390f35b61036f610725565b60405161037c91906117fd565b60405180910390f35b61038d61074f565b60405161039a91906114dc565b60405180910390f35b6103bd60048036038101906103b89190611597565b6107e1565b6040516103ca91906115f2565b60405180910390f35b6103ed60048036038101906103e89190611597565b610858565b6040516103fa91906115f2565b60405180910390f35b61041d60048036038101906104189190611818565b61087b565b60405161042a9190611649565b60405180910390f35b61044d6004803603810190610448919061160d565b610902565b005b60606003805461045e90611887565b80601f016020809104026020016040519081016040528092919081815260200182805461048a90611887565b80156104d75780601f106104ac576101008083540402835291602001916104d7565b820191906000526020600020905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b6000806104ec610985565b90506104f981858561098d565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60075481565b60008061053f610985565b905061054c858285610b56565b610557858585610be2565b60019150509392505050565b60006012905090565b600080610577610985565b9050610598818585610589858961087b565b61059391906118e7565b61098d565b600191505092915050565b6105ab610e58565b83600560146101000a81548160ff02191690831515021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816006819055508060078190555050505050565b610622610e58565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6106873382610ed6565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610700610e58565b61070a60006110a3565b565b600560149054906101000a900460ff1681565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461075e90611887565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90611887565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b6000806107ec610985565b905060006107fa828661087b565b90508381101561083f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108369061198d565b60405180910390fd5b61084c828686840361098d565b60019250505092915050565b600080610863610985565b9050610870818585610be2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61090a610e58565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090611a1f565b60405180910390fd5b610982816110a3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390611ab1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290611b43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b499190611649565b60405180910390a3505050565b6000610b62848461087b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bdc5781811015610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590611baf565b60405180910390fd5b610bdb848484840361098d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611c41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611cd3565b60405180910390fd5b610ccb838383611169565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890611d65565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3f9190611649565b60405180910390a3610e52848484611447565b50505050565b610e60610985565b73ffffffffffffffffffffffffffffffffffffffff16610e7e610725565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90611dd1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90611e63565b60405180910390fd5b610f5182600083611169565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90611ef5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161108a9190611649565b60405180910390a361109e83600084611447565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561120d5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390611f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611359576112aa610725565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061131557506112e6610725565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90611fcd565b60405180910390fd5b611442565b600560149054906101000a900460ff1680156113c25750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561144157600654816113d4846106b0565b6113de91906118e7565b111580156114015750600754816113f4846106b0565b6113fe91906118e7565b10155b611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790612039565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561148657808201518184015260208101905061146b565b60008484015250505050565b6000601f19601f8301169050919050565b60006114ae8261144c565b6114b88185611457565b93506114c8818560208601611468565b6114d181611492565b840191505092915050565b600060208201905081810360008301526114f681846114a3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061152e82611503565b9050919050565b61153e81611523565b811461154957600080fd5b50565b60008135905061155b81611535565b92915050565b6000819050919050565b61157481611561565b811461157f57600080fd5b50565b6000813590506115918161156b565b92915050565b600080604083850312156115ae576115ad6114fe565b5b60006115bc8582860161154c565b92505060206115cd85828601611582565b9150509250929050565b60008115159050919050565b6115ec816115d7565b82525050565b600060208201905061160760008301846115e3565b92915050565b600060208284031215611623576116226114fe565b5b60006116318482850161154c565b91505092915050565b61164381611561565b82525050565b600060208201905061165e600083018461163a565b92915050565b60008060006060848603121561167d5761167c6114fe565b5b600061168b8682870161154c565b935050602061169c8682870161154c565b92505060406116ad86828701611582565b9150509250925092565b600060ff82169050919050565b6116cd816116b7565b82525050565b60006020820190506116e860008301846116c4565b92915050565b6116f7816115d7565b811461170257600080fd5b50565b600081359050611714816116ee565b92915050565b60008060008060808587031215611734576117336114fe565b5b600061174287828801611705565b94505060206117538782880161154c565b935050604061176487828801611582565b925050606061177587828801611582565b91505092959194509250565b60008060408385031215611798576117976114fe565b5b60006117a68582860161154c565b92505060206117b785828601611705565b9150509250929050565b6000602082840312156117d7576117d66114fe565b5b60006117e584828501611582565b91505092915050565b6117f781611523565b82525050565b600060208201905061181260008301846117ee565b92915050565b6000806040838503121561182f5761182e6114fe565b5b600061183d8582860161154c565b925050602061184e8582860161154c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061189f57607f821691505b6020821081036118b2576118b1611858565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118f282611561565b91506118fd83611561565b9250828201905080821115611915576119146118b8565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611977602583611457565b91506119828261191b565b604082019050919050565b600060208201905081810360008301526119a68161196a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a09602683611457565b9150611a14826119ad565b604082019050919050565b60006020820190508181036000830152611a38816119fc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a9b602483611457565b9150611aa682611a3f565b604082019050919050565b60006020820190508181036000830152611aca81611a8e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b2d602283611457565b9150611b3882611ad1565b604082019050919050565b60006020820190508181036000830152611b5c81611b20565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b99601d83611457565b9150611ba482611b63565b602082019050919050565b60006020820190508181036000830152611bc881611b8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c2b602583611457565b9150611c3682611bcf565b604082019050919050565b60006020820190508181036000830152611c5a81611c1e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cbd602383611457565b9150611cc882611c61565b604082019050919050565b60006020820190508181036000830152611cec81611cb0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d4f602683611457565b9150611d5a82611cf3565b604082019050919050565b60006020820190508181036000830152611d7e81611d42565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dbb602083611457565b9150611dc682611d85565b602082019050919050565b60006020820190508181036000830152611dea81611dae565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4d602183611457565b9150611e5882611df1565b604082019050919050565b60006020820190508181036000830152611e7c81611e40565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611edf602283611457565b9150611eea82611e83565b604082019050919050565b60006020820190508181036000830152611f0e81611ed2565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000611f4b600b83611457565b9150611f5682611f15565b602082019050919050565b60006020820190508181036000830152611f7a81611f3e565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965742100000000600082015250565b6000611fb7601c83611457565b9150611fc282611f81565b602082019050919050565b60006020820190508181036000830152611fe681611faa565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612023600683611457565b915061202e82611fed565b602082019050919050565b6000602082019050818103600083015261205281612016565b905091905056fea26469706673582212201ac489e6551f38f0692b27f2b335c34f306079a635e68a55f8609483babc932564736f6c63430008120033
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101425760003560e01c806349bd5a5e116100b85780638da5cb5b1161007c5780638da5cb5b1461036757806395d89b4114610385578063a457c2d7146103a3578063a9059cbb146103d3578063dd62ed3e14610403578063f2fde38b1461043357610142565b806349bd5a5e146102d357806370a08231146102f1578063715018a614610321578063860a32ec1461032b57806389f9a1d31461034957610142565b806323b872dd1161010a57806323b872dd14610201578063313ce56714610231578063395093511461024f5780633aa633aa1461027f578063404e51291461029b57806342966c68146102b757610142565b806306fdde0314610147578063095ea7b31461016557806316c021291461019557806318160ddd146101c55780631ab99e12146101e3575b600080fd5b61014f61044f565b60405161015c91906114dc565b60405180910390f35b61017f600480360381019061017a9190611597565b6104e1565b60405161018c91906115f2565b60405180910390f35b6101af60048036038101906101aa919061160d565b610504565b6040516101bc91906115f2565b60405180910390f35b6101cd610524565b6040516101da9190611649565b60405180910390f35b6101eb61052e565b6040516101f89190611649565b60405180910390f35b61021b60048036038101906102169190611664565b610534565b60405161022891906115f2565b60405180910390f35b610239610563565b60405161024691906116d3565b60405180910390f35b61026960048036038101906102649190611597565b61056c565b60405161027691906115f2565b60405180910390f35b6102996004803603810190610294919061171a565b6105a3565b005b6102b560048036038101906102b09190611781565b61061a565b005b6102d160048036038101906102cc91906117c1565b61067d565b005b6102db61068a565b6040516102e891906117fd565b60405180910390f35b61030b6004803603810190610306919061160d565b6106b0565b6040516103189190611649565b60405180910390f35b6103296106f8565b005b61033361070c565b60405161034091906115f2565b60405180910390f35b61035161071f565b60405161035e9190611649565b60405180910390f35b61036f610725565b60405161037c91906117fd565b60405180910390f35b61038d61074f565b60405161039a91906114dc565b60405180910390f35b6103bd60048036038101906103b89190611597565b6107e1565b6040516103ca91906115f2565b60405180910390f35b6103ed60048036038101906103e89190611597565b610858565b6040516103fa91906115f2565b60405180910390f35b61041d60048036038101906104189190611818565b61087b565b60405161042a9190611649565b60405180910390f35b61044d6004803603810190610448919061160d565b610902565b005b60606003805461045e90611887565b80601f016020809104026020016040519081016040528092919081815260200182805461048a90611887565b80156104d75780601f106104ac576101008083540402835291602001916104d7565b820191906000526020600020905b8154815290600101906020018083116104ba57829003601f168201915b5050505050905090565b6000806104ec610985565b90506104f981858561098d565b600191505092915050565b60096020528060005260406000206000915054906101000a900460ff1681565b6000600254905090565b60075481565b60008061053f610985565b905061054c858285610b56565b610557858585610be2565b60019150509392505050565b60006012905090565b600080610577610985565b9050610598818585610589858961087b565b61059391906118e7565b61098d565b600191505092915050565b6105ab610e58565b83600560146101000a81548160ff02191690831515021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816006819055508060078190555050505050565b610622610e58565b80600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6106873382610ed6565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610700610e58565b61070a60006110a3565b565b600560149054906101000a900460ff1681565b60065481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461075e90611887565b80601f016020809104026020016040519081016040528092919081815260200182805461078a90611887565b80156107d75780601f106107ac576101008083540402835291602001916107d7565b820191906000526020600020905b8154815290600101906020018083116107ba57829003601f168201915b5050505050905090565b6000806107ec610985565b905060006107fa828661087b565b90508381101561083f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108369061198d565b60405180910390fd5b61084c828686840361098d565b60019250505092915050565b600080610863610985565b9050610870818585610be2565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b61090a610e58565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610979576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161097090611a1f565b60405180910390fd5b610982816110a3565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036109fc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f390611ab1565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610a6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6290611b43565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610b499190611649565b60405180910390a3505050565b6000610b62848461087b565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610bdc5781811015610bce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc590611baf565b60405180910390fd5b610bdb848484840361098d565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c4890611c41565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610cc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb790611cd3565b60405180910390fd5b610ccb838383611169565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610d51576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4890611d65565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610e3f9190611649565b60405180910390a3610e52848484611447565b50505050565b610e60610985565b73ffffffffffffffffffffffffffffffffffffffff16610e7e610725565b73ffffffffffffffffffffffffffffffffffffffff1614610ed4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ecb90611dd1565b60405180910390fd5b565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610f45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f3c90611e63565b60405180910390fd5b610f5182600083611169565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610fd7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fce90611ef5565b60405180910390fd5b8181036000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600260008282540392505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161108a9190611649565b60405180910390a361109e83600084611447565b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600960008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615801561120d5750600960008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61124c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124390611f61565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603611359576112aa610725565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061131557506112e6610725565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611354576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161134b90611fcd565b60405180910390fd5b611442565b600560149054906101000a900460ff1680156113c25750600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b1561144157600654816113d4846106b0565b6113de91906118e7565b111580156114015750600754816113f4846106b0565b6113fe91906118e7565b10155b611440576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143790612039565b60405180910390fd5b5b5b505050565b505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561148657808201518184015260208101905061146b565b60008484015250505050565b6000601f19601f8301169050919050565b60006114ae8261144c565b6114b88185611457565b93506114c8818560208601611468565b6114d181611492565b840191505092915050565b600060208201905081810360008301526114f681846114a3565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600061152e82611503565b9050919050565b61153e81611523565b811461154957600080fd5b50565b60008135905061155b81611535565b92915050565b6000819050919050565b61157481611561565b811461157f57600080fd5b50565b6000813590506115918161156b565b92915050565b600080604083850312156115ae576115ad6114fe565b5b60006115bc8582860161154c565b92505060206115cd85828601611582565b9150509250929050565b60008115159050919050565b6115ec816115d7565b82525050565b600060208201905061160760008301846115e3565b92915050565b600060208284031215611623576116226114fe565b5b60006116318482850161154c565b91505092915050565b61164381611561565b82525050565b600060208201905061165e600083018461163a565b92915050565b60008060006060848603121561167d5761167c6114fe565b5b600061168b8682870161154c565b935050602061169c8682870161154c565b92505060406116ad86828701611582565b9150509250925092565b600060ff82169050919050565b6116cd816116b7565b82525050565b60006020820190506116e860008301846116c4565b92915050565b6116f7816115d7565b811461170257600080fd5b50565b600081359050611714816116ee565b92915050565b60008060008060808587031215611734576117336114fe565b5b600061174287828801611705565b94505060206117538782880161154c565b935050604061176487828801611582565b925050606061177587828801611582565b91505092959194509250565b60008060408385031215611798576117976114fe565b5b60006117a68582860161154c565b92505060206117b785828601611705565b9150509250929050565b6000602082840312156117d7576117d66114fe565b5b60006117e584828501611582565b91505092915050565b6117f781611523565b82525050565b600060208201905061181260008301846117ee565b92915050565b6000806040838503121561182f5761182e6114fe565b5b600061183d8582860161154c565b925050602061184e8582860161154c565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061189f57607f821691505b6020821081036118b2576118b1611858565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006118f282611561565b91506118fd83611561565b9250828201905080821115611915576119146118b8565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611977602583611457565b91506119828261191b565b604082019050919050565b600060208201905081810360008301526119a68161196a565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611a09602683611457565b9150611a14826119ad565b604082019050919050565b60006020820190508181036000830152611a38816119fc565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611a9b602483611457565b9150611aa682611a3f565b604082019050919050565b60006020820190508181036000830152611aca81611a8e565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000611b2d602283611457565b9150611b3882611ad1565b604082019050919050565b60006020820190508181036000830152611b5c81611b20565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611b99601d83611457565b9150611ba482611b63565b602082019050919050565b60006020820190508181036000830152611bc881611b8c565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000611c2b602583611457565b9150611c3682611bcf565b604082019050919050565b60006020820190508181036000830152611c5a81611c1e565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611cbd602383611457565b9150611cc882611c61565b604082019050919050565b60006020820190508181036000830152611cec81611cb0565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611d4f602683611457565b9150611d5a82611cf3565b604082019050919050565b60006020820190508181036000830152611d7e81611d42565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000611dbb602083611457565b9150611dc682611d85565b602082019050919050565b60006020820190508181036000830152611dea81611dae565b9050919050565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b6000611e4d602183611457565b9150611e5882611df1565b604082019050919050565b60006020820190508181036000830152611e7c81611e40565b9050919050565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b6000611edf602283611457565b9150611eea82611e83565b604082019050919050565b60006020820190508181036000830152611f0e81611ed2565b9050919050565b7f426c61636b6c6973746564000000000000000000000000000000000000000000600082015250565b6000611f4b600b83611457565b9150611f5682611f15565b602082019050919050565b60006020820190508181036000830152611f7a81611f3e565b9050919050565b7f54726164696e6720686173206e6f742073746172746564207965742100000000600082015250565b6000611fb7601c83611457565b9150611fc282611f81565b602082019050919050565b60006020820190508181036000830152611fe681611faa565b9050919050565b7f466f726269640000000000000000000000000000000000000000000000000000600082015250565b6000612023600683611457565b915061202e82611fed565b602082019050919050565b6000602082019050818103600083015261205281612016565b905091905056fea26469706673582212201ac489e6551f38f0692b27f2b335c34f306079a635e68a55f8609483babc932564736f6c63430008120033
Deployed Bytecode Sourcemap
20640:1466:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9386:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11737:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20818:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10506:108;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20745:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12518:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10348:93;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13222:238;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21132:301;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20989:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;22022:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;20783:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10677:127;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2811:103;;;:::i;:::-;;20681:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20707:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2163:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9605:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;13963:436;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11010:193;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11266:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3069:201;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9386:100;9440:13;9473:5;9466:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9386:100;:::o;11737:201::-;11820:4;11837:13;11853:12;:10;:12::i;:::-;11837:28;;11876:32;11885:5;11892:7;11901:6;11876:8;:32::i;:::-;11926:4;11919:11;;;11737:201;;;;:::o;20818:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;10506:108::-;10567:7;10594:12;;10587:19;;10506:108;:::o;20745:31::-;;;;:::o;12518:295::-;12649:4;12666:15;12684:12;:10;:12::i;:::-;12666:30;;12707:38;12723:4;12729:7;12738:6;12707:15;:38::i;:::-;12756:27;12766:4;12772:2;12776:6;12756:9;:27::i;:::-;12801:4;12794:11;;;12518:295;;;;;:::o;10348:93::-;10406:5;10431:2;10424:9;;10348:93;:::o;13222:238::-;13310:4;13327:13;13343:12;:10;:12::i;:::-;13327:28;;13366:64;13375:5;13382:7;13419:10;13391:25;13401:5;13408:7;13391:9;:25::i;:::-;:38;;;;:::i;:::-;13366:8;:64::i;:::-;13448:4;13441:11;;;13222:238;;;;:::o;21132:301::-;2049:13;:11;:13::i;:::-;21282:8:::1;21272:7;;:18;;;;;;;;;;;;;;;;;;21317:14;21301:13;;:30;;;;;;;;;;;;;;;;;;21361:17;21342:16;:36;;;;21408:17;21389:16;:36;;;;21132:301:::0;;;;:::o;20989:135::-;2049:13;:11;:13::i;:::-;21101:15:::1;21078:10;:20;21089:8;21078:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;20989:135:::0;;:::o;22022:81::-;22071:24;22077:10;22089:5;22071;:24::i;:::-;22022:81;:::o;20783:28::-;;;;;;;;;;;;;:::o;10677:127::-;10751:7;10778:9;:18;10788:7;10778:18;;;;;;;;;;;;;;;;10771:25;;10677:127;;;:::o;2811:103::-;2049:13;:11;:13::i;:::-;2876:30:::1;2903:1;2876:18;:30::i;:::-;2811:103::o:0;20681:19::-;;;;;;;;;;;;;:::o;20707:31::-;;;;:::o;2163:87::-;2209:7;2236:6;;;;;;;;;;;2229:13;;2163:87;:::o;9605:104::-;9661:13;9694:7;9687:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;9605:104;:::o;13963:436::-;14056:4;14073:13;14089:12;:10;:12::i;:::-;14073:28;;14112:24;14139:25;14149:5;14156:7;14139:9;:25::i;:::-;14112:52;;14203:15;14183:16;:35;;14175:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;14296:60;14305:5;14312:7;14340:15;14321:16;:34;14296:8;:60::i;:::-;14387:4;14380:11;;;;13963:436;;;;:::o;11010:193::-;11089:4;11106:13;11122:12;:10;:12::i;:::-;11106:28;;11145;11155:5;11162:2;11166:6;11145:9;:28::i;:::-;11191:4;11184:11;;;11010:193;;;;:::o;11266:151::-;11355:7;11382:11;:18;11394:5;11382:18;;;;;;;;;;;;;;;:27;11401:7;11382:27;;;;;;;;;;;;;;;;11375:34;;11266:151;;;;:::o;3069:201::-;2049:13;:11;:13::i;:::-;3178:1:::1;3158:22;;:8;:22;;::::0;3150:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;3234:28;3253:8;3234:18;:28::i;:::-;3069:201:::0;:::o;714:98::-;767:7;794:10;787:17;;714:98;:::o;17990:380::-;18143:1;18126:19;;:5;:19;;;18118:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18224:1;18205:21;;:7;:21;;;18197:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18308:6;18278:11;:18;18290:5;18278:18;;;;;;;;;;;;;;;:27;18297:7;18278:27;;;;;;;;;;;;;;;:36;;;;18346:7;18330:32;;18339:5;18330:32;;;18355:6;18330:32;;;;;;:::i;:::-;;;;;;;;17990:380;;;:::o;18661:453::-;18796:24;18823:25;18833:5;18840:7;18823:9;:25::i;:::-;18796:52;;18883:17;18863:16;:37;18859:248;;18945:6;18925:16;:26;;18917:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19029:51;19038:5;19045:7;19073:6;19054:16;:25;19029:8;:51::i;:::-;18859:248;18785:329;18661:453;;;:::o;14869:840::-;15016:1;15000:18;;:4;:18;;;14992:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;15093:1;15079:16;;:2;:16;;;15071:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;15148:38;15169:4;15175:2;15179:6;15148:20;:38::i;:::-;15199:19;15221:9;:15;15231:4;15221:15;;;;;;;;;;;;;;;;15199:37;;15270:6;15255:11;:21;;15247:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;15387:6;15373:11;:20;15355:9;:15;15365:4;15355:15;;;;;;;;;;;;;;;:38;;;;15590:6;15573:9;:13;15583:2;15573:13;;;;;;;;;;;;;;;;:23;;;;;;;;;;;15640:2;15625:26;;15634:4;15625:26;;;15644:6;15625:26;;;;;;:::i;:::-;;;;;;;;15664:37;15684:4;15690:2;15694:6;15664:19;:37::i;:::-;14981:728;14869:840;;;:::o;2328:132::-;2403:12;:10;:12::i;:::-;2392:23;;:7;:5;:7::i;:::-;:23;;;2384:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2328:132::o;16877:675::-;16980:1;16961:21;;:7;:21;;;16953:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;17033:49;17054:7;17071:1;17075:6;17033:20;:49::i;:::-;17095:22;17120:9;:18;17130:7;17120:18;;;;;;;;;;;;;;;;17095:43;;17175:6;17157:14;:24;;17149:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;17294:6;17277:14;:23;17256:9;:18;17266:7;17256:18;;;;;;;;;;;;;;;:44;;;;17411:6;17395:12;;:22;;;;;;;;;;;17472:1;17446:37;;17455:7;17446:37;;;17476:6;17446:37;;;;;;:::i;:::-;;;;;;;;17496:48;17516:7;17533:1;17537:6;17496:19;:48::i;:::-;16942:610;16877:675;;:::o;3430:191::-;3504:16;3523:6;;;;;;;;;;;3504:25;;3549:8;3540:6;;:17;;;;;;;;;;;;;;;;;;3604:8;3573:40;;3594:8;3573:40;;;;;;;;;;;;3493:128;3430:191;:::o;21441:573::-;21593:10;:14;21604:2;21593:14;;;;;;;;;;;;;;;;;;;;;;;;;21592:15;:36;;;;;21612:10;:16;21623:4;21612:16;;;;;;;;;;;;;;;;;;;;;;;;;21611:17;21592:36;21584:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;21686:1;21661:27;;:13;;;;;;;;;;;:27;;;21657:154;;21721:7;:5;:7::i;:::-;21713:15;;:4;:15;;;:32;;;;21738:7;:5;:7::i;:::-;21732:13;;:2;:13;;;21713:32;21705:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21793:7;;21657:154;21827:7;;;;;;;;;;;:32;;;;;21846:13;;;;;;;;;;;21838:21;;:4;:21;;;21827:32;21823:184;;;21916:16;;21906:6;21884:19;21900:2;21884:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;:100;;;;;21968:16;;21958:6;21936:19;21952:2;21936:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;21884:100;21876:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;21823:184;21441:573;;;;:::o;20443:124::-;;;;:::o;7:99:1:-;59:6;93:5;87:12;77:22;;7:99;;;:::o;112:169::-;196:11;230:6;225:3;218:19;270:4;265:3;261:14;246:29;;112:169;;;;:::o;287:246::-;368:1;378:113;392:6;389:1;386:13;378:113;;;477:1;472:3;468:11;462:18;458:1;453:3;449:11;442:39;414:2;411:1;407:10;402:15;;378:113;;;525:1;516:6;511:3;507:16;500:27;349:184;287:246;;;:::o;539:102::-;580:6;631:2;627:7;622:2;615:5;611:14;607:28;597:38;;539:102;;;:::o;647:377::-;735:3;763:39;796:5;763:39;:::i;:::-;818:71;882:6;877:3;818:71;:::i;:::-;811:78;;898:65;956:6;951:3;944:4;937:5;933:16;898:65;:::i;:::-;988:29;1010:6;988:29;:::i;:::-;983:3;979:39;972:46;;739:285;647:377;;;;:::o;1030:313::-;1143:4;1181:2;1170:9;1166:18;1158:26;;1230:9;1224:4;1220:20;1216:1;1205:9;1201:17;1194:47;1258:78;1331:4;1322:6;1258:78;:::i;:::-;1250:86;;1030:313;;;;:::o;1430:117::-;1539:1;1536;1529:12;1676:126;1713:7;1753:42;1746:5;1742:54;1731:65;;1676:126;;;:::o;1808:96::-;1845:7;1874:24;1892:5;1874:24;:::i;:::-;1863:35;;1808:96;;;:::o;1910:122::-;1983:24;2001:5;1983:24;:::i;:::-;1976:5;1973:35;1963:63;;2022:1;2019;2012:12;1963:63;1910:122;:::o;2038:139::-;2084:5;2122:6;2109:20;2100:29;;2138:33;2165:5;2138:33;:::i;:::-;2038:139;;;;:::o;2183:77::-;2220:7;2249:5;2238:16;;2183:77;;;:::o;2266:122::-;2339:24;2357:5;2339:24;:::i;:::-;2332:5;2329:35;2319:63;;2378:1;2375;2368:12;2319:63;2266:122;:::o;2394:139::-;2440:5;2478:6;2465:20;2456:29;;2494:33;2521:5;2494:33;:::i;:::-;2394:139;;;;:::o;2539:474::-;2607:6;2615;2664:2;2652:9;2643:7;2639:23;2635:32;2632:119;;;2670:79;;:::i;:::-;2632:119;2790:1;2815:53;2860:7;2851:6;2840:9;2836:22;2815:53;:::i;:::-;2805:63;;2761:117;2917:2;2943:53;2988:7;2979:6;2968:9;2964:22;2943:53;:::i;:::-;2933:63;;2888:118;2539:474;;;;;:::o;3019:90::-;3053:7;3096:5;3089:13;3082:21;3071:32;;3019:90;;;:::o;3115:109::-;3196:21;3211:5;3196:21;:::i;:::-;3191:3;3184:34;3115:109;;:::o;3230:210::-;3317:4;3355:2;3344:9;3340:18;3332:26;;3368:65;3430:1;3419:9;3415:17;3406:6;3368:65;:::i;:::-;3230:210;;;;:::o;3446:329::-;3505:6;3554:2;3542:9;3533:7;3529:23;3525:32;3522:119;;;3560:79;;:::i;:::-;3522:119;3680:1;3705:53;3750:7;3741:6;3730:9;3726:22;3705:53;:::i;:::-;3695:63;;3651:117;3446:329;;;;:::o;3781:118::-;3868:24;3886:5;3868:24;:::i;:::-;3863:3;3856:37;3781:118;;:::o;3905:222::-;3998:4;4036:2;4025:9;4021:18;4013:26;;4049:71;4117:1;4106:9;4102:17;4093:6;4049:71;:::i;:::-;3905:222;;;;:::o;4133:619::-;4210:6;4218;4226;4275:2;4263:9;4254:7;4250:23;4246:32;4243:119;;;4281:79;;:::i;:::-;4243:119;4401:1;4426:53;4471:7;4462:6;4451:9;4447:22;4426:53;:::i;:::-;4416:63;;4372:117;4528:2;4554:53;4599:7;4590:6;4579:9;4575:22;4554:53;:::i;:::-;4544:63;;4499:118;4656:2;4682:53;4727:7;4718:6;4707:9;4703:22;4682:53;:::i;:::-;4672:63;;4627:118;4133:619;;;;;:::o;4758:86::-;4793:7;4833:4;4826:5;4822:16;4811:27;;4758:86;;;:::o;4850:112::-;4933:22;4949:5;4933:22;:::i;:::-;4928:3;4921:35;4850:112;;:::o;4968:214::-;5057:4;5095:2;5084:9;5080:18;5072:26;;5108:67;5172:1;5161:9;5157:17;5148:6;5108:67;:::i;:::-;4968:214;;;;:::o;5188:116::-;5258:21;5273:5;5258:21;:::i;:::-;5251:5;5248:32;5238:60;;5294:1;5291;5284:12;5238:60;5188:116;:::o;5310:133::-;5353:5;5391:6;5378:20;5369:29;;5407:30;5431:5;5407:30;:::i;:::-;5310:133;;;;:::o;5449:759::-;5532:6;5540;5548;5556;5605:3;5593:9;5584:7;5580:23;5576:33;5573:120;;;5612:79;;:::i;:::-;5573:120;5732:1;5757:50;5799:7;5790:6;5779:9;5775:22;5757:50;:::i;:::-;5747:60;;5703:114;5856:2;5882:53;5927:7;5918:6;5907:9;5903:22;5882:53;:::i;:::-;5872:63;;5827:118;5984:2;6010:53;6055:7;6046:6;6035:9;6031:22;6010:53;:::i;:::-;6000:63;;5955:118;6112:2;6138:53;6183:7;6174:6;6163:9;6159:22;6138:53;:::i;:::-;6128:63;;6083:118;5449:759;;;;;;;:::o;6214:468::-;6279:6;6287;6336:2;6324:9;6315:7;6311:23;6307:32;6304:119;;;6342:79;;:::i;:::-;6304:119;6462:1;6487:53;6532:7;6523:6;6512:9;6508:22;6487:53;:::i;:::-;6477:63;;6433:117;6589:2;6615:50;6657:7;6648:6;6637:9;6633:22;6615:50;:::i;:::-;6605:60;;6560:115;6214:468;;;;;:::o;6688:329::-;6747:6;6796:2;6784:9;6775:7;6771:23;6767:32;6764:119;;;6802:79;;:::i;:::-;6764:119;6922:1;6947:53;6992:7;6983:6;6972:9;6968:22;6947:53;:::i;:::-;6937:63;;6893:117;6688:329;;;;:::o;7023:118::-;7110:24;7128:5;7110:24;:::i;:::-;7105:3;7098:37;7023:118;;:::o;7147:222::-;7240:4;7278:2;7267:9;7263:18;7255:26;;7291:71;7359:1;7348:9;7344:17;7335:6;7291:71;:::i;:::-;7147:222;;;;:::o;7375:474::-;7443:6;7451;7500:2;7488:9;7479:7;7475:23;7471:32;7468:119;;;7506:79;;:::i;:::-;7468:119;7626:1;7651:53;7696:7;7687:6;7676:9;7672:22;7651:53;:::i;:::-;7641:63;;7597:117;7753:2;7779:53;7824:7;7815:6;7804:9;7800:22;7779:53;:::i;:::-;7769:63;;7724:118;7375:474;;;;;:::o;7855:180::-;7903:77;7900:1;7893:88;8000:4;7997:1;7990:15;8024:4;8021:1;8014:15;8041:320;8085:6;8122:1;8116:4;8112:12;8102:22;;8169:1;8163:4;8159:12;8190:18;8180:81;;8246:4;8238:6;8234:17;8224:27;;8180:81;8308:2;8300:6;8297:14;8277:18;8274:38;8271:84;;8327:18;;:::i;:::-;8271:84;8092:269;8041:320;;;:::o;8367:180::-;8415:77;8412:1;8405:88;8512:4;8509:1;8502:15;8536:4;8533:1;8526:15;8553:191;8593:3;8612:20;8630:1;8612:20;:::i;:::-;8607:25;;8646:20;8664:1;8646:20;:::i;:::-;8641:25;;8689:1;8686;8682:9;8675:16;;8710:3;8707:1;8704:10;8701:36;;;8717:18;;:::i;:::-;8701:36;8553:191;;;;:::o;8750:224::-;8890:34;8886:1;8878:6;8874:14;8867:58;8959:7;8954:2;8946:6;8942:15;8935:32;8750:224;:::o;8980:366::-;9122:3;9143:67;9207:2;9202:3;9143:67;:::i;:::-;9136:74;;9219:93;9308:3;9219:93;:::i;:::-;9337:2;9332:3;9328:12;9321:19;;8980:366;;;:::o;9352:419::-;9518:4;9556:2;9545:9;9541:18;9533:26;;9605:9;9599:4;9595:20;9591:1;9580:9;9576:17;9569:47;9633:131;9759:4;9633:131;:::i;:::-;9625:139;;9352:419;;;:::o;9777:225::-;9917:34;9913:1;9905:6;9901:14;9894:58;9986:8;9981:2;9973:6;9969:15;9962:33;9777:225;:::o;10008:366::-;10150:3;10171:67;10235:2;10230:3;10171:67;:::i;:::-;10164:74;;10247:93;10336:3;10247:93;:::i;:::-;10365:2;10360:3;10356:12;10349:19;;10008:366;;;:::o;10380:419::-;10546:4;10584:2;10573:9;10569:18;10561:26;;10633:9;10627:4;10623:20;10619:1;10608:9;10604:17;10597:47;10661:131;10787:4;10661:131;:::i;:::-;10653:139;;10380:419;;;:::o;10805:223::-;10945:34;10941:1;10933:6;10929:14;10922:58;11014:6;11009:2;11001:6;10997:15;10990:31;10805:223;:::o;11034:366::-;11176:3;11197:67;11261:2;11256:3;11197:67;:::i;:::-;11190:74;;11273:93;11362:3;11273:93;:::i;:::-;11391:2;11386:3;11382:12;11375:19;;11034:366;;;:::o;11406:419::-;11572:4;11610:2;11599:9;11595:18;11587:26;;11659:9;11653:4;11649:20;11645:1;11634:9;11630:17;11623:47;11687:131;11813:4;11687:131;:::i;:::-;11679:139;;11406:419;;;:::o;11831:221::-;11971:34;11967:1;11959:6;11955:14;11948:58;12040:4;12035:2;12027:6;12023:15;12016:29;11831:221;:::o;12058:366::-;12200:3;12221:67;12285:2;12280:3;12221:67;:::i;:::-;12214:74;;12297:93;12386:3;12297:93;:::i;:::-;12415:2;12410:3;12406:12;12399:19;;12058:366;;;:::o;12430:419::-;12596:4;12634:2;12623:9;12619:18;12611:26;;12683:9;12677:4;12673:20;12669:1;12658:9;12654:17;12647:47;12711:131;12837:4;12711:131;:::i;:::-;12703:139;;12430:419;;;:::o;12855:179::-;12995:31;12991:1;12983:6;12979:14;12972:55;12855:179;:::o;13040:366::-;13182:3;13203:67;13267:2;13262:3;13203:67;:::i;:::-;13196:74;;13279:93;13368:3;13279:93;:::i;:::-;13397:2;13392:3;13388:12;13381:19;;13040:366;;;:::o;13412:419::-;13578:4;13616:2;13605:9;13601:18;13593:26;;13665:9;13659:4;13655:20;13651:1;13640:9;13636:17;13629:47;13693:131;13819:4;13693:131;:::i;:::-;13685:139;;13412:419;;;:::o;13837:224::-;13977:34;13973:1;13965:6;13961:14;13954:58;14046:7;14041:2;14033:6;14029:15;14022:32;13837:224;:::o;14067:366::-;14209:3;14230:67;14294:2;14289:3;14230:67;:::i;:::-;14223:74;;14306:93;14395:3;14306:93;:::i;:::-;14424:2;14419:3;14415:12;14408:19;;14067:366;;;:::o;14439:419::-;14605:4;14643:2;14632:9;14628:18;14620:26;;14692:9;14686:4;14682:20;14678:1;14667:9;14663:17;14656:47;14720:131;14846:4;14720:131;:::i;:::-;14712:139;;14439:419;;;:::o;14864:222::-;15004:34;15000:1;14992:6;14988:14;14981:58;15073:5;15068:2;15060:6;15056:15;15049:30;14864:222;:::o;15092:366::-;15234:3;15255:67;15319:2;15314:3;15255:67;:::i;:::-;15248:74;;15331:93;15420:3;15331:93;:::i;:::-;15449:2;15444:3;15440:12;15433:19;;15092:366;;;:::o;15464:419::-;15630:4;15668:2;15657:9;15653:18;15645:26;;15717:9;15711:4;15707:20;15703:1;15692:9;15688:17;15681:47;15745:131;15871:4;15745:131;:::i;:::-;15737:139;;15464:419;;;:::o;15889:225::-;16029:34;16025:1;16017:6;16013:14;16006:58;16098:8;16093:2;16085:6;16081:15;16074:33;15889:225;:::o;16120:366::-;16262:3;16283:67;16347:2;16342:3;16283:67;:::i;:::-;16276:74;;16359:93;16448:3;16359:93;:::i;:::-;16477:2;16472:3;16468:12;16461:19;;16120:366;;;:::o;16492:419::-;16658:4;16696:2;16685:9;16681:18;16673:26;;16745:9;16739:4;16735:20;16731:1;16720:9;16716:17;16709:47;16773:131;16899:4;16773:131;:::i;:::-;16765:139;;16492:419;;;:::o;16917:182::-;17057:34;17053:1;17045:6;17041:14;17034:58;16917:182;:::o;17105:366::-;17247:3;17268:67;17332:2;17327:3;17268:67;:::i;:::-;17261:74;;17344:93;17433:3;17344:93;:::i;:::-;17462:2;17457:3;17453:12;17446:19;;17105:366;;;:::o;17477:419::-;17643:4;17681:2;17670:9;17666:18;17658:26;;17730:9;17724:4;17720:20;17716:1;17705:9;17701:17;17694:47;17758:131;17884:4;17758:131;:::i;:::-;17750:139;;17477:419;;;:::o;17902:220::-;18042:34;18038:1;18030:6;18026:14;18019:58;18111:3;18106:2;18098:6;18094:15;18087:28;17902:220;:::o;18128:366::-;18270:3;18291:67;18355:2;18350:3;18291:67;:::i;:::-;18284:74;;18367:93;18456:3;18367:93;:::i;:::-;18485:2;18480:3;18476:12;18469:19;;18128:366;;;:::o;18500:419::-;18666:4;18704:2;18693:9;18689:18;18681:26;;18753:9;18747:4;18743:20;18739:1;18728:9;18724:17;18717:47;18781:131;18907:4;18781:131;:::i;:::-;18773:139;;18500:419;;;:::o;18925:221::-;19065:34;19061:1;19053:6;19049:14;19042:58;19134:4;19129:2;19121:6;19117:15;19110:29;18925:221;:::o;19152:366::-;19294:3;19315:67;19379:2;19374:3;19315:67;:::i;:::-;19308:74;;19391:93;19480:3;19391:93;:::i;:::-;19509:2;19504:3;19500:12;19493:19;;19152:366;;;:::o;19524:419::-;19690:4;19728:2;19717:9;19713:18;19705:26;;19777:9;19771:4;19767:20;19763:1;19752:9;19748:17;19741:47;19805:131;19931:4;19805:131;:::i;:::-;19797:139;;19524:419;;;:::o;19949:161::-;20089:13;20085:1;20077:6;20073:14;20066:37;19949:161;:::o;20116:366::-;20258:3;20279:67;20343:2;20338:3;20279:67;:::i;:::-;20272:74;;20355:93;20444:3;20355:93;:::i;:::-;20473:2;20468:3;20464:12;20457:19;;20116:366;;;:::o;20488:419::-;20654:4;20692:2;20681:9;20677:18;20669:26;;20741:9;20735:4;20731:20;20727:1;20716:9;20712:17;20705:47;20769:131;20895:4;20769:131;:::i;:::-;20761:139;;20488:419;;;:::o;20913:178::-;21053:30;21049:1;21041:6;21037:14;21030:54;20913:178;:::o;21097:366::-;21239:3;21260:67;21324:2;21319:3;21260:67;:::i;:::-;21253:74;;21336:93;21425:3;21336:93;:::i;:::-;21454:2;21449:3;21445:12;21438:19;;21097:366;;;:::o;21469:419::-;21635:4;21673:2;21662:9;21658:18;21650:26;;21722:9;21716:4;21712:20;21708:1;21697:9;21693:17;21686:47;21750:131;21876:4;21750:131;:::i;:::-;21742:139;;21469:419;;;:::o;21894:156::-;22034:8;22030:1;22022:6;22018:14;22011:32;21894:156;:::o;22056:365::-;22198:3;22219:66;22283:1;22278:3;22219:66;:::i;:::-;22212:73;;22294:93;22383:3;22294:93;:::i;:::-;22412:2;22407:3;22403:12;22396:19;;22056:365;;;:::o;22427:419::-;22593:4;22631:2;22620:9;22616:18;22608:26;;22680:9;22674:4;22670:20;22666:1;22655:9;22651:17;22644:47;22708:131;22834:4;22708:131;:::i;:::-;22700:139;;22427:419;;;:::o
Swarm Source
ipfs://1ac489e6551f38f0692b27f2b335c34f306079a635e68a55f8609483babc9325
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.