ETH Price: $3,454.57 (+0.97%)
Gas: 8 Gwei

Token

Zion (ZION)
 

Overview

Max Total Supply

1,000,000,000 ZION

Holders

595

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Filtered by Token Holder
dragongate.eth
Balance
1,074,604.235403025444085492 ZION

Value
$0.00
0xa41b73050C9cAEE703D55701dd3c637C54016943
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
Zion

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-05-16
*/

// Sources flattened with hardhat v2.7.0 https://hardhat.org

// File @openzeppelin/contracts/utils/[email protected]

// 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 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:
 *
 * - `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 {}
}
pragma solidity ^0.8.0;

contract Zion is Ownable, ERC20 {
    uint256 public constant TOTAL_SUPPLY = 1000000000 * 10**18;

    bool public limited;
    uint256 public maxHoldingAmount;
    uint256 public maxBuyPerTx;
    address public uniswapV2Pair;
    mapping(address => bool) public blacklists;

    constructor() ERC20("Zion", "ZION") {
        _mint(msg.sender, TOTAL_SUPPLY);
    }

    function blacklist(address _address, bool _isBlacklisting) external onlyOwner {
        blacklists[_address] = _isBlacklisting;
    }

    function setRule(bool _limited, address _uniswapV2Pair, uint256 _maxHoldingAmount, uint256 _maxBuyPerTx) external onlyOwner {
        limited = _limited;
        uniswapV2Pair = _uniswapV2Pair;
        maxHoldingAmount = _maxHoldingAmount;
        maxBuyPerTx = _maxBuyPerTx;
    }

    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 is not started");
            return;
        }

        if (limited && from == uniswapV2Pair) {
            require(super.balanceOf(to) + amount <= maxHoldingAmount, "Exceeding max holding amount");
            require(amount <= maxBuyPerTx, "Exceeding max buy per transaction");
        }
    }

    function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"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":[],"name":"TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":[{"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":"maxBuyPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxHoldingAmount","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":"_maxBuyPerTx","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":"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"}]

60806040523480156200001157600080fd5b506040518060400160405280600481526020017f5a696f6e000000000000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f5a494f4e000000000000000000000000000000000000000000000000000000008152506200009e62000092620000f660201b60201c565b620000fe60201b60201c565b8160049080519060200190620000b6929190620006e7565b508060059080519060200190620000cf929190620006e7565b505050620000f0336b033b2e3c9fd0803ce8000000620001c260201b60201c565b62000aeb565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000235576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200022c906200097e565b60405180910390fd5b62000249600083836200033c60201b60201c565b80600360008282546200025d9190620009f0565b9250508190555080600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620002b59190620009f0565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516200031c9190620009c2565b60405180910390a362000338600083836200067060201b60201c565b5050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16158015620003e15750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b62000423576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200041a90620009a0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141562000547576200048b6200067560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480620004ff5750620004d06200067560201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b62000541576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000538906200095c565b60405180910390fd5b6200066b565b600660009054906101000a900460ff168015620005b15750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156200066a5760075481620005d1846200069e60201b620008fa1760201c565b620005dd9190620009f0565b111562000621576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000618906200093a565b60405180910390fd5b60085481111562000669576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006609062000918565b60405180910390fd5b5b5b505050565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b828054620006f59062000a57565b90600052602060002090601f01602090048101928262000719576000855562000765565b82601f106200073457805160ff191683800117855562000765565b8280016001018555821562000765579182015b828111156200076457825182559160200191906001019062000747565b5b50905062000774919062000778565b5090565b5b808211156200079357600081600090555060010162000779565b5090565b6000620007a6602183620009df565b91507f457863656564696e67206d61782062757920706572207472616e73616374696f60008301527f6e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006200080e601c83620009df565b91507f457863656564696e67206d617820686f6c64696e6720616d6f756e74000000006000830152602082019050919050565b600062000850601683620009df565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b600062000892601f83620009df565b91507f45524332303a206d696e7420746f20746865207a65726f2061646472657373006000830152602082019050919050565b6000620008d4600b83620009df565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b620009128162000a4d565b82525050565b60006020820190508181036000830152620009338162000797565b9050919050565b600060208201905081810360008301526200095581620007ff565b9050919050565b60006020820190508181036000830152620009778162000841565b9050919050565b60006020820190508181036000830152620009998162000883565b9050919050565b60006020820190508181036000830152620009bb81620008c5565b9050919050565b6000602082019050620009d9600083018462000907565b92915050565b600082825260208201905092915050565b6000620009fd8262000a4d565b915062000a0a8362000a4d565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000a425762000a4162000a8d565b5b828201905092915050565b6000819050919050565b6000600282049050600182168062000a7057607f821691505b6020821081141562000a875762000a8662000abc565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6123b98062000afb6000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c806349bd5a5e116100c3578063902d55a51161007c578063902d55a51461039057806395d89b41146103ae578063a457c2d7146103cc578063a9059cbb146103fc578063dd62ed3e1461042c578063f2fde38b1461045c5761014d565b806349bd5a5e146102de57806370a08231146102fc578063715018a61461032c578063860a32ec1461033657806389f9a1d3146103545780638da5cb5b146103725761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c578063395093511461025a5780633aa633aa1461028a578063404e5129146102a657806342966c68146102c25761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a0578063177320a6146101d057806318160ddd146101ee575b600080fd5b61015a610478565b6040516101679190611f37565b60405180910390f35b61018a60048036038101906101859190611862565b61050a565b6040516101979190611f1c565b60405180910390f35b6101ba60048036038101906101b59190611772565b610528565b6040516101c79190611f1c565b60405180910390f35b6101d8610548565b6040516101e59190612139565b60405180910390f35b6101f661054e565b6040516102039190612139565b60405180910390f35b610226600480360381019061022191906117d7565b610558565b6040516102339190611f1c565b60405180910390f35b610244610650565b6040516102519190612154565b60405180910390f35b610274600480360381019061026f9190611862565b610659565b6040516102819190611f1c565b60405180910390f35b6102a4600480360381019061029f919061189e565b610705565b005b6102c060048036038101906102bb9190611826565b6107f0565b005b6102dc60048036038101906102d79190611901565b6108c7565b005b6102e66108d4565b6040516102f39190611f01565b60405180910390f35b61031660048036038101906103119190611772565b6108fa565b6040516103239190612139565b60405180910390f35b610334610943565b005b61033e6109cb565b60405161034b9190611f1c565b60405180910390f35b61035c6109de565b6040516103699190612139565b60405180910390f35b61037a6109e4565b6040516103879190611f01565b60405180910390f35b610398610a0d565b6040516103a59190612139565b60405180910390f35b6103b6610a1d565b6040516103c39190611f37565b60405180910390f35b6103e660048036038101906103e19190611862565b610aaf565b6040516103f39190611f1c565b60405180910390f35b61041660048036038101906104119190611862565b610b9a565b6040516104239190611f1c565b60405180910390f35b6104466004803603810190610441919061179b565b610bb8565b6040516104539190612139565b60405180910390f35b61047660048036038101906104719190611772565b610c3f565b005b6060600480546104879061229d565b80601f01602080910402602001604051908101604052809291908181526020018280546104b39061229d565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b600061051e610517610d37565b8484610d3f565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b60085481565b6000600354905090565b6000610565848484610f0a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105b0610d37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062790612039565b60405180910390fd5b6106448561063c610d37565b858403610d3f565b60019150509392505050565b60006012905090565b60006106fb610666610d37565b848460026000610674610d37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106f6919061218b565b610d3f565b6001905092915050565b61070d610d37565b73ffffffffffffffffffffffffffffffffffffffff1661072b6109e4565b73ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890612059565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107f8610d37565b73ffffffffffffffffffffffffffffffffffffffff166108166109e4565b73ffffffffffffffffffffffffffffffffffffffff161461086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390612059565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6108d1338261118e565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094b610d37565b73ffffffffffffffffffffffffffffffffffffffff166109696109e4565b73ffffffffffffffffffffffffffffffffffffffff16146109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690612059565b60405180910390fd5b6109c96000611367565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b033b2e3c9fd0803ce800000081565b606060058054610a2c9061229d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a589061229d565b8015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b820191906000526020600020905b815481529060010190602001808311610a8857829003601f168201915b5050505050905090565b60008060026000610abe610d37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b72906120f9565b60405180910390fd5b610b8f610b86610d37565b85858403610d3f565b600191505092915050565b6000610bae610ba7610d37565b8484610f0a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c47610d37565b73ffffffffffffffffffffffffffffffffffffffff16610c656109e4565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290612059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611fb9565b60405180910390fd5b610d3481611367565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906120d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611fd9565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610efd9190612139565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f71906120b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190611f59565b60405180910390fd5b610ff583838361142b565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390612019565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611111919061218b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111759190612139565b60405180910390a361118884848461172e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590612079565b60405180910390fd5b61120a8260008361142b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890611f79565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112e991906121e1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134e9190612139565b60405180910390a36113628360008461172e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156114cf5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590612119565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561161c5761156d6109e4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115d857506115a96109e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90612099565b60405180910390fd5b611729565b600660009054906101000a900460ff1680156116855750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156117285760075481611697846108fa565b6116a1919061218b565b11156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990611ff9565b60405180910390fd5b600854811115611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90611f99565b60405180910390fd5b5b5b505050565b505050565b6000813590506117428161233e565b92915050565b60008135905061175781612355565b92915050565b60008135905061176c8161236c565b92915050565b60006020828403121561178457600080fd5b600061179284828501611733565b91505092915050565b600080604083850312156117ae57600080fd5b60006117bc85828601611733565b92505060206117cd85828601611733565b9150509250929050565b6000806000606084860312156117ec57600080fd5b60006117fa86828701611733565b935050602061180b86828701611733565b925050604061181c8682870161175d565b9150509250925092565b6000806040838503121561183957600080fd5b600061184785828601611733565b925050602061185885828601611748565b9150509250929050565b6000806040838503121561187557600080fd5b600061188385828601611733565b92505060206118948582860161175d565b9150509250929050565b600080600080608085870312156118b457600080fd5b60006118c287828801611748565b94505060206118d387828801611733565b93505060406118e48782880161175d565b92505060606118f58782880161175d565b91505092959194509250565b60006020828403121561191357600080fd5b60006119218482850161175d565b91505092915050565b61193381612215565b82525050565b61194281612227565b82525050565b60006119538261216f565b61195d818561217a565b935061196d81856020860161226a565b6119768161232d565b840191505092915050565b600061198e60238361217a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119f460228361217a565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a5a60218361217a565b91507f457863656564696e67206d61782062757920706572207472616e73616374696f60008301527f6e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ac060268361217a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b2660228361217a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b8c601c8361217a565b91507f457863656564696e67206d617820686f6c64696e6720616d6f756e74000000006000830152602082019050919050565b6000611bcc60268361217a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c3260288361217a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c9860208361217a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611cd860218361217a565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d3e60168361217a565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611d7e60258361217a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611de460248361217a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e4a60258361217a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611eb0600b8361217a565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b611eec81612253565b82525050565b611efb8161225d565b82525050565b6000602082019050611f16600083018461192a565b92915050565b6000602082019050611f316000830184611939565b92915050565b60006020820190508181036000830152611f518184611948565b905092915050565b60006020820190508181036000830152611f7281611981565b9050919050565b60006020820190508181036000830152611f92816119e7565b9050919050565b60006020820190508181036000830152611fb281611a4d565b9050919050565b60006020820190508181036000830152611fd281611ab3565b9050919050565b60006020820190508181036000830152611ff281611b19565b9050919050565b6000602082019050818103600083015261201281611b7f565b9050919050565b6000602082019050818103600083015261203281611bbf565b9050919050565b6000602082019050818103600083015261205281611c25565b9050919050565b6000602082019050818103600083015261207281611c8b565b9050919050565b6000602082019050818103600083015261209281611ccb565b9050919050565b600060208201905081810360008301526120b281611d31565b9050919050565b600060208201905081810360008301526120d281611d71565b9050919050565b600060208201905081810360008301526120f281611dd7565b9050919050565b6000602082019050818103600083015261211281611e3d565b9050919050565b6000602082019050818103600083015261213281611ea3565b9050919050565b600060208201905061214e6000830184611ee3565b92915050565b60006020820190506121696000830184611ef2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061219682612253565b91506121a183612253565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121d6576121d56122cf565b5b828201905092915050565b60006121ec82612253565b91506121f783612253565b92508282101561220a576122096122cf565b5b828203905092915050565b600061222082612233565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561228857808201518184015260208101905061226d565b83811115612297576000848401525b50505050565b600060028204905060018216806122b557607f821691505b602082108114156122c9576122c86122fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61234781612215565b811461235257600080fd5b50565b61235e81612227565b811461236957600080fd5b50565b61237581612253565b811461238057600080fd5b5056fea26469706673582212206ccad2afc9d83edbf0ce07bddc462e7503509695780ca1059174bf46da3de1b764736f6c63430008000033

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c806349bd5a5e116100c3578063902d55a51161007c578063902d55a51461039057806395d89b41146103ae578063a457c2d7146103cc578063a9059cbb146103fc578063dd62ed3e1461042c578063f2fde38b1461045c5761014d565b806349bd5a5e146102de57806370a08231146102fc578063715018a61461032c578063860a32ec1461033657806389f9a1d3146103545780638da5cb5b146103725761014d565b806323b872dd1161011557806323b872dd1461020c578063313ce5671461023c578063395093511461025a5780633aa633aa1461028a578063404e5129146102a657806342966c68146102c25761014d565b806306fdde0314610152578063095ea7b31461017057806316c02129146101a0578063177320a6146101d057806318160ddd146101ee575b600080fd5b61015a610478565b6040516101679190611f37565b60405180910390f35b61018a60048036038101906101859190611862565b61050a565b6040516101979190611f1c565b60405180910390f35b6101ba60048036038101906101b59190611772565b610528565b6040516101c79190611f1c565b60405180910390f35b6101d8610548565b6040516101e59190612139565b60405180910390f35b6101f661054e565b6040516102039190612139565b60405180910390f35b610226600480360381019061022191906117d7565b610558565b6040516102339190611f1c565b60405180910390f35b610244610650565b6040516102519190612154565b60405180910390f35b610274600480360381019061026f9190611862565b610659565b6040516102819190611f1c565b60405180910390f35b6102a4600480360381019061029f919061189e565b610705565b005b6102c060048036038101906102bb9190611826565b6107f0565b005b6102dc60048036038101906102d79190611901565b6108c7565b005b6102e66108d4565b6040516102f39190611f01565b60405180910390f35b61031660048036038101906103119190611772565b6108fa565b6040516103239190612139565b60405180910390f35b610334610943565b005b61033e6109cb565b60405161034b9190611f1c565b60405180910390f35b61035c6109de565b6040516103699190612139565b60405180910390f35b61037a6109e4565b6040516103879190611f01565b60405180910390f35b610398610a0d565b6040516103a59190612139565b60405180910390f35b6103b6610a1d565b6040516103c39190611f37565b60405180910390f35b6103e660048036038101906103e19190611862565b610aaf565b6040516103f39190611f1c565b60405180910390f35b61041660048036038101906104119190611862565b610b9a565b6040516104239190611f1c565b60405180910390f35b6104466004803603810190610441919061179b565b610bb8565b6040516104539190612139565b60405180910390f35b61047660048036038101906104719190611772565b610c3f565b005b6060600480546104879061229d565b80601f01602080910402602001604051908101604052809291908181526020018280546104b39061229d565b80156105005780601f106104d557610100808354040283529160200191610500565b820191906000526020600020905b8154815290600101906020018083116104e357829003601f168201915b5050505050905090565b600061051e610517610d37565b8484610d3f565b6001905092915050565b600a6020528060005260406000206000915054906101000a900460ff1681565b60085481565b6000600354905090565b6000610565848484610f0a565b6000600260008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006105b0610d37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610630576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062790612039565b60405180910390fd5b6106448561063c610d37565b858403610d3f565b60019150509392505050565b60006012905090565b60006106fb610666610d37565b848460026000610674610d37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546106f6919061218b565b610d3f565b6001905092915050565b61070d610d37565b73ffffffffffffffffffffffffffffffffffffffff1661072b6109e4565b73ffffffffffffffffffffffffffffffffffffffff1614610781576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077890612059565b60405180910390fd5b83600660006101000a81548160ff02191690831515021790555082600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550816007819055508060088190555050505050565b6107f8610d37565b73ffffffffffffffffffffffffffffffffffffffff166108166109e4565b73ffffffffffffffffffffffffffffffffffffffff161461086c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161086390612059565b60405180910390fd5b80600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6108d1338261118e565b50565b600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000600160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61094b610d37565b73ffffffffffffffffffffffffffffffffffffffff166109696109e4565b73ffffffffffffffffffffffffffffffffffffffff16146109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b690612059565b60405180910390fd5b6109c96000611367565b565b600660009054906101000a900460ff1681565b60075481565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6b033b2e3c9fd0803ce800000081565b606060058054610a2c9061229d565b80601f0160208091040260200160405190810160405280929190818152602001828054610a589061229d565b8015610aa55780601f10610a7a57610100808354040283529160200191610aa5565b820191906000526020600020905b815481529060010190602001808311610a8857829003601f168201915b5050505050905090565b60008060026000610abe610d37565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610b7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b72906120f9565b60405180910390fd5b610b8f610b86610d37565b85858403610d3f565b600191505092915050565b6000610bae610ba7610d37565b8484610f0a565b6001905092915050565b6000600260008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c47610d37565b73ffffffffffffffffffffffffffffffffffffffff16610c656109e4565b73ffffffffffffffffffffffffffffffffffffffff1614610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb290612059565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610d2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d2290611fb9565b60405180910390fd5b610d3481611367565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da6906120d9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e1f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1690611fd9565b60405180910390fd5b80600260008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610efd9190612139565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610f7a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f71906120b9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610fea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe190611f59565b60405180910390fd5b610ff583838361142b565b6000600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508181101561107c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161107390612019565b60405180910390fd5b818103600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611111919061218b565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516111759190612139565b60405180910390a361118884848461172e565b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156111fe576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111f590612079565b60405180910390fd5b61120a8260008361142b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611291576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128890611f79565b60405180910390fd5b818103600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555081600360008282546112e991906121e1565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161134e9190612139565b60405180910390a36113628360008461172e565b505050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600a60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156114cf5750600a60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b61150e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150590612119565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561161c5761156d6109e4565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614806115d857506115a96109e4565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b611617576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160e90612099565b60405180910390fd5b611729565b600660009054906101000a900460ff1680156116855750600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156117285760075481611697846108fa565b6116a1919061218b565b11156116e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d990611ff9565b60405180910390fd5b600854811115611727576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161171e90611f99565b60405180910390fd5b5b5b505050565b505050565b6000813590506117428161233e565b92915050565b60008135905061175781612355565b92915050565b60008135905061176c8161236c565b92915050565b60006020828403121561178457600080fd5b600061179284828501611733565b91505092915050565b600080604083850312156117ae57600080fd5b60006117bc85828601611733565b92505060206117cd85828601611733565b9150509250929050565b6000806000606084860312156117ec57600080fd5b60006117fa86828701611733565b935050602061180b86828701611733565b925050604061181c8682870161175d565b9150509250925092565b6000806040838503121561183957600080fd5b600061184785828601611733565b925050602061185885828601611748565b9150509250929050565b6000806040838503121561187557600080fd5b600061188385828601611733565b92505060206118948582860161175d565b9150509250929050565b600080600080608085870312156118b457600080fd5b60006118c287828801611748565b94505060206118d387828801611733565b93505060406118e48782880161175d565b92505060606118f58782880161175d565b91505092959194509250565b60006020828403121561191357600080fd5b60006119218482850161175d565b91505092915050565b61193381612215565b82525050565b61194281612227565b82525050565b60006119538261216f565b61195d818561217a565b935061196d81856020860161226a565b6119768161232d565b840191505092915050565b600061198e60238361217a565b91507f45524332303a207472616e7366657220746f20746865207a65726f206164647260008301527f65737300000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006119f460228361217a565b91507f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008301527f63650000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611a5a60218361217a565b91507f457863656564696e67206d61782062757920706572207472616e73616374696f60008301527f6e000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611ac060268361217a565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b2660228361217a565b91507f45524332303a20617070726f766520746f20746865207a65726f20616464726560008301527f73730000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611b8c601c8361217a565b91507f457863656564696e67206d617820686f6c64696e6720616d6f756e74000000006000830152602082019050919050565b6000611bcc60268361217a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206260008301527f616c616e636500000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c3260288361217a565b91507f45524332303a207472616e7366657220616d6f756e742065786365656473206160008301527f6c6c6f77616e63650000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611c9860208361217a565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b6000611cd860218361217a565b91507f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008301527f73000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611d3e60168361217a565b91507f74726164696e67206973206e6f742073746172746564000000000000000000006000830152602082019050919050565b6000611d7e60258361217a565b91507f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008301527f64726573730000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611de460248361217a565b91507f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611e4a60258361217a565b91507f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008301527f207a65726f0000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000611eb0600b8361217a565b91507f426c61636b6c69737465640000000000000000000000000000000000000000006000830152602082019050919050565b611eec81612253565b82525050565b611efb8161225d565b82525050565b6000602082019050611f16600083018461192a565b92915050565b6000602082019050611f316000830184611939565b92915050565b60006020820190508181036000830152611f518184611948565b905092915050565b60006020820190508181036000830152611f7281611981565b9050919050565b60006020820190508181036000830152611f92816119e7565b9050919050565b60006020820190508181036000830152611fb281611a4d565b9050919050565b60006020820190508181036000830152611fd281611ab3565b9050919050565b60006020820190508181036000830152611ff281611b19565b9050919050565b6000602082019050818103600083015261201281611b7f565b9050919050565b6000602082019050818103600083015261203281611bbf565b9050919050565b6000602082019050818103600083015261205281611c25565b9050919050565b6000602082019050818103600083015261207281611c8b565b9050919050565b6000602082019050818103600083015261209281611ccb565b9050919050565b600060208201905081810360008301526120b281611d31565b9050919050565b600060208201905081810360008301526120d281611d71565b9050919050565b600060208201905081810360008301526120f281611dd7565b9050919050565b6000602082019050818103600083015261211281611e3d565b9050919050565b6000602082019050818103600083015261213281611ea3565b9050919050565b600060208201905061214e6000830184611ee3565b92915050565b60006020820190506121696000830184611ef2565b92915050565b600081519050919050565b600082825260208201905092915050565b600061219682612253565b91506121a183612253565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156121d6576121d56122cf565b5b828201905092915050565b60006121ec82612253565b91506121f783612253565b92508282101561220a576122096122cf565b5b828203905092915050565b600061222082612233565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b60005b8381101561228857808201518184015260208101905061226d565b83811115612297576000848401525b50505050565b600060028204905060018216806122b557607f821691505b602082108114156122c9576122c86122fe565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b61234781612215565b811461235257600080fd5b50565b61235e81612227565b811461236957600080fd5b50565b61237581612253565b811461238057600080fd5b5056fea26469706673582212206ccad2afc9d83edbf0ce07bddc462e7503509695780ca1059174bf46da3de1b764736f6c63430008000033

Deployed Bytecode Sourcemap

17467:1531:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8706:90;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10618:152;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17705:42;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17637:26;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9710:98;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11198:412;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9576:83;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11969:198;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17993:286;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17850:135;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;18914:81;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;17670:28;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9857:117;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2572:93;;;:::i;:::-;;17573:19;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17599:31;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1992:77;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;17506:58;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8897:94;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;12612:364;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10153:158;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10360:141;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2802:184;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8706:90;8760:13;8786:5;8779:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8706:90;:::o;10618:152::-;10701:4;10711:39;10720:12;:10;:12::i;:::-;10734:7;10743:6;10711:8;:39::i;:::-;10761:4;10754:11;;10618:152;;;;:::o;17705:42::-;;;;;;;;;;;;;;;;;;;;;;:::o;17637:26::-;;;;:::o;9710:98::-;9771:7;9791:12;;9784:19;;9710:98;:::o;11198:412::-;11314:4;11324:36;11334:6;11342:9;11353:6;11324:9;:36::i;:::-;11366:24;11393:11;:19;11405:6;11393:19;;;;;;;;;;;;;;;:33;11413:12;:10;:12::i;:::-;11393:33;;;;;;;;;;;;;;;;11366:60;;11458:6;11438:16;:26;;11430:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;11527:57;11536:6;11544:12;:10;:12::i;:::-;11577:6;11558:16;:25;11527:8;:57::i;:::-;11601:4;11594:11;;;11198:412;;;;;:::o;9576:83::-;9634:5;9652:2;9645:9;;9576:83;:::o;11969:198::-;12057:4;12067:80;12076:12;:10;:12::i;:::-;12090:7;12136:10;12099:11;:25;12111:12;:10;:12::i;:::-;12099:25;;;;;;;;;;;;;;;:34;12125:7;12099:34;;;;;;;;;;;;;;;;:47;;;;:::i;:::-;12067:8;:80::i;:::-;12158:4;12151:11;;11969:198;;;;:::o;17993:286::-;2192:12;:10;:12::i;:::-;2181:23;;:7;:5;:7::i;:::-;:23;;;2173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;18138:8:::1;18128:7;;:18;;;;;;;;;;;;;;;;;;18173:14;18157:13;;:30;;;;;;;;;;;;;;;;;;18217:17;18198:16;:36;;;;18259:12;18245:11;:26;;;;17993:286:::0;;;;:::o;17850:135::-;2192:12;:10;:12::i;:::-;2181:23;;:7;:5;:7::i;:::-;:23;;;2173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;17962:15:::1;17939:10;:20;17950:8;17939:20;;;;;;;;;;;;;;;;:38;;;;;;;;;;;;;;;;;;17850:135:::0;;:::o;18914:81::-;18963:24;18969:10;18981:5;18963;:24::i;:::-;18914:81;:::o;17670:28::-;;;;;;;;;;;;;:::o;9857:117::-;9931:7;9951:9;:18;9961:7;9951:18;;;;;;;;;;;;;;;;9944:25;;9857:117;;;:::o;2572:93::-;2192:12;:10;:12::i;:::-;2181:23;;:7;:5;:7::i;:::-;:23;;;2173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2630:30:::1;2657:1;2630:18;:30::i;:::-;2572:93::o:0;17573:19::-;;;;;;;;;;;;;:::o;17599:31::-;;;;:::o;1992:77::-;2038:7;2058:6;;;;;;;;;;;2051:13;;1992:77;:::o;17506:58::-;17545:19;17506:58;:::o;8897:94::-;8953:13;8979:7;8972:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8897:94;:::o;12612:364::-;12705:4;12715:24;12742:11;:25;12754:12;:10;:12::i;:::-;12742:25;;;;;;;;;;;;;;;:34;12768:7;12742:34;;;;;;;;;;;;;;;;12715:61;;12808:15;12788:16;:35;;12780:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;12883:67;12892:12;:10;:12::i;:::-;12906:7;12934:15;12915:16;:34;12883:8;:67::i;:::-;12967:4;12960:11;;;12612:364;;;;:::o;10153:158::-;10239:4;10249:42;10259:12;:10;:12::i;:::-;10273:9;10284:6;10249:9;:42::i;:::-;10302:4;10295:11;;10153:158;;;;:::o;10360:141::-;10449:7;10469:11;:18;10481:5;10469:18;;;;;;;;;;;;;;;:27;10488:7;10469:27;;;;;;;;;;;;;;;;10462:34;;10360:141;;;;:::o;2802:184::-;2192:12;:10;:12::i;:::-;2181:23;;:7;:5;:7::i;:::-;:23;;;2173:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2904:1:::1;2884:22;;:8;:22;;;;2876:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2953:28;2972:8;2953:18;:28::i;:::-;2802:184:::0;:::o;777:88::-;830:7;850:10;843:17;;777:88;:::o;15821:325::-;15943:1;15926:19;;:5;:19;;;;15918:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16017:1;15998:21;;:7;:21;;;;15990:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;16094:6;16064:11;:18;16076:5;16064:18;;;;;;;;;;;;;;;:27;16083:7;16064:27;;;;;;;;;;;;;;;:36;;;;16125:7;16109:32;;16118:5;16109:32;;;16134:6;16109:32;;;;;;:::i;:::-;;;;;;;;15821:325;;;:::o;13408:625::-;13535:1;13517:20;;:6;:20;;;;13509:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;13612:1;13591:23;;:9;:23;;;;13583:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;13660:47;13681:6;13689:9;13700:6;13660:20;:47::i;:::-;13713:21;13737:9;:17;13747:6;13737:17;;;;;;;;;;;;;;;;13713:41;;13783:6;13766:13;:23;;13758:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;13886:6;13870:13;:22;13850:9;:17;13860:6;13850:17;;;;;;;;;;;;;;;:42;;;;13924:6;13900:9;:20;13910:9;13900:20;;;;;;;;;;;;;;;;:30;;;;;;;:::i;:::-;;;;;;;;13958:9;13941:35;;13950:6;13941:35;;;13969:6;13941:35;;;;;;:::i;:::-;;;;;;;;13982:46;14002:6;14010:9;14021:6;13982:19;:46::i;:::-;13408:625;;;;:::o;14923:514::-;15019:1;15000:21;;:7;:21;;;;14992:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;15065:49;15086:7;15103:1;15107:6;15065:20;:49::i;:::-;15120:22;15145:9;:18;15155:7;15145:18;;;;;;;;;;;;;;;;15120:43;;15193:6;15175:14;:24;;15167:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;15294:6;15277:14;:23;15256:9;:18;15266:7;15256:18;;;;;;;;;;;;;;;:44;;;;15324:6;15308:12;;:22;;;;;;;:::i;:::-;;;;;;;;15367:1;15341:37;;15350:7;15341:37;;;15371:6;15341:37;;;;;;:::i;:::-;;;;;;;;15384:48;15404:7;15421:1;15425:6;15384:19;:48::i;:::-;14923:514;;;:::o;3128:167::-;3195:16;3214:6;;;;;;;;;;;3195:25;;3233:8;3224:6;;:17;;;;;;;;;;;;;;;;;;3281:8;3250:40;;3271:8;3250:40;;;;;;;;;;;;3128:167;;:::o;18287:619::-;18439:10;:14;18450:2;18439:14;;;;;;;;;;;;;;;;;;;;;;;;;18438:15;:36;;;;;18458:10;:16;18469:4;18458:16;;;;;;;;;;;;;;;;;;;;;;;;;18457:17;18438:36;18430:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;18532:1;18507:27;;:13;;;;;;;;;;;:27;;;18503:148;;;18567:7;:5;:7::i;:::-;18559:15;;:4;:15;;;:32;;;;18584:7;:5;:7::i;:::-;18578:13;;:2;:13;;;18559:32;18551:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18633:7;;18503:148;18667:7;;;;;;;;;;;:32;;;;;18686:13;;;;;;;;;;;18678:21;;:4;:21;;;18667:32;18663:236;;;18756:16;;18746:6;18724:19;18740:2;18724:15;:19::i;:::-;:28;;;;:::i;:::-;:48;;18716:89;;;;;;;;;;;;:::i;:::-;;;;;;;;;18838:11;;18828:6;:21;;18820:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;18663:236;18287:619;;;;:::o;17335:100::-;;;;:::o;7:139:1:-;;91:6;78:20;69:29;;107:33;134:5;107:33;:::i;:::-;59:87;;;;:::o;152:133::-;;233:6;220:20;211:29;;249:30;273:5;249:30;:::i;:::-;201:84;;;;:::o;291:139::-;;375:6;362:20;353:29;;391:33;418:5;391:33;:::i;:::-;343:87;;;;:::o;436:262::-;;544:2;532:9;523:7;519:23;515:32;512:2;;;560:1;557;550:12;512:2;603:1;628:53;673:7;664:6;653:9;649:22;628:53;:::i;:::-;618:63;;574:117;502:196;;;;:::o;704:407::-;;;829:2;817:9;808:7;804:23;800:32;797:2;;;845:1;842;835:12;797:2;888:1;913:53;958:7;949:6;938:9;934:22;913:53;:::i;:::-;903:63;;859:117;1015:2;1041:53;1086:7;1077:6;1066:9;1062:22;1041:53;:::i;:::-;1031:63;;986:118;787:324;;;;;:::o;1117:552::-;;;;1259:2;1247:9;1238:7;1234:23;1230:32;1227:2;;;1275:1;1272;1265:12;1227:2;1318:1;1343:53;1388:7;1379:6;1368:9;1364:22;1343:53;:::i;:::-;1333:63;;1289:117;1445:2;1471:53;1516:7;1507:6;1496:9;1492:22;1471:53;:::i;:::-;1461:63;;1416:118;1573:2;1599:53;1644:7;1635:6;1624:9;1620:22;1599:53;:::i;:::-;1589:63;;1544:118;1217:452;;;;;:::o;1675:401::-;;;1797:2;1785:9;1776:7;1772:23;1768:32;1765:2;;;1813:1;1810;1803:12;1765:2;1856:1;1881:53;1926:7;1917:6;1906:9;1902:22;1881:53;:::i;:::-;1871:63;;1827:117;1983:2;2009:50;2051:7;2042:6;2031:9;2027:22;2009:50;:::i;:::-;1999:60;;1954:115;1755:321;;;;;:::o;2082:407::-;;;2207:2;2195:9;2186:7;2182:23;2178:32;2175:2;;;2223:1;2220;2213:12;2175:2;2266:1;2291:53;2336:7;2327:6;2316:9;2312:22;2291:53;:::i;:::-;2281:63;;2237:117;2393:2;2419:53;2464:7;2455:6;2444:9;2440:22;2419:53;:::i;:::-;2409:63;;2364:118;2165:324;;;;;:::o;2495:692::-;;;;;2651:3;2639:9;2630:7;2626:23;2622:33;2619:2;;;2668:1;2665;2658:12;2619:2;2711:1;2736:50;2778:7;2769:6;2758:9;2754:22;2736:50;:::i;:::-;2726:60;;2682:114;2835:2;2861:53;2906:7;2897:6;2886:9;2882:22;2861:53;:::i;:::-;2851:63;;2806:118;2963:2;2989:53;3034:7;3025:6;3014:9;3010:22;2989:53;:::i;:::-;2979:63;;2934:118;3091:2;3117:53;3162:7;3153:6;3142:9;3138:22;3117:53;:::i;:::-;3107:63;;3062:118;2609:578;;;;;;;:::o;3193:262::-;;3301:2;3289:9;3280:7;3276:23;3272:32;3269:2;;;3317:1;3314;3307:12;3269:2;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3259:196;;;;:::o;3461:118::-;3548:24;3566:5;3548:24;:::i;:::-;3543:3;3536:37;3526:53;;:::o;3585:109::-;3666:21;3681:5;3666:21;:::i;:::-;3661:3;3654:34;3644:50;;:::o;3700:364::-;;3816:39;3849:5;3816:39;:::i;:::-;3871:71;3935:6;3930:3;3871:71;:::i;:::-;3864:78;;3951:52;3996:6;3991:3;3984:4;3977:5;3973:16;3951:52;:::i;:::-;4028:29;4050:6;4028:29;:::i;:::-;4023:3;4019:39;4012:46;;3792:272;;;;;:::o;4070:367::-;;4233:67;4297:2;4292:3;4233:67;:::i;:::-;4226:74;;4330:34;4326:1;4321:3;4317:11;4310:55;4396:5;4391:2;4386:3;4382:12;4375:27;4428:2;4423:3;4419:12;4412:19;;4216:221;;;:::o;4443:366::-;;4606:67;4670:2;4665:3;4606:67;:::i;:::-;4599:74;;4703:34;4699:1;4694:3;4690:11;4683:55;4769:4;4764:2;4759:3;4755:12;4748:26;4800:2;4795:3;4791:12;4784:19;;4589:220;;;:::o;4815:365::-;;4978:67;5042:2;5037:3;4978:67;:::i;:::-;4971:74;;5075:34;5071:1;5066:3;5062:11;5055:55;5141:3;5136:2;5131:3;5127:12;5120:25;5171:2;5166:3;5162:12;5155:19;;4961:219;;;:::o;5186:370::-;;5349:67;5413:2;5408:3;5349:67;:::i;:::-;5342:74;;5446:34;5442:1;5437:3;5433:11;5426:55;5512:8;5507:2;5502:3;5498:12;5491:30;5547:2;5542:3;5538:12;5531:19;;5332:224;;;:::o;5562:366::-;;5725:67;5789:2;5784:3;5725:67;:::i;:::-;5718:74;;5822:34;5818:1;5813:3;5809:11;5802:55;5888:4;5883:2;5878:3;5874:12;5867:26;5919:2;5914:3;5910:12;5903:19;;5708:220;;;:::o;5934:326::-;;6097:67;6161:2;6156:3;6097:67;:::i;:::-;6090:74;;6194:30;6190:1;6185:3;6181:11;6174:51;6251:2;6246:3;6242:12;6235:19;;6080:180;;;:::o;6266:370::-;;6429:67;6493:2;6488:3;6429:67;:::i;:::-;6422:74;;6526:34;6522:1;6517:3;6513:11;6506:55;6592:8;6587:2;6582:3;6578:12;6571:30;6627:2;6622:3;6618:12;6611:19;;6412:224;;;:::o;6642:372::-;;6805:67;6869:2;6864:3;6805:67;:::i;:::-;6798:74;;6902:34;6898:1;6893:3;6889:11;6882:55;6968:10;6963:2;6958:3;6954:12;6947:32;7005:2;7000:3;6996:12;6989:19;;6788:226;;;:::o;7020:330::-;;7183:67;7247:2;7242:3;7183:67;:::i;:::-;7176:74;;7280:34;7276:1;7271:3;7267:11;7260:55;7341:2;7336:3;7332:12;7325:19;;7166:184;;;:::o;7356:365::-;;7519:67;7583:2;7578:3;7519:67;:::i;:::-;7512:74;;7616:34;7612:1;7607:3;7603:11;7596:55;7682:3;7677:2;7672:3;7668:12;7661:25;7712:2;7707:3;7703:12;7696:19;;7502:219;;;:::o;7727:320::-;;7890:67;7954:2;7949:3;7890:67;:::i;:::-;7883:74;;7987:24;7983:1;7978:3;7974:11;7967:45;8038:2;8033:3;8029:12;8022:19;;7873:174;;;:::o;8053:369::-;;8216:67;8280:2;8275:3;8216:67;:::i;:::-;8209:74;;8313:34;8309:1;8304:3;8300:11;8293:55;8379:7;8374:2;8369:3;8365:12;8358:29;8413:2;8408:3;8404:12;8397:19;;8199:223;;;:::o;8428:368::-;;8591:67;8655:2;8650:3;8591:67;:::i;:::-;8584:74;;8688:34;8684:1;8679:3;8675:11;8668:55;8754:6;8749:2;8744:3;8740:12;8733:28;8787:2;8782:3;8778:12;8771:19;;8574:222;;;:::o;8802:369::-;;8965:67;9029:2;9024:3;8965:67;:::i;:::-;8958:74;;9062:34;9058:1;9053:3;9049:11;9042:55;9128:7;9123:2;9118:3;9114:12;9107:29;9162:2;9157:3;9153:12;9146:19;;8948:223;;;:::o;9177:309::-;;9340:67;9404:2;9399:3;9340:67;:::i;:::-;9333:74;;9437:13;9433:1;9428:3;9424:11;9417:34;9477:2;9472:3;9468:12;9461:19;;9323:163;;;:::o;9492:118::-;9579:24;9597:5;9579:24;:::i;:::-;9574:3;9567:37;9557:53;;:::o;9616:112::-;9699:22;9715:5;9699:22;:::i;:::-;9694:3;9687:35;9677:51;;:::o;9734:222::-;;9865:2;9854:9;9850:18;9842:26;;9878:71;9946:1;9935:9;9931:17;9922:6;9878:71;:::i;:::-;9832:124;;;;:::o;9962:210::-;;10087:2;10076:9;10072:18;10064:26;;10100:65;10162:1;10151:9;10147:17;10138:6;10100:65;:::i;:::-;10054:118;;;;:::o;10178:313::-;;10329:2;10318:9;10314:18;10306:26;;10378:9;10372:4;10368:20;10364:1;10353:9;10349:17;10342:47;10406:78;10479:4;10470:6;10406:78;:::i;:::-;10398:86;;10296:195;;;;:::o;10497:419::-;;10701:2;10690:9;10686:18;10678:26;;10750:9;10744:4;10740:20;10736:1;10725:9;10721:17;10714:47;10778:131;10904:4;10778:131;:::i;:::-;10770:139;;10668:248;;;:::o;10922:419::-;;11126:2;11115:9;11111:18;11103:26;;11175:9;11169:4;11165:20;11161:1;11150:9;11146:17;11139:47;11203:131;11329:4;11203:131;:::i;:::-;11195:139;;11093:248;;;:::o;11347:419::-;;11551:2;11540:9;11536:18;11528:26;;11600:9;11594:4;11590:20;11586:1;11575:9;11571:17;11564:47;11628:131;11754:4;11628:131;:::i;:::-;11620:139;;11518:248;;;:::o;11772:419::-;;11976:2;11965:9;11961:18;11953:26;;12025:9;12019:4;12015:20;12011:1;12000:9;11996:17;11989:47;12053:131;12179:4;12053:131;:::i;:::-;12045:139;;11943:248;;;:::o;12197:419::-;;12401:2;12390:9;12386:18;12378:26;;12450:9;12444:4;12440:20;12436:1;12425:9;12421:17;12414:47;12478:131;12604:4;12478:131;:::i;:::-;12470:139;;12368:248;;;:::o;12622:419::-;;12826:2;12815:9;12811:18;12803:26;;12875:9;12869:4;12865:20;12861:1;12850:9;12846:17;12839:47;12903:131;13029:4;12903:131;:::i;:::-;12895:139;;12793:248;;;:::o;13047:419::-;;13251:2;13240:9;13236:18;13228:26;;13300:9;13294:4;13290:20;13286:1;13275:9;13271:17;13264:47;13328:131;13454:4;13328:131;:::i;:::-;13320:139;;13218:248;;;:::o;13472:419::-;;13676:2;13665:9;13661:18;13653:26;;13725:9;13719:4;13715:20;13711:1;13700:9;13696:17;13689:47;13753:131;13879:4;13753:131;:::i;:::-;13745:139;;13643:248;;;:::o;13897:419::-;;14101:2;14090:9;14086:18;14078:26;;14150:9;14144:4;14140:20;14136:1;14125:9;14121:17;14114:47;14178:131;14304:4;14178:131;:::i;:::-;14170:139;;14068:248;;;:::o;14322:419::-;;14526:2;14515:9;14511:18;14503:26;;14575:9;14569:4;14565:20;14561:1;14550:9;14546:17;14539:47;14603:131;14729:4;14603:131;:::i;:::-;14595:139;;14493:248;;;:::o;14747:419::-;;14951:2;14940:9;14936:18;14928:26;;15000:9;14994:4;14990:20;14986:1;14975:9;14971:17;14964:47;15028:131;15154:4;15028:131;:::i;:::-;15020:139;;14918:248;;;:::o;15172:419::-;;15376:2;15365:9;15361:18;15353:26;;15425:9;15419:4;15415:20;15411:1;15400:9;15396:17;15389:47;15453:131;15579:4;15453:131;:::i;:::-;15445:139;;15343:248;;;:::o;15597:419::-;;15801:2;15790:9;15786:18;15778:26;;15850:9;15844:4;15840:20;15836:1;15825:9;15821:17;15814:47;15878:131;16004:4;15878:131;:::i;:::-;15870:139;;15768:248;;;:::o;16022:419::-;;16226:2;16215:9;16211:18;16203:26;;16275:9;16269:4;16265:20;16261:1;16250:9;16246:17;16239:47;16303:131;16429:4;16303:131;:::i;:::-;16295:139;;16193:248;;;:::o;16447:419::-;;16651:2;16640:9;16636:18;16628:26;;16700:9;16694:4;16690:20;16686:1;16675:9;16671:17;16664:47;16728:131;16854:4;16728:131;:::i;:::-;16720:139;;16618:248;;;:::o;16872:222::-;;17003:2;16992:9;16988:18;16980:26;;17016:71;17084:1;17073:9;17069:17;17060:6;17016:71;:::i;:::-;16970:124;;;;:::o;17100:214::-;;17227:2;17216:9;17212:18;17204:26;;17240:67;17304:1;17293:9;17289:17;17280:6;17240:67;:::i;:::-;17194:120;;;;:::o;17320:99::-;;17406:5;17400:12;17390:22;;17379:40;;;:::o;17425:169::-;;17543:6;17538:3;17531:19;17583:4;17578:3;17574:14;17559:29;;17521:73;;;;:::o;17600:305::-;;17659:20;17677:1;17659:20;:::i;:::-;17654:25;;17693:20;17711:1;17693:20;:::i;:::-;17688:25;;17847:1;17779:66;17775:74;17772:1;17769:81;17766:2;;;17853:18;;:::i;:::-;17766:2;17897:1;17894;17890:9;17883:16;;17644:261;;;;:::o;17911:191::-;;17971:20;17989:1;17971:20;:::i;:::-;17966:25;;18005:20;18023:1;18005:20;:::i;:::-;18000:25;;18044:1;18041;18038:8;18035:2;;;18049:18;;:::i;:::-;18035:2;18094:1;18091;18087:9;18079:17;;17956:146;;;;:::o;18108:96::-;;18174:24;18192:5;18174:24;:::i;:::-;18163:35;;18153:51;;;:::o;18210:90::-;;18287:5;18280:13;18273:21;18262:32;;18252:48;;;:::o;18306:126::-;;18383:42;18376:5;18372:54;18361:65;;18351:81;;;:::o;18438:77::-;;18504:5;18493:16;;18483:32;;;:::o;18521:86::-;;18596:4;18589:5;18585:16;18574:27;;18564:43;;;:::o;18613:307::-;18681:1;18691:113;18705:6;18702:1;18699:13;18691:113;;;18790:1;18785:3;18781:11;18775:18;18771:1;18766:3;18762:11;18755:39;18727:2;18724:1;18720:10;18715:15;;18691:113;;;18822:6;18819:1;18816:13;18813:2;;;18902:1;18893:6;18888:3;18884:16;18877:27;18813:2;18662:258;;;;:::o;18926:320::-;;19007:1;19001:4;18997:12;18987:22;;19054:1;19048:4;19044:12;19075:18;19065:2;;19131:4;19123:6;19119:17;19109:27;;19065:2;19193;19185:6;19182:14;19162:18;19159:38;19156:2;;;19212:18;;:::i;:::-;19156:2;18977:269;;;;:::o;19252:180::-;19300:77;19297:1;19290:88;19397:4;19394:1;19387:15;19421:4;19418:1;19411:15;19438:180;19486:77;19483:1;19476:88;19583:4;19580:1;19573:15;19607:4;19604:1;19597:15;19624:102;;19716:2;19712:7;19707:2;19700:5;19696:14;19692:28;19682:38;;19672:54;;;:::o;19732:122::-;19805:24;19823:5;19805:24;:::i;:::-;19798:5;19795:35;19785:2;;19844:1;19841;19834:12;19785:2;19775:79;:::o;19860:116::-;19930:21;19945:5;19930:21;:::i;:::-;19923:5;19920:32;19910:2;;19966:1;19963;19956:12;19910:2;19900:76;:::o;19982:122::-;20055:24;20073:5;20055:24;:::i;:::-;20048:5;20045:35;20035:2;;20094:1;20091;20084:12;20035:2;20025:79;:::o

Swarm Source

ipfs://6ccad2afc9d83edbf0ce07bddc462e7503509695780ca1059174bf46da3de1b7
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.