ETH Price: $3,481.61 (+2.16%)
Gas: 8 Gwei

Token

Coffee Junkies (CJ)
 

Overview

Max Total Supply

5,779 CJ

Holders

2,537

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
alpinelifer.eth
Balance
1 CJ
0x7a79944ac7e770cfd13ec024a4b31b8c5efee60d
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

In the world where technology makes us feel even more isolated, we decided to create a project that will be focused on community. We can all agree that a good cup of coffee comes pretty darn close to a nice big hug. So here’s a hug from us to you with 6,000 uniquely brewed coffee junkies.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
CoffeeJunkies

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-04-21
*/

pragma solidity ^0.8.0;

// SPDX-License-Identifier: MIT

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

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() {
        _setOwner(_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 {
        _setOwner(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");
        _setOwner(newOwner);
    }

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

    /**
     * @dev Converts a `uint256` to its ASCII `string` decimal representation.
     */
    function toString(uint256 value) internal pure returns (string memory) {
        // Inspired by OraclizeAPI's implementation - MIT licence
        // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol

        if (value == 0) {
            return "0";
        }
        uint256 temp = value;
        uint256 digits;
        while (temp != 0) {
            digits++;
            temp /= 10;
        }
        bytes memory buffer = new bytes(digits);
        while (value != 0) {
            digits -= 1;
            buffer[digits] = bytes1(uint8(48 + uint256(value % 10)));
            value /= 10;
        }
        return string(buffer);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation.
     */
    function toHexString(uint256 value) internal pure returns (string memory) {
        if (value == 0) {
            return "0x00";
        }
        uint256 temp = value;
        uint256 length = 0;
        while (temp != 0) {
            length++;
            temp >>= 8;
        }
        return toHexString(value, length);
    }

    /**
     * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length.
     */
    function toHexString(uint256 value, uint256 length) internal pure returns (string memory) {
        bytes memory buffer = new bytes(2 * length + 2);
        buffer[0] = "0";
        buffer[1] = "x";
        for (uint256 i = 2 * length + 1; i > 1; --i) {
            buffer[i] = _HEX_SYMBOLS[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }
}

abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and make it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

interface IERC721 is IERC165 {
    /**
     * @dev Emitted when `tokenId` token is transferred from `from` to `to`.
     */
    event Transfer(address indexed from, address indexed to, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token.
     */
    event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId);

    /**
     * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets.
     */
    event ApprovalForAll(address indexed owner, address indexed operator, bool approved);

    /**
     * @dev Returns the number of tokens in ``owner``'s account.
     */
    function balanceOf(address owner) external view returns (uint256 balance);

    /**
     * @dev Returns the owner of the `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function ownerOf(uint256 tokenId) external view returns (address owner);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Transfers `tokenId` token from `from` to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     *
     * Emits a {Transfer} event.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

    /**
     * @dev Gives permission to `to` to transfer `tokenId` token to another account.
     * The approval is cleared when the token is transferred.
     *
     * Only a single account can be approved at a time, so approving the zero address clears previous approvals.
     *
     * Requirements:
     *
     * - The caller must own the token or be an approved operator.
     * - `tokenId` must exist.
     *
     * Emits an {Approval} event.
     */
    function approve(address to, uint256 tokenId) external;

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function getApproved(uint256 tokenId) external view returns (address operator);

    /**
     * @dev Approve or remove `operator` as an operator for the caller.
     * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller.
     *
     * Requirements:
     *
     * - The `operator` cannot be the caller.
     *
     * Emits an {ApprovalForAll} event.
     */
    function setApprovalForAll(address operator, bool _approved) external;

    /**
     * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`.
     *
     * See {setApprovalForAll}
     */
    function isApprovedForAll(address owner, address operator) external view returns (bool);

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;
}

interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns a token ID owned by `owner` at a given `index` of its token list.
     * Use along with {balanceOf} to enumerate all of ``owner``'s tokens.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId);

    /**
     * @dev Returns a token ID at a given `index` of all the tokens stored by the contract.
     * Use along with {totalSupply} to enumerate all tokens.
     */
    function tokenByIndex(uint256 index) external view returns (uint256);
}

interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`.
     */
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

    /**
     * @dev Returns the token collection symbol.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token.
     */
    function tokenURI(uint256 tokenId) external view returns (string memory);
}

library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize, which returns 0 for contracts in
        // construction, since the code is only stored at the end of the
        // constructor execution.

        uint256 size;
        assembly {
            size := extcodesize(account)
        }
        return size > 0;
    }

    /**
     * @dev Replacement for Solidity's `transfer`: sends `amount` wei to
     * `recipient`, forwarding all available gas and reverting on errors.
     *
     * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost
     * of certain opcodes, possibly making contracts go over the 2300 gas limit
     * imposed by `transfer`, making them unable to receive funds via
     * `transfer`. {sendValue} removes this limitation.
     *
     * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
     *
     * IMPORTANT: because control is transferred to `recipient`, care must be
     * taken to not create reentrancy vulnerabilities. Consider using
     * {ReentrancyGuard} or the
     * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
     */
    function sendValue(address payable recipient, uint256 amount) internal {
        require(address(this).balance >= amount, "Address: insufficient balance");

        (bool success, ) = recipient.call{value: amount}("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

    /**
     * @dev Performs a Solidity function call using a low level `call`. A
     * plain `call` is an unsafe replacement for a function call: use this
     * function instead.
     *
     * If `target` reverts with a revert reason, it is bubbled up by this
     * function (like regular Solidity function calls).
     *
     * Returns the raw returned data. To convert to the expected return value,
     * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`].
     *
     * Requirements:
     *
     * - `target` must be a contract.
     * - calling `target` with `data` must not revert.
     *
     * _Available since v3.1._
     */
    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with
     * `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but also transferring `value` wei to `target`.
     *
     * Requirements:
     *
     * - the calling contract must have an ETH balance of at least `value`.
     * - the called Solidity function must be `payable`.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, value, "Address: low-level call with value failed");
    }

    /**
     * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but
     * with `errorMessage` as a fallback revert reason when `target` reverts.
     *
     * _Available since v3.1._
     */
    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

        (bool success, bytes memory returndata) = target.call{value: value}(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) {
        return functionStaticCall(target, data, "Address: low-level static call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a static call.
     *
     * _Available since v3.3._
     */
    function functionStaticCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal view returns (bytes memory) {
        require(isContract(target), "Address: static call to non-contract");

        (bool success, bytes memory returndata) = target.staticcall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionDelegateCall(target, data, "Address: low-level delegate call failed");
    }

    /**
     * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`],
     * but performing a delegate call.
     *
     * _Available since v3.4._
     */
    function functionDelegateCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(isContract(target), "Address: delegate call to non-contract");

        (bool success, bytes memory returndata) = target.delegatecall(data);
        return verifyCallResult(success, returndata, errorMessage);
    }

    /**
     * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
     * revert reason using the provided one.
     *
     * _Available since v4.3._
     */
    function verifyCallResult(
        bool success,
        bytes memory returndata,
        string memory errorMessage
    ) internal pure returns (bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

abstract contract ERC721P is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    string private _name;
    string private _symbol;
    address[] internal _owners;
    mapping(uint256 => address) private _tokenApprovals;
    mapping(address => mapping(address => bool)) private _operatorApprovals;
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
        interfaceId == type(IERC721).interfaceId ||
        interfaceId == type(IERC721Metadata).interfaceId ||
        super.supportsInterface(interfaceId);
    }
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        uint count = 0;
        uint length = _owners.length;
        for( uint i = 0; i < length; ++i ){
            if( owner == _owners[i] ){
                ++count;
            }
        }
        delete length;
        return count;
    }
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }
    function name() public view virtual override returns (string memory) {
        return _name;
    }
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721P.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

        require(
            _msgSender() == owner || isApprovedForAll(owner, _msgSender()),
            "ERC721: approve caller is not owner nor approved for all"
        );

        _approve(to, tokenId);
    }
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }
    function _safeTransfer(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return tokenId < _owners.length && _owners[tokenId] != address(0);
    }
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721P.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }
    function _safeMint(
        address to,
        uint256 tokenId,
        bytes memory _data
    ) internal virtual {
        _mint(to, tokenId);
        require(
            _checkOnERC721Received(address(0), to, tokenId, _data),
            "ERC721: transfer to non ERC721Receiver implementer"
        );
    }
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

        _beforeTokenTransfer(address(0), to, tokenId);
        _owners.push(to);

        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721P.ownerOf(tokenId);

        _beforeTokenTransfer(owner, address(0), tokenId);

        // Clear approvals
        _approve(address(0), tokenId);
        _owners[tokenId] = address(0);

        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721P.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721P.ownerOf(tokenId), to, tokenId);
    }
    function _checkOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

abstract contract ERC721Enum is ERC721P, IERC721Enumerable {
    function supportsInterface(bytes4 interfaceId) public view virtual override(IERC165, ERC721P) returns (bool) {
        return interfaceId == type(IERC721Enumerable).interfaceId || super.supportsInterface(interfaceId);
    }
    function tokenOfOwnerByIndex(address owner, uint256 index) public view override returns (uint256 tokenId) {
        require(index < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint count;
        for( uint i; i < _owners.length; ++i ){
            if( owner == _owners[i] ){
                if( count == index )
                    return i;
                else
                    ++count;
            }
        }
        require(false, "ERC721Enum: owner ioob");
    }
    function tokensOfOwner(address owner) public view returns (uint256[] memory) {
        require(0 < ERC721P.balanceOf(owner), "ERC721Enum: owner ioob");
        uint256 tokenCount = balanceOf(owner);
        uint256[] memory tokenIds = new uint256[](tokenCount);
        for (uint256 i = 0; i < tokenCount; i++) {
            tokenIds[i] = tokenOfOwnerByIndex(owner, i);
        }
        return tokenIds;
    }
    function totalSupply() public view virtual override returns (uint256) {
        return _owners.length;
    }
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enum.totalSupply(), "ERC721Enum: global ioob");
        return index;
    }
}

library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        bytes32 computedHash = leaf;

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}

contract CoffeeJunkies is ERC721Enum, Ownable, ReentrancyGuard {
    using Strings for uint256;
	
    uint256 public SALE_NFT = 5200;
	uint256 public DSH_NFT = 700;
	uint256 public GIVEAWAY_NFT = 100;
	
	uint256 public MAX_MINT_PRESALE = 3;
	uint256 public MAX_MINT_SALE = 5200;
	
	uint256 public MAX_BY_MINT_IN_TRANSACTION_PRESALE = 3;
	uint256 public MAX_BY_MINT_IN_TRANSACTION_SALE = 5;
	
	uint256 public PRESALE_PRICE = 5 * 10**16;
	uint256 public SALE_PRICE = 5 * 10**16;
	
	uint256 public SALE_MINTED;
	uint256 public GIVEAWAY_MINTED;
	uint256 public DSH_MINTED;
	
	bool public doubleShotHolderSaleEnable = false;
    bool public presaleEnable = false;
	bool public saleEnable = false;
	
    string private baseURI;
	bytes32 public merkleRootDoubleShotHolder;
	bytes32 public merkleRootPreSale;
	
	struct User {
	    uint256 doubleshotholdermint;
		uint256 doubleshotmintlimit;
		uint256 presalemint;
		uint256 salemint;
    }
	
	mapping (address => User) public users;

    constructor() ERC721P('Coffee Junkies', 'CJ') {}
	
    function _baseURI() internal view virtual returns (string memory) {
        return baseURI;
    }
	
	function mintGiveawayNFT(address _to, uint256 _count) public onlyOwner{
	    uint256 totalSupply = totalSupply();
        require(
            GIVEAWAY_MINTED + _count <= GIVEAWAY_NFT, 
            "Max limit"
        );
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(_to, totalSupply + i);
			GIVEAWAY_MINTED++;
        }
    }
	
	function mintDoubleShotHolderNFT(uint256 _count, uint256 _limit, bytes32[] calldata merkleProof) public payable{
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		uint256 totalSupply = totalSupply();
		require(
			doubleShotHolderSaleEnable, 
			"Sale is not enable"
		);
        require(
			DSH_MINTED + _count <= DSH_NFT, 
			"Exceeds max limit"
		);
		require(
			MerkleProof.verify(merkleProof, merkleRootDoubleShotHolder, node), 
			"MerkleDistributor: Invalid proof."
		);
		if(users[msg.sender].doubleshotmintlimit == 0)
		{
		    users[msg.sender].doubleshotmintlimit = _limit;
		}
		require(
			users[msg.sender].doubleshotholdermint + _count <= users[msg.sender].doubleshotmintlimit,
			"Exceeds max mint limit per wallet"
		);
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
			DSH_MINTED++;
        }
		users[msg.sender].doubleshotholdermint = users[msg.sender].doubleshotholdermint + _count;
    }
	
	function mintPreSaleNFT(uint256 _count, bytes32[] calldata merkleProof) public payable{
		bytes32 node = keccak256(abi.encodePacked(msg.sender));
		uint256 totalSupply = totalSupply();
		require(
			presaleEnable, 
			"Pre-sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			MerkleProof.verify(merkleProof, merkleRootPreSale, node), 
			"MerkleDistributor: Invalid proof."
		);
		require(
			users[msg.sender].presalemint + _count <= MAX_MINT_PRESALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_PRESALE,
			"Exceeds max mint limit per txn"
		);
		require(
			msg.value >= PRESALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
			SALE_MINTED++;
        }
		users[msg.sender].presalemint = users[msg.sender].presalemint + _count;
    }
	
	function mintSaleNFT(uint256 _count) public payable{
		uint256 totalSupply = totalSupply();
		require(
			saleEnable, 
			"Sale is not enable"
		);
        require(
			SALE_MINTED + _count <= SALE_NFT, 
			"Exceeds max limit"
		);
		require(
			users[msg.sender].salemint + _count <= MAX_MINT_SALE,
			"Exceeds max mint limit per wallet"
		);
		require(
			_count <= MAX_BY_MINT_IN_TRANSACTION_SALE,
			"Exceeds max mint limit per txn"
		);
		require(
			msg.value >= SALE_PRICE * _count,
			"Value below price"
		);
		for (uint256 i = 0; i < _count; i++) {
            _safeMint(msg.sender, totalSupply + i);
			SALE_MINTED++;
        }
		users[msg.sender].salemint = users[msg.sender].salemint + _count;
    }
	
    function tokenURI(uint256 _tokenId) external view virtual override returns (string memory) {
        require(_exists(_tokenId), "ERC721Metadata: Nonexistent token");
        string memory currentBaseURI = _baseURI();
        return bytes(currentBaseURI).length > 0	? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), ".json")) : "";
    }
	
    function transferFrom(address _from, address _to, uint256 _tokenId) public override {
        ERC721P.transferFrom(_from, _to, _tokenId);
    }

    function safeTransferFrom(address _from, address _to, uint256 _tokenId, bytes memory _data) public override {
        ERC721P.safeTransferFrom(_from, _to, _tokenId, _data);
    }
	
	function withdraw() public onlyOwner {
        uint256 balance = address(this).balance;
        payable(msg.sender).transfer(balance);
    }
	
	function setBaseURI(string memory newBaseURI) public onlyOwner {
        baseURI = newBaseURI;
    }
	
	function updatePreSalePrice(uint256 newPrice) external onlyOwner {
        PRESALE_PRICE = newPrice;
    }
	
	function updateSalePrice(uint256 newPrice) external onlyOwner {
        SALE_PRICE = newPrice;
    }
	
	function setDoubleShotHolderSaleStatus(bool status) public onlyOwner {
	   require(doubleShotHolderSaleEnable != status, "Incorrect value");
       doubleShotHolderSaleEnable = status;
    }
	
	function setPreSaleStatus(bool status) public onlyOwner {
        require(presaleEnable != status, "Incorrect value");
		presaleEnable = status;
    }
	
	function setSaleStatus(bool status) public onlyOwner {
        require(saleEnable != status, "Incorrect value");
		saleEnable = status;
    }
	
	function updatePreSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_PRESALE = newLimit;
    }
	
	function updateSaleMintLimit(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_MINT_SALE = newLimit;
    }
	
	function updateDSHSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= DSH_MINTED, "Incorrect value");
        DSH_NFT = newSupply;
    }
	
	function updateSaleSupply(uint256 newSupply) external onlyOwner {
	    require(newSupply >= SALE_MINTED, "Incorrect value");
        SALE_NFT = newSupply;
    }
	
	function updateMintLimitPerTransectionPreSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_PRESALE = newLimit;
    }
	
	function updateMintLimitPerTransectionSale(uint256 newLimit) external onlyOwner {
	    require(SALE_NFT >= newLimit, "Incorrect value");
        MAX_BY_MINT_IN_TRANSACTION_SALE = newLimit;
    }
	
	function updatePreSaleMerkleRoot(bytes32 newRoot) external onlyOwner {
	     merkleRootPreSale = newRoot;
	}
	
	function updateDoubleShotHolderMerkleRoot(bytes32 newRoot) external onlyOwner {
	    merkleRootDoubleShotHolder = newRoot;
	}
}

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":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","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":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DSH_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DSH_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"GIVEAWAY_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_BY_MINT_IN_TRANSACTION_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_MINT_SALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_MINTED","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_NFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"doubleShotHolderSaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootDoubleShotHolder","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRootPreSale","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"uint256","name":"_limit","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintDoubleShotHolderNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintGiveawayNFT","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"mintPreSaleNFT","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_count","type":"uint256"}],"name":"mintSaleNFT","outputs":[],"stateMutability":"payable","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleEnable","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setDoubleShotHolderSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setPreSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"status","type":"bool"}],"name":"setSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"tokensOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_from","type":"address"},{"internalType":"address","name":"_to","type":"address"},{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateDSHSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updateDoubleShotHolderMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionPreSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateMintLimitPerTransectionSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"newRoot","type":"bytes32"}],"name":"updatePreSaleMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updatePreSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updatePreSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newLimit","type":"uint256"}],"name":"updateSaleMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newPrice","type":"uint256"}],"name":"updateSalePrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newSupply","type":"uint256"}],"name":"updateSaleSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"users","outputs":[{"internalType":"uint256","name":"doubleshotholdermint","type":"uint256"},{"internalType":"uint256","name":"doubleshotmintlimit","type":"uint256"},{"internalType":"uint256","name":"presalemint","type":"uint256"},{"internalType":"uint256","name":"salemint","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405261145060078190556102bc60085560646009556003600a819055600b91909155600c556005600d5566b1a2bc2ec50000600e819055600f556013805462ffffff191690553480156200005557600080fd5b50604080518082018252600e81526d436f66666565204a756e6b69657360901b60208083019182528351808501909452600284526121a560f11b908401528151919291620000a6916000916200013a565b508051620000bc9060019060208401906200013a565b505050620000d9620000d3620000e460201b60201c565b620000e8565b60016006556200021d565b3390565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b8280546200014890620001e0565b90600052602060002090601f0160209004810192826200016c5760008555620001b7565b82601f106200018757805160ff1916838001178555620001b7565b82800160010185558215620001b7579182015b82811115620001b75782518255916020019190600101906200019a565b50620001c5929150620001c9565b5090565b5b80821115620001c55760008155600101620001ca565b600281046001821680620001f557607f821691505b602082108114156200021757634e487b7160e01b600052602260045260246000fd5b50919050565b61324d806200022d6000396000f3fe6080604052600436106103765760003560e01c80637e95eac4116101d1578063a952686211610102578063d897833e116100a0578063f2fde38b1161006f578063f2fde38b14610969578063f439733514610989578063f634597e146109a9578063fe4ca847146109be57610376565b8063d897833e146108e9578063dce051cc14610909578063e985e9c514610929578063f176baaa1461094957610376565b8063c87b56dd116100dc578063c87b56dd1461087f578063caa5330d1461089f578063ccfb63a4146108b4578063ce9d7999146108c957610376565b8063a952686214610837578063ae5cc1721461084a578063b88d4fde1461085f57610376565b8063941e79fc1161016f578063995b8ef611610149578063995b8ef6146107bd578063a22cb465146107d2578063a2e975d0146107f2578063a87430ba1461080757610376565b8063941e79fc14610775578063945242c61461079557806395d89b41146107a857610376565b80637f205a74116101ab5780637f205a741461070957806380a6eaa21461071e5780638462151c146107335780638da5cb5b1461076057610376565b80637e95eac4146106bf5780637ec0912e146106d45780637ec18cf6146106f457610376565b8063418b21f1116102ab5780635e326b921161024957806365fccb521161022357806365fccb521461065557806370a0823114610675578063711cc2ae14610695578063715018a6146106aa57610376565b80635e326b921461060057806362dc6e21146106205780636352211e1461063557610376565b8063497865b311610285578063497865b3146105965780634d7cea16146105ab5780634f6ccce7146105c057806355f804b3146105e057610376565b8063418b21f114610543578063425995721461055657806342842e0e1461057657610376565b806323b872dd116103185780633440404f116102f25780633440404f146104ce5780633ccfd60b146104ee5780633e2e2a80146105035780634104c6a31461052357610376565b806323b872dd1461046e5780632f745c591461048e578063305004d9146104ae57610376565b8063081812fc11610354578063081812fc146103f5578063095ea7b3146104225780630990e5341461044457806318160ddd1461045957610376565b806301ffc9a71461037b57806305af8bf3146103b157806306fdde03146103d3575b600080fd5b34801561038757600080fd5b5061039b6103963660046127cb565b6109d3565b6040516103a89190612a0f565b60405180910390f35b3480156103bd57600080fd5b506103c6610a00565b6040516103a89190612a1a565b3480156103df57600080fd5b506103e8610a06565b6040516103a89190612a23565b34801561040157600080fd5b506104156104103660046127b3565b610a98565b6040516103a8919061297a565b34801561042e57600080fd5b5061044261043d366004612770565b610ae4565b005b34801561045057600080fd5b506103c6610b7c565b34801561046557600080fd5b506103c6610b82565b34801561047a57600080fd5b50610442610489366004612693565b610b88565b34801561049a57600080fd5b506103c66104a9366004612770565b610b93565b3480156104ba57600080fd5b506104426104c93660046127b3565b610c56565b3480156104da57600080fd5b506104426104e93660046127b3565b610cbc565b3480156104fa57600080fd5b50610442610d00565b34801561050f57600080fd5b5061044261051e3660046127b3565b610d72565b34801561052f57600080fd5b5061044261053e3660046127b3565b610dd8565b610442610551366004612893565b610e3e565b34801561056257600080fd5b50610442610571366004612799565b61100a565b34801561058257600080fd5b50610442610591366004612693565b611085565b3480156105a257600080fd5b506103c66110a0565b3480156105b757600080fd5b506103c66110a6565b3480156105cc57600080fd5b506103c66105db3660046127b3565b6110ac565b3480156105ec57600080fd5b506104426105fb366004612803565b6110d8565b34801561060c57600080fd5b5061044261061b366004612799565b61112a565b34801561062c57600080fd5b506103c66111b2565b34801561064157600080fd5b506104156106503660046127b3565b6111b8565b34801561066157600080fd5b506104426106703660046127b3565b611210565b34801561068157600080fd5b506103c6610690366004612647565b611254565b3480156106a157600080fd5b506103c66112f1565b3480156106b657600080fd5b506104426112f7565b3480156106cb57600080fd5b506103c6611342565b3480156106e057600080fd5b506104426106ef3660046127b3565b611348565b34801561070057600080fd5b5061039b61138c565b34801561071557600080fd5b506103c661139a565b34801561072a57600080fd5b5061039b6113a0565b34801561073f57600080fd5b5061075361074e366004612647565b6113a9565b6040516103a891906129cb565b34801561076c57600080fd5b5061041561148f565b34801561078157600080fd5b506104426107903660046127b3565b61149e565b6104426107a3366004612849565b611504565b3480156107b457600080fd5b506103e86116f7565b3480156107c957600080fd5b506103c6611706565b3480156107de57600080fd5b506104426107ed366004612747565b61170c565b3480156107fe57600080fd5b506103c66117da565b34801561081357600080fd5b50610827610822366004612647565b6117e0565b6040516103a894939291906130ac565b6104426108453660046127b3565b611807565b34801561085657600080fd5b506103c6611970565b34801561086b57600080fd5b5061044261087a3660046126ce565b611976565b34801561088b57600080fd5b506103e861089a3660046127b3565b611988565b3480156108ab57600080fd5b506103c6611a0b565b3480156108c057600080fd5b506103c6611a11565b3480156108d557600080fd5b506104426108e43660046127b3565b611a17565b3480156108f557600080fd5b50610442610904366004612799565b611a5b565b34801561091557600080fd5b50610442610924366004612770565b611ae6565b34801561093557600080fd5b5061039b610944366004612661565b611ba1565b34801561095557600080fd5b506104426109643660046127b3565b611bcf565b34801561097557600080fd5b50610442610984366004612647565b611c35565b34801561099557600080fd5b506104426109a43660046127b3565b611ca6565b3480156109b557600080fd5b506103c6611d0c565b3480156109ca57600080fd5b5061039b611d12565b60006001600160e01b0319821663780e9d6360e01b14806109f857506109f882611d21565b90505b919050565b60085481565b606060008054610a1590613155565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4190613155565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa382611d61565b610ac85760405162461bcd60e51b8152600401610abf90612e54565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610aef826111b8565b9050806001600160a01b0316836001600160a01b03161415610b235760405162461bcd60e51b8152600401610abf90612fd9565b806001600160a01b0316610b35611db9565b6001600160a01b03161480610b515750610b5181610944611db9565b610b6d5760405162461bcd60e51b8152600401610abf90612d04565b610b778383611dbd565b505050565b60105481565b60025490565b610b77838383611e2b565b6000610b9e83611254565b8210610bbc5760405162461bcd60e51b8152600401610abf90612f72565b6000805b600254811015610c375760028181548110610beb57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610c275783821415610c1b579150610c509050565b610c2482613190565b91505b610c3081613190565b9050610bc0565b5060405162461bcd60e51b8152600401610abf90612f72565b92915050565b610c5e611db9565b6001600160a01b0316610c6f61148f565b6001600160a01b031614610c955760405162461bcd60e51b8152600401610abf90612ec9565b806007541015610cb75760405162461bcd60e51b8152600401610abf90612ea0565b600c55565b610cc4611db9565b6001600160a01b0316610cd561148f565b6001600160a01b031614610cfb5760405162461bcd60e51b8152600401610abf90612ec9565b601655565b610d08611db9565b6001600160a01b0316610d1961148f565b6001600160a01b031614610d3f5760405162461bcd60e51b8152600401610abf90612ec9565b6040514790339082156108fc029083906000818181858888f19350505050158015610d6e573d6000803e3d6000fd5b5050565b610d7a611db9565b6001600160a01b0316610d8b61148f565b6001600160a01b031614610db15760405162461bcd60e51b8152600401610abf90612ec9565b806007541015610dd35760405162461bcd60e51b8152600401610abf90612ea0565b600d55565b610de0611db9565b6001600160a01b0316610df161148f565b6001600160a01b031614610e175760405162461bcd60e51b8152600401610abf90612ec9565b601254811015610e395760405162461bcd60e51b8152600401610abf90612ea0565b600855565b600033604051602001610e519190612910565b6040516020818303038152906040528051906020012090506000610e73610b82565b60135490915060ff16610e985760405162461bcd60e51b8152600401610abf90612c1b565b60085486601254610ea991906130c7565b1115610ec75760405162461bcd60e51b8152600401610abf90612df4565b610f08848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015549150859050611e63565b610f245760405162461bcd60e51b8152600401610abf90612cc3565b33600090815260176020526040902060010154610f51573360009081526017602052604090206001018590555b33600090815260176020526040902060018101549054610f729088906130c7565b1115610f905760405162461bcd60e51b8152600401610abf9061306b565b60005b86811015610fd657610fae33610fa983856130c7565b611f1e565b60128054906000610fbe83613190565b91905055508080610fce90613190565b915050610f93565b5033600090815260176020526040902054610ff29087906130c7565b33600090815260176020526040902055505050505050565b611012611db9565b6001600160a01b031661102361148f565b6001600160a01b0316146110495760405162461bcd60e51b8152600401610abf90612ec9565b60135460ff16151581151514156110725760405162461bcd60e51b8152600401610abf90612ea0565b6013805460ff1916911515919091179055565b610b7783838360405180602001604052806000815250611976565b60095481565b60115481565b60006110b6610b82565b82106110d45760405162461bcd60e51b8152600401610abf90612fa2565b5090565b6110e0611db9565b6001600160a01b03166110f161148f565b6001600160a01b0316146111175760405162461bcd60e51b8152600401610abf90612ec9565b8051610d6e9060149060208401906124d7565b611132611db9565b6001600160a01b031661114361148f565b6001600160a01b0316146111695760405162461bcd60e51b8152600401610abf90612ec9565b60135460ff61010090910416151581151514156111985760405162461bcd60e51b8152600401610abf90612ea0565b601380549115156101000261ff0019909216919091179055565b600e5481565b600080600283815481106111dc57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03169050806109f85760405162461bcd60e51b8152600401610abf90612dab565b611218611db9565b6001600160a01b031661122961148f565b6001600160a01b03161461124f5760405162461bcd60e51b8152600401610abf90612ec9565b600e55565b60006001600160a01b03821661127c5760405162461bcd60e51b8152600401610abf90612d61565b600254600090815b818110156112e857600281815481106112ad57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03868116911614156112d8576112d583613190565b92505b6112e181613190565b9050611284565b50909392505050565b600d5481565b6112ff611db9565b6001600160a01b031661131061148f565b6001600160a01b0316146113365760405162461bcd60e51b8152600401610abf90612ec9565b6113406000611f38565b565b600a5481565b611350611db9565b6001600160a01b031661136161148f565b6001600160a01b0316146113875760405162461bcd60e51b8152600401610abf90612ec9565b600f55565b601354610100900460ff1681565b600f5481565b60135460ff1681565b60606113b482611254565b6000106113d35760405162461bcd60e51b8152600401610abf90612f72565b60006113de83611254565b905060008167ffffffffffffffff81111561140957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611432578160200160208202803683370190505b50905060005b828110156114875761144a8582610b93565b82828151811061146a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061147f81613190565b915050611438565b509392505050565b6005546001600160a01b031690565b6114a6611db9565b6001600160a01b03166114b761148f565b6001600160a01b0316146114dd5760405162461bcd60e51b8152600401610abf90612ec9565b8060075410156114ff5760405162461bcd60e51b8152600401610abf90612ea0565b600a55565b6000336040516020016115179190612910565b6040516020818303038152906040528051906020012090506000611539610b82565b601354909150610100900460ff166115635760405162461bcd60e51b8152600401610abf90612c93565b6007548560105461157491906130c7565b11156115925760405162461bcd60e51b8152600401610abf90612df4565b6115d3848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150859050611e63565b6115ef5760405162461bcd60e51b8152600401610abf90612cc3565b600a54336000908152601760205260409020600201546116109087906130c7565b111561162e5760405162461bcd60e51b8152600401610abf9061306b565b600c548511156116505760405162461bcd60e51b8152600401610abf90612bc1565b84600e5461165e91906130f3565b34101561167d5760405162461bcd60e51b8152600401610abf90612f47565b60005b858110156116be5761169633610fa983856130c7565b601080549060006116a683613190565b919050555080806116b690613190565b915050611680565b50336000908152601760205260409020600201546116dd9086906130c7565b336000908152601760205260409020600201555050505050565b606060018054610a1590613155565b60075481565b611714611db9565b6001600160a01b0316826001600160a01b031614156117455760405162461bcd60e51b8152600401610abf90612b8a565b8060046000611752611db9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611796611db9565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ce9190612a0f565b60405180910390a35050565b60155481565b60176020526000908152604090208054600182015460028301546003909301549192909184565b6000611811610b82565b60135490915062010000900460ff1661183c5760405162461bcd60e51b8152600401610abf90612c1b565b6007548260105461184d91906130c7565b111561186b5760405162461bcd60e51b8152600401610abf90612df4565b600b543360009081526017602052604090206003015461188c9084906130c7565b11156118aa5760405162461bcd60e51b8152600401610abf9061306b565b600d548211156118cc5760405162461bcd60e51b8152600401610abf90612bc1565b81600f546118da91906130f3565b3410156118f95760405162461bcd60e51b8152600401610abf90612f47565b60005b8281101561193a5761191233610fa983856130c7565b6010805490600061192283613190565b9190505550808061193290613190565b9150506118fc565b50336000908152601760205260409020600301546119599083906130c7565b336000908152601760205260409020600301555050565b600b5481565b61198284848484611f8a565b50505050565b606061199382611d61565b6119af5760405162461bcd60e51b8152600401610abf90612a36565b60006119b9611fc3565b905060008151116119d95760405180602001604052806000815250611a04565b806119e384611fd2565b6040516020016119f492919061293b565b6040516020818303038152906040525b9392505050565b60165481565b600c5481565b611a1f611db9565b6001600160a01b0316611a3061148f565b6001600160a01b031614611a565760405162461bcd60e51b8152600401610abf90612ec9565b601555565b611a63611db9565b6001600160a01b0316611a7461148f565b6001600160a01b031614611a9a5760405162461bcd60e51b8152600401610abf90612ec9565b60135460ff620100009091041615158115151415611aca5760405162461bcd60e51b8152600401610abf90612ea0565b60138054911515620100000262ff000019909216919091179055565b611aee611db9565b6001600160a01b0316611aff61148f565b6001600160a01b031614611b255760405162461bcd60e51b8152600401610abf90612ec9565b6000611b2f610b82565b905060095482601154611b4291906130c7565b1115611b605760405162461bcd60e51b8152600401610abf90612bf8565b60005b8281101561198257611b7984610fa983856130c7565b60118054906000611b8983613190565b91905055508080611b9990613190565b915050611b63565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b611bd7611db9565b6001600160a01b0316611be861148f565b6001600160a01b031614611c0e5760405162461bcd60e51b8152600401610abf90612ec9565b806007541015611c305760405162461bcd60e51b8152600401610abf90612ea0565b600b55565b611c3d611db9565b6001600160a01b0316611c4e61148f565b6001600160a01b031614611c745760405162461bcd60e51b8152600401610abf90612ec9565b6001600160a01b038116611c9a5760405162461bcd60e51b8152600401610abf90612ac9565b611ca381611f38565b50565b611cae611db9565b6001600160a01b0316611cbf61148f565b6001600160a01b031614611ce55760405162461bcd60e51b8152600401610abf90612ec9565b601054811015611d075760405162461bcd60e51b8152600401610abf90612ea0565b600755565b60125481565b60135462010000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480611d5257506001600160e01b03198216635b5e139f60e01b145b806109f857506109f8826120f5565b600254600090821080156109f8575060006001600160a01b031660028381548110611d9c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611df2826111b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e3c611e36611db9565b8261210e565b611e585760405162461bcd60e51b8152600401610abf9061301a565b610b7783838361218b565b600081815b8551811015611f13576000868281518110611e9357634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611ed4578281604051602001611eb792919061292d565b604051602081830303815290604052805190602001209250611f00565b8083604051602001611ee792919061292d565b6040516020818303038152906040528051906020012092505b5080611f0b81613190565b915050611e68565b509092149392505050565b610d6e82826040518060200160405280600081525061227c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f9b611f95611db9565b8361210e565b611fb75760405162461bcd60e51b8152600401610abf9061301a565b611982848484846122af565b606060148054610a1590613155565b606081611ff757506040805180820190915260018152600360fc1b60208201526109fb565b8160005b8115612021578061200b81613190565b915061201a9050600a836130df565b9150611ffb565b60008167ffffffffffffffff81111561204a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612074576020820181803683370190505b5090505b84156120ed57612089600183613112565b9150612096600a866131ab565b6120a19060306130c7565b60f81b8183815181106120c457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120e6600a866130df565b9450612078565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600061211982611d61565b6121355760405162461bcd60e51b8152600401610abf90612c47565b6000612140836111b8565b9050806001600160a01b0316846001600160a01b0316148061217b5750836001600160a01b031661217084610a98565b6001600160a01b0316145b806120ed57506120ed8185611ba1565b826001600160a01b031661219e826111b8565b6001600160a01b0316146121c45760405162461bcd60e51b8152600401610abf90612efe565b6001600160a01b0382166121ea5760405162461bcd60e51b8152600401610abf90612b46565b6121f5838383610b77565b612200600082611dbd565b816002828154811061222257634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61228683836122e2565b61229360008484846123b6565b610b775760405162461bcd60e51b8152600401610abf90612a77565b6122ba84848461218b565b6122c6848484846123b6565b6119825760405162461bcd60e51b8152600401610abf90612a77565b6001600160a01b0382166123085760405162461bcd60e51b8152600401610abf90612e1f565b61231181611d61565b1561232e5760405162461bcd60e51b8152600401610abf90612b0f565b61233a60008383610b77565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006123ca846001600160a01b03166124d1565b156124c657836001600160a01b031663150b7a026123e6611db9565b8786866040518563ffffffff1660e01b8152600401612408949392919061298e565b602060405180830381600087803b15801561242257600080fd5b505af1925050508015612452575060408051601f3d908101601f1916820190925261244f918101906127e7565b60015b6124ac573d808015612480576040519150601f19603f3d011682016040523d82523d6000602084013e612485565b606091505b5080516124a45760405162461bcd60e51b8152600401610abf90612a77565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120ed565b506001949350505050565b3b151590565b8280546124e390613155565b90600052602060002090601f016020900481019282612505576000855561254b565b82601f1061251e57805160ff191683800117855561254b565b8280016001018555821561254b579182015b8281111561254b578251825591602001919060010190612530565b506110d49291505b808211156110d45760008155600101612553565b600067ffffffffffffffff80841115612582576125826131eb565b604051601f8501601f1916810160200182811182821017156125a6576125a66131eb565b6040528481529150818385018610156125be57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146109fb57600080fd5b60008083601f8401126125ff578081fd5b50813567ffffffffffffffff811115612616578182fd5b602083019150836020808302850101111561263057600080fd5b9250929050565b803580151581146109fb57600080fd5b600060208284031215612658578081fd5b611a04826125d7565b60008060408385031215612673578081fd5b61267c836125d7565b915061268a602084016125d7565b90509250929050565b6000806000606084860312156126a7578081fd5b6126b0846125d7565b92506126be602085016125d7565b9150604084013590509250925092565b600080600080608085870312156126e3578081fd5b6126ec856125d7565b93506126fa602086016125d7565b925060408501359150606085013567ffffffffffffffff81111561271c578182fd5b8501601f8101871361272c578182fd5b61273b87823560208401612567565b91505092959194509250565b60008060408385031215612759578182fd5b612762836125d7565b915061268a60208401612637565b60008060408385031215612782578182fd5b61278b836125d7565b946020939093013593505050565b6000602082840312156127aa578081fd5b611a0482612637565b6000602082840312156127c4578081fd5b5035919050565b6000602082840312156127dc578081fd5b8135611a0481613201565b6000602082840312156127f8578081fd5b8151611a0481613201565b600060208284031215612814578081fd5b813567ffffffffffffffff81111561282a578182fd5b8201601f8101841361283a578182fd5b6120ed84823560208401612567565b60008060006040848603121561285d578283fd5b83359250602084013567ffffffffffffffff81111561287a578283fd5b612886868287016125ee565b9497909650939450505050565b600080600080606085870312156128a8578182fd5b8435935060208501359250604085013567ffffffffffffffff8111156128cc578283fd5b6128d8878288016125ee565b95989497509550505050565b600081518084526128fc816020860160208601613129565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b6000835161294d818460208801613129565b835190830190612961818360208801613129565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129c1908301846128e4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a03578351835292840192918401916001016129e7565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611a0460208301846128e4565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d6974207065722074786e0000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b93845260208401929092526040830152606082015260800190565b600082198211156130da576130da6131bf565b500190565b6000826130ee576130ee6131d5565b500490565b600081600019048311821515161561310d5761310d6131bf565b500290565b600082821015613124576131246131bf565b500390565b60005b8381101561314457818101518382015260200161312c565b838111156119825750506000910152565b60028104600182168061316957607f821691505b6020821081141561318a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131a4576131a46131bf565b5060010190565b6000826131ba576131ba6131d5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ca357600080fdfea2646970667358221220a9e2b7ce0ac064df4309a62db7bd727f6bcaa155da2d1b7a396a2415bf0451c164736f6c63430008000033

Deployed Bytecode

0x6080604052600436106103765760003560e01c80637e95eac4116101d1578063a952686211610102578063d897833e116100a0578063f2fde38b1161006f578063f2fde38b14610969578063f439733514610989578063f634597e146109a9578063fe4ca847146109be57610376565b8063d897833e146108e9578063dce051cc14610909578063e985e9c514610929578063f176baaa1461094957610376565b8063c87b56dd116100dc578063c87b56dd1461087f578063caa5330d1461089f578063ccfb63a4146108b4578063ce9d7999146108c957610376565b8063a952686214610837578063ae5cc1721461084a578063b88d4fde1461085f57610376565b8063941e79fc1161016f578063995b8ef611610149578063995b8ef6146107bd578063a22cb465146107d2578063a2e975d0146107f2578063a87430ba1461080757610376565b8063941e79fc14610775578063945242c61461079557806395d89b41146107a857610376565b80637f205a74116101ab5780637f205a741461070957806380a6eaa21461071e5780638462151c146107335780638da5cb5b1461076057610376565b80637e95eac4146106bf5780637ec0912e146106d45780637ec18cf6146106f457610376565b8063418b21f1116102ab5780635e326b921161024957806365fccb521161022357806365fccb521461065557806370a0823114610675578063711cc2ae14610695578063715018a6146106aa57610376565b80635e326b921461060057806362dc6e21146106205780636352211e1461063557610376565b8063497865b311610285578063497865b3146105965780634d7cea16146105ab5780634f6ccce7146105c057806355f804b3146105e057610376565b8063418b21f114610543578063425995721461055657806342842e0e1461057657610376565b806323b872dd116103185780633440404f116102f25780633440404f146104ce5780633ccfd60b146104ee5780633e2e2a80146105035780634104c6a31461052357610376565b806323b872dd1461046e5780632f745c591461048e578063305004d9146104ae57610376565b8063081812fc11610354578063081812fc146103f5578063095ea7b3146104225780630990e5341461044457806318160ddd1461045957610376565b806301ffc9a71461037b57806305af8bf3146103b157806306fdde03146103d3575b600080fd5b34801561038757600080fd5b5061039b6103963660046127cb565b6109d3565b6040516103a89190612a0f565b60405180910390f35b3480156103bd57600080fd5b506103c6610a00565b6040516103a89190612a1a565b3480156103df57600080fd5b506103e8610a06565b6040516103a89190612a23565b34801561040157600080fd5b506104156104103660046127b3565b610a98565b6040516103a8919061297a565b34801561042e57600080fd5b5061044261043d366004612770565b610ae4565b005b34801561045057600080fd5b506103c6610b7c565b34801561046557600080fd5b506103c6610b82565b34801561047a57600080fd5b50610442610489366004612693565b610b88565b34801561049a57600080fd5b506103c66104a9366004612770565b610b93565b3480156104ba57600080fd5b506104426104c93660046127b3565b610c56565b3480156104da57600080fd5b506104426104e93660046127b3565b610cbc565b3480156104fa57600080fd5b50610442610d00565b34801561050f57600080fd5b5061044261051e3660046127b3565b610d72565b34801561052f57600080fd5b5061044261053e3660046127b3565b610dd8565b610442610551366004612893565b610e3e565b34801561056257600080fd5b50610442610571366004612799565b61100a565b34801561058257600080fd5b50610442610591366004612693565b611085565b3480156105a257600080fd5b506103c66110a0565b3480156105b757600080fd5b506103c66110a6565b3480156105cc57600080fd5b506103c66105db3660046127b3565b6110ac565b3480156105ec57600080fd5b506104426105fb366004612803565b6110d8565b34801561060c57600080fd5b5061044261061b366004612799565b61112a565b34801561062c57600080fd5b506103c66111b2565b34801561064157600080fd5b506104156106503660046127b3565b6111b8565b34801561066157600080fd5b506104426106703660046127b3565b611210565b34801561068157600080fd5b506103c6610690366004612647565b611254565b3480156106a157600080fd5b506103c66112f1565b3480156106b657600080fd5b506104426112f7565b3480156106cb57600080fd5b506103c6611342565b3480156106e057600080fd5b506104426106ef3660046127b3565b611348565b34801561070057600080fd5b5061039b61138c565b34801561071557600080fd5b506103c661139a565b34801561072a57600080fd5b5061039b6113a0565b34801561073f57600080fd5b5061075361074e366004612647565b6113a9565b6040516103a891906129cb565b34801561076c57600080fd5b5061041561148f565b34801561078157600080fd5b506104426107903660046127b3565b61149e565b6104426107a3366004612849565b611504565b3480156107b457600080fd5b506103e86116f7565b3480156107c957600080fd5b506103c6611706565b3480156107de57600080fd5b506104426107ed366004612747565b61170c565b3480156107fe57600080fd5b506103c66117da565b34801561081357600080fd5b50610827610822366004612647565b6117e0565b6040516103a894939291906130ac565b6104426108453660046127b3565b611807565b34801561085657600080fd5b506103c6611970565b34801561086b57600080fd5b5061044261087a3660046126ce565b611976565b34801561088b57600080fd5b506103e861089a3660046127b3565b611988565b3480156108ab57600080fd5b506103c6611a0b565b3480156108c057600080fd5b506103c6611a11565b3480156108d557600080fd5b506104426108e43660046127b3565b611a17565b3480156108f557600080fd5b50610442610904366004612799565b611a5b565b34801561091557600080fd5b50610442610924366004612770565b611ae6565b34801561093557600080fd5b5061039b610944366004612661565b611ba1565b34801561095557600080fd5b506104426109643660046127b3565b611bcf565b34801561097557600080fd5b50610442610984366004612647565b611c35565b34801561099557600080fd5b506104426109a43660046127b3565b611ca6565b3480156109b557600080fd5b506103c6611d0c565b3480156109ca57600080fd5b5061039b611d12565b60006001600160e01b0319821663780e9d6360e01b14806109f857506109f882611d21565b90505b919050565b60085481565b606060008054610a1590613155565b80601f0160208091040260200160405190810160405280929190818152602001828054610a4190613155565b8015610a8e5780601f10610a6357610100808354040283529160200191610a8e565b820191906000526020600020905b815481529060010190602001808311610a7157829003601f168201915b5050505050905090565b6000610aa382611d61565b610ac85760405162461bcd60e51b8152600401610abf90612e54565b60405180910390fd5b506000908152600360205260409020546001600160a01b031690565b6000610aef826111b8565b9050806001600160a01b0316836001600160a01b03161415610b235760405162461bcd60e51b8152600401610abf90612fd9565b806001600160a01b0316610b35611db9565b6001600160a01b03161480610b515750610b5181610944611db9565b610b6d5760405162461bcd60e51b8152600401610abf90612d04565b610b778383611dbd565b505050565b60105481565b60025490565b610b77838383611e2b565b6000610b9e83611254565b8210610bbc5760405162461bcd60e51b8152600401610abf90612f72565b6000805b600254811015610c375760028181548110610beb57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0386811691161415610c275783821415610c1b579150610c509050565b610c2482613190565b91505b610c3081613190565b9050610bc0565b5060405162461bcd60e51b8152600401610abf90612f72565b92915050565b610c5e611db9565b6001600160a01b0316610c6f61148f565b6001600160a01b031614610c955760405162461bcd60e51b8152600401610abf90612ec9565b806007541015610cb75760405162461bcd60e51b8152600401610abf90612ea0565b600c55565b610cc4611db9565b6001600160a01b0316610cd561148f565b6001600160a01b031614610cfb5760405162461bcd60e51b8152600401610abf90612ec9565b601655565b610d08611db9565b6001600160a01b0316610d1961148f565b6001600160a01b031614610d3f5760405162461bcd60e51b8152600401610abf90612ec9565b6040514790339082156108fc029083906000818181858888f19350505050158015610d6e573d6000803e3d6000fd5b5050565b610d7a611db9565b6001600160a01b0316610d8b61148f565b6001600160a01b031614610db15760405162461bcd60e51b8152600401610abf90612ec9565b806007541015610dd35760405162461bcd60e51b8152600401610abf90612ea0565b600d55565b610de0611db9565b6001600160a01b0316610df161148f565b6001600160a01b031614610e175760405162461bcd60e51b8152600401610abf90612ec9565b601254811015610e395760405162461bcd60e51b8152600401610abf90612ea0565b600855565b600033604051602001610e519190612910565b6040516020818303038152906040528051906020012090506000610e73610b82565b60135490915060ff16610e985760405162461bcd60e51b8152600401610abf90612c1b565b60085486601254610ea991906130c7565b1115610ec75760405162461bcd60e51b8152600401610abf90612df4565b610f08848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506015549150859050611e63565b610f245760405162461bcd60e51b8152600401610abf90612cc3565b33600090815260176020526040902060010154610f51573360009081526017602052604090206001018590555b33600090815260176020526040902060018101549054610f729088906130c7565b1115610f905760405162461bcd60e51b8152600401610abf9061306b565b60005b86811015610fd657610fae33610fa983856130c7565b611f1e565b60128054906000610fbe83613190565b91905055508080610fce90613190565b915050610f93565b5033600090815260176020526040902054610ff29087906130c7565b33600090815260176020526040902055505050505050565b611012611db9565b6001600160a01b031661102361148f565b6001600160a01b0316146110495760405162461bcd60e51b8152600401610abf90612ec9565b60135460ff16151581151514156110725760405162461bcd60e51b8152600401610abf90612ea0565b6013805460ff1916911515919091179055565b610b7783838360405180602001604052806000815250611976565b60095481565b60115481565b60006110b6610b82565b82106110d45760405162461bcd60e51b8152600401610abf90612fa2565b5090565b6110e0611db9565b6001600160a01b03166110f161148f565b6001600160a01b0316146111175760405162461bcd60e51b8152600401610abf90612ec9565b8051610d6e9060149060208401906124d7565b611132611db9565b6001600160a01b031661114361148f565b6001600160a01b0316146111695760405162461bcd60e51b8152600401610abf90612ec9565b60135460ff61010090910416151581151514156111985760405162461bcd60e51b8152600401610abf90612ea0565b601380549115156101000261ff0019909216919091179055565b600e5481565b600080600283815481106111dc57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03169050806109f85760405162461bcd60e51b8152600401610abf90612dab565b611218611db9565b6001600160a01b031661122961148f565b6001600160a01b03161461124f5760405162461bcd60e51b8152600401610abf90612ec9565b600e55565b60006001600160a01b03821661127c5760405162461bcd60e51b8152600401610abf90612d61565b600254600090815b818110156112e857600281815481106112ad57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b03868116911614156112d8576112d583613190565b92505b6112e181613190565b9050611284565b50909392505050565b600d5481565b6112ff611db9565b6001600160a01b031661131061148f565b6001600160a01b0316146113365760405162461bcd60e51b8152600401610abf90612ec9565b6113406000611f38565b565b600a5481565b611350611db9565b6001600160a01b031661136161148f565b6001600160a01b0316146113875760405162461bcd60e51b8152600401610abf90612ec9565b600f55565b601354610100900460ff1681565b600f5481565b60135460ff1681565b60606113b482611254565b6000106113d35760405162461bcd60e51b8152600401610abf90612f72565b60006113de83611254565b905060008167ffffffffffffffff81111561140957634e487b7160e01b600052604160045260246000fd5b604051908082528060200260200182016040528015611432578160200160208202803683370190505b50905060005b828110156114875761144a8582610b93565b82828151811061146a57634e487b7160e01b600052603260045260246000fd5b60209081029190910101528061147f81613190565b915050611438565b509392505050565b6005546001600160a01b031690565b6114a6611db9565b6001600160a01b03166114b761148f565b6001600160a01b0316146114dd5760405162461bcd60e51b8152600401610abf90612ec9565b8060075410156114ff5760405162461bcd60e51b8152600401610abf90612ea0565b600a55565b6000336040516020016115179190612910565b6040516020818303038152906040528051906020012090506000611539610b82565b601354909150610100900460ff166115635760405162461bcd60e51b8152600401610abf90612c93565b6007548560105461157491906130c7565b11156115925760405162461bcd60e51b8152600401610abf90612df4565b6115d3848480806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250506016549150859050611e63565b6115ef5760405162461bcd60e51b8152600401610abf90612cc3565b600a54336000908152601760205260409020600201546116109087906130c7565b111561162e5760405162461bcd60e51b8152600401610abf9061306b565b600c548511156116505760405162461bcd60e51b8152600401610abf90612bc1565b84600e5461165e91906130f3565b34101561167d5760405162461bcd60e51b8152600401610abf90612f47565b60005b858110156116be5761169633610fa983856130c7565b601080549060006116a683613190565b919050555080806116b690613190565b915050611680565b50336000908152601760205260409020600201546116dd9086906130c7565b336000908152601760205260409020600201555050505050565b606060018054610a1590613155565b60075481565b611714611db9565b6001600160a01b0316826001600160a01b031614156117455760405162461bcd60e51b8152600401610abf90612b8a565b8060046000611752611db9565b6001600160a01b03908116825260208083019390935260409182016000908120918716808252919093529120805460ff191692151592909217909155611796611db9565b6001600160a01b03167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516117ce9190612a0f565b60405180910390a35050565b60155481565b60176020526000908152604090208054600182015460028301546003909301549192909184565b6000611811610b82565b60135490915062010000900460ff1661183c5760405162461bcd60e51b8152600401610abf90612c1b565b6007548260105461184d91906130c7565b111561186b5760405162461bcd60e51b8152600401610abf90612df4565b600b543360009081526017602052604090206003015461188c9084906130c7565b11156118aa5760405162461bcd60e51b8152600401610abf9061306b565b600d548211156118cc5760405162461bcd60e51b8152600401610abf90612bc1565b81600f546118da91906130f3565b3410156118f95760405162461bcd60e51b8152600401610abf90612f47565b60005b8281101561193a5761191233610fa983856130c7565b6010805490600061192283613190565b9190505550808061193290613190565b9150506118fc565b50336000908152601760205260409020600301546119599083906130c7565b336000908152601760205260409020600301555050565b600b5481565b61198284848484611f8a565b50505050565b606061199382611d61565b6119af5760405162461bcd60e51b8152600401610abf90612a36565b60006119b9611fc3565b905060008151116119d95760405180602001604052806000815250611a04565b806119e384611fd2565b6040516020016119f492919061293b565b6040516020818303038152906040525b9392505050565b60165481565b600c5481565b611a1f611db9565b6001600160a01b0316611a3061148f565b6001600160a01b031614611a565760405162461bcd60e51b8152600401610abf90612ec9565b601555565b611a63611db9565b6001600160a01b0316611a7461148f565b6001600160a01b031614611a9a5760405162461bcd60e51b8152600401610abf90612ec9565b60135460ff620100009091041615158115151415611aca5760405162461bcd60e51b8152600401610abf90612ea0565b60138054911515620100000262ff000019909216919091179055565b611aee611db9565b6001600160a01b0316611aff61148f565b6001600160a01b031614611b255760405162461bcd60e51b8152600401610abf90612ec9565b6000611b2f610b82565b905060095482601154611b4291906130c7565b1115611b605760405162461bcd60e51b8152600401610abf90612bf8565b60005b8281101561198257611b7984610fa983856130c7565b60118054906000611b8983613190565b91905055508080611b9990613190565b915050611b63565b6001600160a01b03918216600090815260046020908152604080832093909416825291909152205460ff1690565b611bd7611db9565b6001600160a01b0316611be861148f565b6001600160a01b031614611c0e5760405162461bcd60e51b8152600401610abf90612ec9565b806007541015611c305760405162461bcd60e51b8152600401610abf90612ea0565b600b55565b611c3d611db9565b6001600160a01b0316611c4e61148f565b6001600160a01b031614611c745760405162461bcd60e51b8152600401610abf90612ec9565b6001600160a01b038116611c9a5760405162461bcd60e51b8152600401610abf90612ac9565b611ca381611f38565b50565b611cae611db9565b6001600160a01b0316611cbf61148f565b6001600160a01b031614611ce55760405162461bcd60e51b8152600401610abf90612ec9565b601054811015611d075760405162461bcd60e51b8152600401610abf90612ea0565b600755565b60125481565b60135462010000900460ff1681565b60006001600160e01b031982166380ac58cd60e01b1480611d5257506001600160e01b03198216635b5e139f60e01b145b806109f857506109f8826120f5565b600254600090821080156109f8575060006001600160a01b031660028381548110611d9c57634e487b7160e01b600052603260045260246000fd5b6000918252602090912001546001600160a01b0316141592915050565b3390565b600081815260036020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611df2826111b8565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b611e3c611e36611db9565b8261210e565b611e585760405162461bcd60e51b8152600401610abf9061301a565b610b7783838361218b565b600081815b8551811015611f13576000868281518110611e9357634e487b7160e01b600052603260045260246000fd5b60200260200101519050808311611ed4578281604051602001611eb792919061292d565b604051602081830303815290604052805190602001209250611f00565b8083604051602001611ee792919061292d565b6040516020818303038152906040528051906020012092505b5080611f0b81613190565b915050611e68565b509092149392505050565b610d6e82826040518060200160405280600081525061227c565b600580546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b611f9b611f95611db9565b8361210e565b611fb75760405162461bcd60e51b8152600401610abf9061301a565b611982848484846122af565b606060148054610a1590613155565b606081611ff757506040805180820190915260018152600360fc1b60208201526109fb565b8160005b8115612021578061200b81613190565b915061201a9050600a836130df565b9150611ffb565b60008167ffffffffffffffff81111561204a57634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612074576020820181803683370190505b5090505b84156120ed57612089600183613112565b9150612096600a866131ab565b6120a19060306130c7565b60f81b8183815181106120c457634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a9053506120e6600a866130df565b9450612078565b949350505050565b6001600160e01b031981166301ffc9a760e01b14919050565b600061211982611d61565b6121355760405162461bcd60e51b8152600401610abf90612c47565b6000612140836111b8565b9050806001600160a01b0316846001600160a01b0316148061217b5750836001600160a01b031661217084610a98565b6001600160a01b0316145b806120ed57506120ed8185611ba1565b826001600160a01b031661219e826111b8565b6001600160a01b0316146121c45760405162461bcd60e51b8152600401610abf90612efe565b6001600160a01b0382166121ea5760405162461bcd60e51b8152600401610abf90612b46565b6121f5838383610b77565b612200600082611dbd565b816002828154811061222257634e487b7160e01b600052603260045260246000fd5b6000918252602082200180546001600160a01b0319166001600160a01b03938416179055604051839285811692908716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9190a4505050565b61228683836122e2565b61229360008484846123b6565b610b775760405162461bcd60e51b8152600401610abf90612a77565b6122ba84848461218b565b6122c6848484846123b6565b6119825760405162461bcd60e51b8152600401610abf90612a77565b6001600160a01b0382166123085760405162461bcd60e51b8152600401610abf90612e1f565b61231181611d61565b1561232e5760405162461bcd60e51b8152600401610abf90612b0f565b61233a60008383610b77565b6002805460018101825560009182527f405787fa12a823e0f2b7631cc41b3ba8828b3321ca811111fa75cd3aa3bb5ace0180546001600160a01b0319166001600160a01b0385169081179091556040518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006123ca846001600160a01b03166124d1565b156124c657836001600160a01b031663150b7a026123e6611db9565b8786866040518563ffffffff1660e01b8152600401612408949392919061298e565b602060405180830381600087803b15801561242257600080fd5b505af1925050508015612452575060408051601f3d908101601f1916820190925261244f918101906127e7565b60015b6124ac573d808015612480576040519150601f19603f3d011682016040523d82523d6000602084013e612485565b606091505b5080516124a45760405162461bcd60e51b8152600401610abf90612a77565b805181602001fd5b6001600160e01b031916630a85bd0160e11b1490506120ed565b506001949350505050565b3b151590565b8280546124e390613155565b90600052602060002090601f016020900481019282612505576000855561254b565b82601f1061251e57805160ff191683800117855561254b565b8280016001018555821561254b579182015b8281111561254b578251825591602001919060010190612530565b506110d49291505b808211156110d45760008155600101612553565b600067ffffffffffffffff80841115612582576125826131eb565b604051601f8501601f1916810160200182811182821017156125a6576125a66131eb565b6040528481529150818385018610156125be57600080fd5b8484602083013760006020868301015250509392505050565b80356001600160a01b03811681146109fb57600080fd5b60008083601f8401126125ff578081fd5b50813567ffffffffffffffff811115612616578182fd5b602083019150836020808302850101111561263057600080fd5b9250929050565b803580151581146109fb57600080fd5b600060208284031215612658578081fd5b611a04826125d7565b60008060408385031215612673578081fd5b61267c836125d7565b915061268a602084016125d7565b90509250929050565b6000806000606084860312156126a7578081fd5b6126b0846125d7565b92506126be602085016125d7565b9150604084013590509250925092565b600080600080608085870312156126e3578081fd5b6126ec856125d7565b93506126fa602086016125d7565b925060408501359150606085013567ffffffffffffffff81111561271c578182fd5b8501601f8101871361272c578182fd5b61273b87823560208401612567565b91505092959194509250565b60008060408385031215612759578182fd5b612762836125d7565b915061268a60208401612637565b60008060408385031215612782578182fd5b61278b836125d7565b946020939093013593505050565b6000602082840312156127aa578081fd5b611a0482612637565b6000602082840312156127c4578081fd5b5035919050565b6000602082840312156127dc578081fd5b8135611a0481613201565b6000602082840312156127f8578081fd5b8151611a0481613201565b600060208284031215612814578081fd5b813567ffffffffffffffff81111561282a578182fd5b8201601f8101841361283a578182fd5b6120ed84823560208401612567565b60008060006040848603121561285d578283fd5b83359250602084013567ffffffffffffffff81111561287a578283fd5b612886868287016125ee565b9497909650939450505050565b600080600080606085870312156128a8578182fd5b8435935060208501359250604085013567ffffffffffffffff8111156128cc578283fd5b6128d8878288016125ee565b95989497509550505050565b600081518084526128fc816020860160208601613129565b601f01601f19169290920160200192915050565b60609190911b6bffffffffffffffffffffffff1916815260140190565b918252602082015260400190565b6000835161294d818460208801613129565b835190830190612961818360208801613129565b64173539b7b760d91b9101908152600501949350505050565b6001600160a01b0391909116815260200190565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906129c1908301846128e4565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612a03578351835292840192918401916001016129e7565b50909695505050505050565b901515815260200190565b90815260200190565b600060208252611a0460208301846128e4565b60208082526021908201527f4552433732314d657461646174613a204e6f6e6578697374656e7420746f6b656040820152603760f91b606082015260800190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252601c908201527f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000604082015260600190565b60208082526024908201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646040820152637265737360e01b606082015260800190565b60208082526019908201527f4552433732313a20617070726f766520746f2063616c6c657200000000000000604082015260600190565b6020808252601e908201527f45786365656473206d6178206d696e74206c696d6974207065722074786e0000604082015260600190565b60208082526009908201526813585e081b1a5b5a5d60ba1b604082015260600190565b60208082526012908201527153616c65206973206e6f7420656e61626c6560701b604082015260600190565b6020808252602c908201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252601690820152755072652d73616c65206973206e6f7420656e61626c6560501b604082015260600190565b60208082526021908201527f4d65726b6c654469737472696275746f723a20496e76616c69642070726f6f666040820152601760f91b606082015260800190565b60208082526038908201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760408201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000606082015260800190565b6020808252602a908201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604082015269726f206164647265737360b01b606082015260800190565b60208082526029908201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460408201526832b73a103a37b5b2b760b91b606082015260800190565b602080825260119082015270115e18d959591cc81b585e081b1a5b5a5d607a1b604082015260600190565b6020808252818101527f4552433732313a206d696e7420746f20746865207a65726f2061646472657373604082015260600190565b6020808252602c908201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860408201526b34b9ba32b73a103a37b5b2b760a11b606082015260800190565b6020808252600f908201526e496e636f72726563742076616c756560881b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526029908201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960408201526839903737ba1037bbb760b91b606082015260800190565b60208082526011908201527056616c75652062656c6f7720707269636560781b604082015260600190565b60208082526016908201527522a9219b9918a2b73ab69d1037bbb732b91034b7b7b160511b604082015260600190565b60208082526017908201527f455243373231456e756d3a20676c6f62616c20696f6f62000000000000000000604082015260600190565b60208082526021908201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656040820152603960f91b606082015260800190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b60208082526021908201527f45786365656473206d6178206d696e74206c696d6974207065722077616c6c656040820152601d60fa1b606082015260800190565b93845260208401929092526040830152606082015260800190565b600082198211156130da576130da6131bf565b500190565b6000826130ee576130ee6131d5565b500490565b600081600019048311821515161561310d5761310d6131bf565b500290565b600082821015613124576131246131bf565b500390565b60005b8381101561314457818101518382015260200161312c565b838111156119825750506000910152565b60028104600182168061316957607f821691505b6020821081141561318a57634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156131a4576131a46131bf565b5060010190565b6000826131ba576131ba6131d5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611ca357600080fdfea2646970667358221220a9e2b7ce0ac064df4309a62db7bd727f6bcaa155da2d1b7a396a2415bf0451c164736f6c63430008000033

Deployed Bytecode Sourcemap

30984:7299:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28308:225;;;;;;;;;;-1:-1:-1;28308:225:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;31123:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;22427:100::-;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;23061:221::-;;;;;;;;;;-1:-1:-1;23061:221:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;22643:412::-;;;;;;;;;;-1:-1:-1;22643:412:0;;;;;:::i;:::-;;:::i;:::-;;31480:26;;;;;;;;;;;;;:::i;29469:110::-;;;;;;;;;;;;;:::i;35616:145::-;;;;;;;;;;-1:-1:-1;35616:145:0;;;;;:::i;:::-;;:::i;28539:500::-;;;;;;;;;;-1:-1:-1;28539:500:0;;;;;:::i;:::-;;:::i;37625:203::-;;;;;;;;;;-1:-1:-1;37625:203:0;;;;;:::i;:::-;;:::i;38037:110::-;;;;;;;;;;-1:-1:-1;38037:110:0;;;;;:::i;:::-;;:::i;35955:143::-;;;;;;;;;;;;;:::i;37834:197::-;;;;;;;;;;-1:-1:-1;37834:197:0;;;;;:::i;:::-;;:::i;37290:160::-;;;;;;;;;;-1:-1:-1;37290:160:0;;;;;:::i;:::-;;:::i;32524:993::-;;;;;;:::i;:::-;;:::i;36434:193::-;;;;;;;;;;-1:-1:-1;36434:193:0;;;;;:::i;:::-;;:::i;24104:185::-;;;;;;;;;;-1:-1:-1;24104:185:0;;;;;:::i;:::-;;:::i;31155:33::-;;;;;;;;;;;;;:::i;31510:30::-;;;;;;;;;;;;;:::i;29585:194::-;;;;;;;;;;-1:-1:-1;29585:194:0;;;;;:::i;:::-;;:::i;36104:102::-;;;;;;;;;;-1:-1:-1;36104:102:0;;;;;:::i;:::-;;:::i;36633:153::-;;;;;;;;;;-1:-1:-1;36633:153:0;;;;;:::i;:::-;;:::i;31390:41::-;;;;;;;;;;;;;:::i;22182:239::-;;;;;;;;;;-1:-1:-1;22182:239:0;;;;;:::i;:::-;;:::i;36212:108::-;;;;;;;;;;-1:-1:-1;36212:108:0;;;;;:::i;:::-;;:::i;21754:422::-;;;;;;;;;;-1:-1:-1;21754:422:0;;;;;:::i;:::-;;:::i;31333:50::-;;;;;;;;;;;;;:::i;1363:94::-;;;;;;;;;;;;;:::i;31195:35::-;;;;;;;;;;;;;:::i;36326:102::-;;;;;;;;;;-1:-1:-1;36326:102:0;;;;;:::i;:::-;;:::i;31629:33::-;;;;;;;;;;;;;:::i;31435:38::-;;;;;;;;;;;;;:::i;31576:46::-;;;;;;;;;;;;;:::i;29045:418::-;;;;;;;;;;-1:-1:-1;29045:418:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;712:87::-;;;;;;;;;;;;;:::i;36942:171::-;;;;;;;;;;-1:-1:-1;36942:171:0;;;;;:::i;:::-;;:::i;33523:978::-;;;;;;:::i;:::-;;:::i;22533:104::-;;;;;;;;;;;;;:::i;31089:30::-;;;;;;;;;;;;;:::i;23288:295::-;;;;;;;;;;-1:-1:-1;23288:295:0;;;;;:::i;:::-;;:::i;31732:41::-;;;;;;;;;;;;;:::i;31955:38::-;;;;;;;;;;-1:-1:-1;31955:38:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;;;;:::i;34507:738::-;;;;;;:::i;:::-;;:::i;31234:35::-;;;;;;;;;;;;;:::i;35769:180::-;;;;;;;;;;-1:-1:-1;35769:180:0;;;;;:::i;:::-;;:::i;35254:353::-;;;;;;;;;;-1:-1:-1;35254:353:0;;;;;:::i;:::-;;:::i;31777:32::-;;;;;;;;;;;;;:::i;31276:53::-;;;;;;;;;;;;;:::i;38153:127::-;;;;;;;;;;-1:-1:-1;38153:127:0;;;;;:::i;:::-;;:::i;36792:144::-;;;;;;;;;;-1:-1:-1;36792:144:0;;;;;:::i;:::-;;:::i;32164:354::-;;;;;;;;;;-1:-1:-1;32164:354:0;;;;;:::i;:::-;;:::i;23589:164::-;;;;;;;;;;-1:-1:-1;23589:164:0;;;;;:::i;:::-;;:::i;37119:165::-;;;;;;;;;;-1:-1:-1;37119:165:0;;;;;:::i;:::-;;:::i;1612:192::-;;;;;;;;;;-1:-1:-1;1612:192:0;;;;;:::i;:::-;;:::i;37456:163::-;;;;;;;;;;-1:-1:-1;37456:163:0;;;;;:::i;:::-;;:::i;31544:25::-;;;;;;;;;;;;;:::i;31666:30::-;;;;;;;;;;;;;:::i;28308:225::-;28411:4;-1:-1:-1;;;;;;28435:50:0;;-1:-1:-1;;;28435:50:0;;:90;;;28489:36;28513:11;28489:23;:36::i;:::-;28428:97;;28308:225;;;;:::o;31123:28::-;;;;:::o;22427:100::-;22481:13;22514:5;22507:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22427:100;:::o;23061:221::-;23137:7;23165:16;23173:7;23165;:16::i;:::-;23157:73;;;;-1:-1:-1;;;23157:73:0;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;23250:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;23250:24:0;;23061:221::o;22643:412::-;22724:13;22740:24;22756:7;22740:15;:24::i;:::-;22724:40;;22789:5;-1:-1:-1;;;;;22783:11:0;:2;-1:-1:-1;;;;;22783:11:0;;;22775:57;;;;-1:-1:-1;;;22775:57:0;;;;;;;:::i;:::-;22883:5;-1:-1:-1;;;;;22867:21:0;:12;:10;:12::i;:::-;-1:-1:-1;;;;;22867:21:0;;:62;;;;22892:37;22909:5;22916:12;:10;:12::i;22892:37::-;22845:168;;;;-1:-1:-1;;;22845:168:0;;;;;;;:::i;:::-;23026:21;23035:2;23039:7;23026:8;:21::i;:::-;22643:412;;;:::o;31480:26::-;;;;:::o;29469:110::-;29557:7;:14;29469:110;:::o;35616:145::-;35711:42;35732:5;35739:3;35744:8;35711:20;:42::i;28539:500::-;28628:15;28672:24;28690:5;28672:17;:24::i;:::-;28664:5;:32;28656:67;;;;-1:-1:-1;;;28656:67:0;;;;;;;:::i;:::-;28734:10;28760:6;28755:226;28772:7;:14;28768:18;;28755:226;;;28821:7;28829:1;28821:10;;;;;;-1:-1:-1;;;28821:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;28812:19:0;;;28821:10;;28812:19;28808:162;;;28865:5;28856;:14;28852:102;;;28901:1;-1:-1:-1;28894:8:0;;-1:-1:-1;28894:8:0;28852:102;28947:7;;;:::i;:::-;;;28852:102;28788:3;;;:::i;:::-;;;28755:226;;;-1:-1:-1;28991:40:0;;-1:-1:-1;;;28991:40:0;;;;;;;:::i;28539:500::-;;;;;:::o;37625:203::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37736:8:::1;37724;;:20;;37716:48;;;;-1:-1:-1::0;;;37716:48:0::1;;;;;;;:::i;:::-;37775:34;:45:::0;37625:203::o;38037:110::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38115:17:::1;:27:::0;38037:110::o;35955:143::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36053:37:::1;::::0;36021:21:::1;::::0;36061:10:::1;::::0;36053:37;::::1;;;::::0;36021:21;;36003:15:::1;36053:37:::0;36003:15;36053:37;36021:21;36061:10;36053:37;::::1;;;;;;;;;;;;;::::0;::::1;;;;;;1003:1;35955:143::o:0;37834:197::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37942:8:::1;37930;;:20;;37922:48;;;;-1:-1:-1::0;;;37922:48:0::1;;;;;;;:::i;:::-;37981:31;:42:::0;37834:197::o;37290:160::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37382:10:::1;;37369:9;:23;;37361:51;;;;-1:-1:-1::0;;;37361:51:0::1;;;;;;;:::i;:::-;37423:7;:19:::0;37290:160::o;32524:993::-;32640:12;32682:10;32665:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;32655:39;;;;;;32640:54;;32699:19;32721:13;:11;:13::i;:::-;32752:26;;32699:35;;-1:-1:-1;32752:26:0;;32739:71;;;;-1:-1:-1;;;32739:71:0;;;;;;;:::i;:::-;32857:7;;32847:6;32834:10;;:19;;;;:::i;:::-;:30;;32821:74;;;;-1:-1:-1;;;32821:74:0;;;;;;;:::i;:::-;32913:65;32932:11;;32913:65;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;32945:26:0;;;-1:-1:-1;32973:4:0;;-1:-1:-1;32913:18:0;:65::i;:::-;32900:125;;;;-1:-1:-1;;;32900:125:0;;;;;;;:::i;:::-;33039:10;33033:17;;;;:5;:17;;;;;:37;;;33030:111;;33095:10;33089:17;;;;:5;:17;;;;;:37;;:46;;;33030:111;33215:10;33209:17;;;;:5;:17;;;;;:37;;;;33158:38;;:47;;33199:6;;33158:47;:::i;:::-;:88;;33145:147;;;;-1:-1:-1;;;33145:147:0;;;;;;;:::i;:::-;33302:9;33297:120;33321:6;33317:1;:10;33297:120;;;33349:38;33359:10;33371:15;33385:1;33371:11;:15;:::i;:::-;33349:9;:38::i;:::-;33393:10;:12;;;:10;:12;;;:::i;:::-;;;;;;33329:3;;;;;:::i;:::-;;;;33297:120;;;-1:-1:-1;33468:10:0;33462:17;;;;:5;:17;;;;;:38;:47;;33503:6;;33462:47;:::i;:::-;33427:10;33421:17;;;;:5;:17;;;;;:88;-1:-1:-1;;;;;;32524:993:0:o;36434:193::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36518:26:::1;::::0;::::1;;:36;;::::0;::::1;;;;36510:64;;;;-1:-1:-1::0;;;36510:64:0::1;;;;;;;:::i;:::-;36584:26;:35:::0;;-1:-1:-1;;36584:35:0::1;::::0;::::1;;::::0;;;::::1;::::0;;36434:193::o;24104:185::-;24242:39;24259:4;24265:2;24269:7;24242:39;;;;;;;;;;;;:16;:39::i;31155:33::-;;;;:::o;31510:30::-;;;;:::o;29585:194::-;29660:7;29696:24;:22;:24::i;:::-;29688:5;:32;29680:68;;;;-1:-1:-1;;;29680:68:0;;;;;;;:::i;:::-;-1:-1:-1;29766:5:0;29585:194::o;36104:102::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36178:20;;::::1;::::0;:7:::1;::::0;:20:::1;::::0;::::1;::::0;::::1;:::i;36633:153::-:0;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36708:13:::1;::::0;::::1;;::::0;;::::1;;:23;;::::0;::::1;;;;36700:51;;;;-1:-1:-1::0;;;36700:51:0::1;;;;;;;:::i;:::-;36756:13;:22:::0;;;::::1;;;;-1:-1:-1::0;;36756:22:0;;::::1;::::0;;;::::1;::::0;;36633:153::o;31390:41::-;;;;:::o;22182:239::-;22254:7;22274:13;22290:7;22298;22290:16;;;;;;-1:-1:-1;;;22290:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22290:16:0;;-1:-1:-1;22325:19:0;22317:73;;;;-1:-1:-1;;;22317:73:0;;;;;;;:::i;36212:108::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36288:13:::1;:24:::0;36212:108::o;21754:422::-;21826:7;-1:-1:-1;;;;;21854:19:0;;21846:74;;;;-1:-1:-1;;;21846:74:0;;;;;;;:::i;:::-;21970:7;:14;21931:10;;;21995:127;22016:6;22012:1;:10;21995:127;;;22057:7;22065:1;22057:10;;;;;;-1:-1:-1;;;22057:10:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;22048:19:0;;;22057:10;;22048:19;22044:67;;;22088:7;;;:::i;:::-;;;22044:67;22024:3;;;:::i;:::-;;;21995:127;;;-1:-1:-1;22163:5:0;;21754:422;-1:-1:-1;;;21754:422:0:o;31333:50::-;;;;:::o;1363:94::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;1428:21:::1;1446:1;1428:9;:21::i;:::-;1363:94::o:0;31195:35::-;;;;:::o;36326:102::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36399:10:::1;:21:::0;36326:102::o;31629:33::-;;;;;;;;;:::o;31435:38::-;;;;:::o;31576:46::-;;;;;;:::o;29045:418::-;29104:16;29145:24;29163:5;29145:17;:24::i;:::-;29141:1;:28;29133:63;;;;-1:-1:-1;;;29133:63:0;;;;;;;:::i;:::-;29207:18;29228:16;29238:5;29228:9;:16::i;:::-;29207:37;;29255:25;29297:10;29283:25;;;;;;-1:-1:-1;;;29283:25:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;29283:25:0;;29255:53;;29324:9;29319:111;29343:10;29339:1;:14;29319:111;;;29389:29;29409:5;29416:1;29389:19;:29::i;:::-;29375:8;29384:1;29375:11;;;;;;-1:-1:-1;;;29375:11:0;;;;;;;;;;;;;;;;;;:43;29355:3;;;;:::i;:::-;;;;29319:111;;;-1:-1:-1;29447:8:0;29045:418;-1:-1:-1;;;29045:418:0:o;712:87::-;785:6;;-1:-1:-1;;;;;785:6:0;712:87;:::o;36942:171::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37039:8:::1;37027;;:20;;37019:48;;;;-1:-1:-1::0;;;37019:48:0::1;;;;;;;:::i;:::-;37078:16;:27:::0;36942:171::o;33523:978::-;33614:12;33656:10;33639:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;33629:39;;;;;;33614:54;;33673:19;33695:13;:11;:13::i;:::-;33726;;33673:35;;-1:-1:-1;33726:13:0;;;;;33713:62;;;;-1:-1:-1;;;33713:62:0;;;;;;;:::i;:::-;33823:8;;33813:6;33799:11;;:20;;;;:::i;:::-;:32;;33786:76;;;;-1:-1:-1;;;33786:76:0;;;;;;;:::i;:::-;33880:56;33899:11;;33880:56;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;33912:17:0;;;-1:-1:-1;33931:4:0;;-1:-1:-1;33880:18:0;:56::i;:::-;33867:116;;;;-1:-1:-1;;;33867:116:0;;;;;;;:::i;:::-;34043:16;;34007:10;34001:17;;;;:5;:17;;;;;:29;;;:38;;34033:6;;34001:38;:::i;:::-;:58;;33988:117;;;;-1:-1:-1;;;33988:117:0;;;;;;;:::i;:::-;34133:34;;34123:6;:44;;34110:100;;;;-1:-1:-1;;;34110:100:0;;;;;;;:::i;:::-;34257:6;34241:13;;:22;;;;:::i;:::-;34228:9;:35;;34215:78;;;;-1:-1:-1;;;34215:78:0;;;;;;;:::i;:::-;34303:9;34298:121;34322:6;34318:1;:10;34298:121;;;34350:38;34360:10;34372:15;34386:1;34372:11;:15;:::i;34350:38::-;34394:11;:13;;;:11;:13;;;:::i;:::-;;;;;;34330:3;;;;;:::i;:::-;;;;34298:121;;;-1:-1:-1;34461:10:0;34455:17;;;;:5;:17;;;;;:29;;;:38;;34487:6;;34455:38;:::i;:::-;34429:10;34423:17;;;;:5;:17;;;;;:29;;:70;-1:-1:-1;;;;;33523:978:0:o;22533:104::-;22589:13;22622:7;22615:14;;;;;:::i;31089:30::-;;;;:::o;23288:295::-;23403:12;:10;:12::i;:::-;-1:-1:-1;;;;;23391:24:0;:8;-1:-1:-1;;;;;23391:24:0;;;23383:62;;;;-1:-1:-1;;;23383:62:0;;;;;;;:::i;:::-;23503:8;23458:18;:32;23477:12;:10;:12::i;:::-;-1:-1:-1;;;;;23458:32:0;;;;;;;;;;;;;;;;;-1:-1:-1;23458:32:0;;;:42;;;;;;;;;;;;:53;;-1:-1:-1;;23458:53:0;;;;;;;;;;;23542:12;:10;:12::i;:::-;-1:-1:-1;;;;;23527:48:0;;23566:8;23527:48;;;;;;:::i;:::-;;;;;;;;23288:295;;:::o;31732:41::-;;;;:::o;31955:38::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;34507:738::-;34563:19;34585:13;:11;:13::i;:::-;34616:10;;34563:35;;-1:-1:-1;34616:10:0;;;;;34603:55;;;;-1:-1:-1;;;34603:55:0;;;;;;;:::i;:::-;34706:8;;34696:6;34682:11;;:20;;;;:::i;:::-;:32;;34669:76;;;;-1:-1:-1;;;34669:76:0;;;;;;;:::i;:::-;34802:13;;34769:10;34763:17;;;;:5;:17;;;;;:26;;;:35;;34792:6;;34763:35;:::i;:::-;:52;;34750:111;;;;-1:-1:-1;;;34750:111:0;;;;;;;:::i;:::-;34889:31;;34879:6;:41;;34866:97;;;;-1:-1:-1;;;34866:97:0;;;;;;;:::i;:::-;35007:6;34994:10;;:19;;;;:::i;:::-;34981:9;:32;;34968:75;;;;-1:-1:-1;;;34968:75:0;;;;;;;:::i;:::-;35053:9;35048:121;35072:6;35068:1;:10;35048:121;;;35100:38;35110:10;35122:15;35136:1;35122:11;:15;:::i;35100:38::-;35144:11;:13;;;:11;:13;;;:::i;:::-;;;;;;35080:3;;;;;:::i;:::-;;;;35048:121;;;-1:-1:-1;35208:10:0;35202:17;;;;:5;:17;;;;;:26;;;:35;;35231:6;;35202:35;:::i;:::-;35179:10;35173:17;;;;:5;:17;;;;;:26;;:64;-1:-1:-1;;34507:738:0:o;31234:35::-;;;;:::o;35769:180::-;35888:53;35913:5;35920:3;35925:8;35935:5;35888:24;:53::i;:::-;35769:180;;;;:::o;35254:353::-;35330:13;35364:17;35372:8;35364:7;:17::i;:::-;35356:63;;;;-1:-1:-1;;;35356:63:0;;;;;;;:::i;:::-;35430:28;35461:10;:8;:10::i;:::-;35430:41;;35520:1;35495:14;35489:28;:32;:110;;;;;;;;;;;;;;;;;35548:14;35564:19;:8;:17;:19::i;:::-;35531:62;;;;;;;;;:::i;:::-;;;;;;;;;;;;;35489:110;35482:117;35254:353;-1:-1:-1;;;35254:353:0:o;31777:32::-;;;;:::o;31276:53::-;;;;:::o;38153:127::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;38239:26:::1;:36:::0;38153:127::o;36792:144::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;36864:10:::1;::::0;::::1;::::0;;;::::1;;:20;;::::0;::::1;;;;36856:48;;;;-1:-1:-1::0;;;36856:48:0::1;;;;;;;:::i;:::-;36909:10;:19:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;36909:19:0;;::::1;::::0;;;::::1;::::0;;36792:144::o;32164:354::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;32242:19:::1;32264:13;:11;:13::i;:::-;32242:35;;32338:12;;32328:6;32310:15;;:24;;;;:::i;:::-;:40;;32288:100;;;;-1:-1:-1::0;;;32288:100:0::1;;;;;;;:::i;:::-;32398:9;32393:118;32417:6;32413:1;:10;32393:118;;;32445:31;32455:3:::0;32460:15:::1;32474:1:::0;32460:11;:15:::1;:::i;32445:31::-;32482:15;:17:::0;;;:15:::1;:17;::::0;::::1;:::i;:::-;;;;;;32425:3;;;;;:::i;:::-;;;;32393:118;;23589:164:::0;-1:-1:-1;;;;;23710:25:0;;;23686:4;23710:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;23589:164::o;37119:165::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37213:8:::1;37201;;:20;;37193:48;;;;-1:-1:-1::0;;;37193:48:0::1;;;;;;;:::i;:::-;37252:13;:24:::0;37119:165::o;1612:192::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;1701:22:0;::::1;1693:73;;;;-1:-1:-1::0;;;1693:73:0::1;;;;;;;:::i;:::-;1777:19;1787:8;1777:9;:19::i;:::-;1612:192:::0;:::o;37456:163::-;943:12;:10;:12::i;:::-;-1:-1:-1;;;;;932:23:0;:7;:5;:7::i;:::-;-1:-1:-1;;;;;932:23:0;;924:68;;;;-1:-1:-1;;;924:68:0;;;;;;;:::i;:::-;37549:11:::1;;37536:9;:24;;37528:52;;;;-1:-1:-1::0;;;37528:52:0::1;;;;;;;:::i;:::-;37591:8;:20:::0;37456:163::o;31544:25::-;;;;:::o;31666:30::-;;;;;;;;;:::o;21455:293::-;21557:4;-1:-1:-1;;;;;;21590:40:0;;-1:-1:-1;;;21590:40:0;;:101;;-1:-1:-1;;;;;;;21643:48:0;;-1:-1:-1;;;21643:48:0;21590:101;:150;;;;21704:36;21728:11;21704:23;:36::i;24950:155::-;25049:7;:14;25015:4;;25039:24;;:58;;;;;25095:1;-1:-1:-1;;;;;25067:30:0;:7;25075;25067:16;;;;;;-1:-1:-1;;;25067:16:0;;;;;;;;;;;;;;;;;;;-1:-1:-1;;;;;25067:16:0;:30;;;24950:155;-1:-1:-1;;24950:155:0:o;95:98::-;175:10;95:98;:::o;27123:175::-;27198:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;27198:29:0;-1:-1:-1;;;;;27198:29:0;;;;;;;;:24;;27252;27198;27252:15;:24::i;:::-;-1:-1:-1;;;;;27243:47:0;;;;;;;;;;;27123:175;;:::o;23759:339::-;23954:41;23973:12;:10;:12::i;:::-;23987:7;23954:18;:41::i;:::-;23946:103;;;;-1:-1:-1;;;23946:103:0;;;;;;;:::i;:::-;24062:28;24072:4;24078:2;24082:7;24062:9;:28::i;30147:830::-;30272:4;30312;30272;30329:525;30353:5;:12;30349:1;:16;30329:525;;;30387:20;30410:5;30416:1;30410:8;;;;;;-1:-1:-1;;;30410:8:0;;;;;;;;;;;;;;;30387:31;;30455:12;30439;:28;30435:408;;30609:12;30623;30592:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30582:55;;;;;;30567:70;;30435:408;;;30799:12;30813;30782:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;30772:55;;;;;;30757:70;;30435:408;-1:-1:-1;30367:3:0;;;;:::i;:::-;;;;30329:525;;;-1:-1:-1;30949:20:0;;;;30147:830;-1:-1:-1;;;30147:830:0:o;25466:110::-;25542:26;25552:2;25556:7;25542:26;;;;;;;;;;;;:9;:26::i;1812:173::-;1887:6;;;-1:-1:-1;;;;;1904:17:0;;;-1:-1:-1;;;;;;1904:17:0;;;;;;;1937:40;;1887:6;;;1904:17;1887:6;;1937:40;;1868:16;;1937:40;1812:173;;:::o;24295:328::-;24470:41;24489:12;:10;:12::i;:::-;24503:7;24470:18;:41::i;:::-;24462:103;;;;-1:-1:-1;;;24462:103:0;;;;;;;:::i;:::-;24576:39;24590:4;24596:2;24600:7;24609:5;24576:13;:39::i;32059:99::-;32110:13;32143:7;32136:14;;;;;:::i;2180:723::-;2236:13;2457:10;2453:53;;-1:-1:-1;2484:10:0;;;;;;;;;;;;-1:-1:-1;;;2484:10:0;;;;;;2453:53;2531:5;2516:12;2572:78;2579:9;;2572:78;;2605:8;;;;:::i;:::-;;-1:-1:-1;2628:10:0;;-1:-1:-1;2636:2:0;2628:10;;:::i;:::-;;;2572:78;;;2660:19;2692:6;2682:17;;;;;;-1:-1:-1;;;2682:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2682:17:0;;2660:39;;2710:154;2717:10;;2710:154;;2744:11;2754:1;2744:11;;:::i;:::-;;-1:-1:-1;2813:10:0;2821:2;2813:5;:10;:::i;:::-;2800:24;;:2;:24;:::i;:::-;2787:39;;2770:6;2777;2770:14;;;;;;-1:-1:-1;;;2770:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;2770:56:0;;;;;;;;-1:-1:-1;2841:11:0;2850:2;2841:11;;:::i;:::-;;;2710:154;;;2888:6;2180:723;-1:-1:-1;;;;2180:723:0:o;20834:157::-;-1:-1:-1;;;;;;20943:40:0;;-1:-1:-1;;;20943:40:0;20834:157;;;:::o;25111:349::-;25204:4;25229:16;25237:7;25229;:16::i;:::-;25221:73;;;;-1:-1:-1;;;25221:73:0;;;;;;;:::i;:::-;25305:13;25321:24;25337:7;25321:15;:24::i;:::-;25305:40;;25375:5;-1:-1:-1;;;;;25364:16:0;:7;-1:-1:-1;;;;;25364:16:0;;:51;;;;25408:7;-1:-1:-1;;;;;25384:31:0;:20;25396:7;25384:11;:20::i;:::-;-1:-1:-1;;;;;25384:31:0;;25364:51;:87;;;;25419:32;25436:5;25443:7;25419:16;:32::i;26600:517::-;26760:4;-1:-1:-1;;;;;26732:32:0;:24;26748:7;26732:15;:24::i;:::-;-1:-1:-1;;;;;26732:32:0;;26724:86;;;;-1:-1:-1;;;26724:86:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;26829:16:0;;26821:65;;;;-1:-1:-1;;;26821:65:0;;;;;;;:::i;:::-;26899:39;26920:4;26926:2;26930:7;26899:20;:39::i;:::-;27003:29;27020:1;27024:7;27003:8;:29::i;:::-;27062:2;27043:7;27051;27043:16;;;;;;-1:-1:-1;;;27043:16:0;;;;;;;;;;;;;;;;;:21;;-1:-1:-1;;;;;;27043:21:0;-1:-1:-1;;;;;27043:21:0;;;;;;27082:27;;27101:7;;27082:27;;;;;;;;;;27043:16;27082:27;26600:517;;;:::o;25582:321::-;25712:18;25718:2;25722:7;25712:5;:18::i;:::-;25763:54;25794:1;25798:2;25802:7;25811:5;25763:22;:54::i;:::-;25741:154;;;;-1:-1:-1;;;25741:154:0;;;;;;;:::i;24629:315::-;24786:28;24796:4;24802:2;24806:7;24786:9;:28::i;:::-;24833:48;24856:4;24862:2;24866:7;24875:5;24833:22;:48::i;:::-;24825:111;;;;-1:-1:-1;;;24825:111:0;;;;;;;:::i;25909:346::-;-1:-1:-1;;;;;25989:16:0;;25981:61;;;;-1:-1:-1;;;25981:61:0;;;;;;;:::i;:::-;26062:16;26070:7;26062;:16::i;:::-;26061:17;26053:58;;;;-1:-1:-1;;;26053:58:0;;;;;;;:::i;:::-;26124:45;26153:1;26157:2;26161:7;26124:20;:45::i;:::-;26180:7;:16;;;;;;;-1:-1:-1;26180:16:0;;;;;;;-1:-1:-1;;;;;;26180:16:0;-1:-1:-1;;;;;26180:16:0;;;;;;;;26214:33;;26239:7;;-1:-1:-1;26214:33:0;;-1:-1:-1;;26214:33:0;25909:346;;:::o;27304:799::-;27459:4;27480:15;:2;-1:-1:-1;;;;;27480:13:0;;:15::i;:::-;27476:620;;;27532:2;-1:-1:-1;;;;;27516:36:0;;27553:12;:10;:12::i;:::-;27567:4;27573:7;27582:5;27516:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27516:72:0;;;;;;;;-1:-1:-1;;27516:72:0;;;;;;;;;;;;:::i;:::-;;;27512:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;27758:13:0;;27754:272;;27801:60;;-1:-1:-1;;;27801:60:0;;;;;;;:::i;27754:272::-;27976:6;27970:13;27961:6;27957:2;27953:15;27946:38;27512:529;-1:-1:-1;;;;;;27639:51:0;-1:-1:-1;;;27639:51:0;;-1:-1:-1;27632:58:0;;27476:620;-1:-1:-1;28080:4:0;27304:799;;;;;;:::o;13396:387::-;13719:20;13767:8;;;13396:387::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:607:1;;110:18;151:2;143:6;140:14;137:2;;;157:18;;:::i;:::-;206:2;200:9;279:2;256:17;;-1:-1:-1;;252:31:1;240:44;;286:4;236:55;306:18;;;326:22;;;303:46;300:2;;;352:18;;:::i;:::-;388:2;381:22;436;;;421:6;-1:-1:-1;421:6:1;473:16;;;470:25;-1:-1:-1;467:2:1;;;508:1;505;498:12;467:2;558:6;553:3;546:4;538:6;534:17;521:44;613:1;606:4;597:6;589;585:19;581:30;574:41;;;90:531;;;;;:::o;626:175::-;696:20;;-1:-1:-1;;;;;745:31:1;;735:42;;725:2;;791:1;788;781:12;806:400;;;939:3;932:4;924:6;920:17;916:27;906:2;;962:6;954;947:22;906:2;-1:-1:-1;990:20:1;;1033:18;1022:30;;1019:2;;;1072:8;1062;1055:26;1019:2;1116:4;1108:6;1104:17;1092:29;;1179:3;1172:4;1164;1156:6;1152:17;1144:6;1140:30;1136:41;1133:50;1130:2;;;1196:1;1193;1186:12;1130:2;896:310;;;;;:::o;1211:162::-;1278:20;;1334:13;;1327:21;1317:32;;1307:2;;1363:1;1360;1353:12;1378:198;;1490:2;1478:9;1469:7;1465:23;1461:32;1458:2;;;1511:6;1503;1496:22;1458:2;1539:31;1560:9;1539:31;:::i;1581:274::-;;;1710:2;1698:9;1689:7;1685:23;1681:32;1678:2;;;1731:6;1723;1716:22;1678:2;1759:31;1780:9;1759:31;:::i;:::-;1749:41;;1809:40;1845:2;1834:9;1830:18;1809:40;:::i;:::-;1799:50;;1668:187;;;;;:::o;1860:342::-;;;;2006:2;1994:9;1985:7;1981:23;1977:32;1974:2;;;2027:6;2019;2012:22;1974:2;2055:31;2076:9;2055:31;:::i;:::-;2045:41;;2105:40;2141:2;2130:9;2126:18;2105:40;:::i;:::-;2095:50;;2192:2;2181:9;2177:18;2164:32;2154:42;;1964:238;;;;;:::o;2207:702::-;;;;;2379:3;2367:9;2358:7;2354:23;2350:33;2347:2;;;2401:6;2393;2386:22;2347:2;2429:31;2450:9;2429:31;:::i;:::-;2419:41;;2479:40;2515:2;2504:9;2500:18;2479:40;:::i;:::-;2469:50;;2566:2;2555:9;2551:18;2538:32;2528:42;;2621:2;2610:9;2606:18;2593:32;2648:18;2640:6;2637:30;2634:2;;;2685:6;2677;2670:22;2634:2;2713:22;;2766:4;2758:13;;2754:27;-1:-1:-1;2744:2:1;;2800:6;2792;2785:22;2744:2;2828:75;2895:7;2890:2;2877:16;2872:2;2868;2864:11;2828:75;:::i;:::-;2818:85;;;2337:572;;;;;;;:::o;2914:268::-;;;3040:2;3028:9;3019:7;3015:23;3011:32;3008:2;;;3061:6;3053;3046:22;3008:2;3089:31;3110:9;3089:31;:::i;:::-;3079:41;;3139:37;3172:2;3161:9;3157:18;3139:37;:::i;3187:266::-;;;3316:2;3304:9;3295:7;3291:23;3287:32;3284:2;;;3337:6;3329;3322:22;3284:2;3365:31;3386:9;3365:31;:::i;:::-;3355:41;3443:2;3428:18;;;;3415:32;;-1:-1:-1;;;3274:179:1:o;3458:192::-;;3567:2;3555:9;3546:7;3542:23;3538:32;3535:2;;;3588:6;3580;3573:22;3535:2;3616:28;3634:9;3616:28;:::i;3655:190::-;;3767:2;3755:9;3746:7;3742:23;3738:32;3735:2;;;3788:6;3780;3773:22;3735:2;-1:-1:-1;3816:23:1;;3725:120;-1:-1:-1;3725:120:1:o;3850:257::-;;3961:2;3949:9;3940:7;3936:23;3932:32;3929:2;;;3982:6;3974;3967:22;3929:2;4026:9;4013:23;4045:32;4071:5;4045:32;:::i;4112:261::-;;4234:2;4222:9;4213:7;4209:23;4205:32;4202:2;;;4255:6;4247;4240:22;4202:2;4292:9;4286:16;4311:32;4337:5;4311:32;:::i;4378:482::-;;4500:2;4488:9;4479:7;4475:23;4471:32;4468:2;;;4521:6;4513;4506:22;4468:2;4566:9;4553:23;4599:18;4591:6;4588:30;4585:2;;;4636:6;4628;4621:22;4585:2;4664:22;;4717:4;4709:13;;4705:27;-1:-1:-1;4695:2:1;;4751:6;4743;4736:22;4695:2;4779:75;4846:7;4841:2;4828:16;4823:2;4819;4815:11;4779:75;:::i;5060:531::-;;;;5224:2;5212:9;5203:7;5199:23;5195:32;5192:2;;;5245:6;5237;5230:22;5192:2;5286:9;5273:23;5263:33;;5347:2;5336:9;5332:18;5319:32;5374:18;5366:6;5363:30;5360:2;;;5411:6;5403;5396:22;5360:2;5455:76;5523:7;5514:6;5503:9;5499:22;5455:76;:::i;:::-;5182:409;;5550:8;;-1:-1:-1;5429:102:1;;-1:-1:-1;;;;5182:409:1:o;5596:599::-;;;;;5777:2;5765:9;5756:7;5752:23;5748:32;5745:2;;;5798:6;5790;5783:22;5745:2;5839:9;5826:23;5816:33;;5896:2;5885:9;5881:18;5868:32;5858:42;;5951:2;5940:9;5936:18;5923:32;5978:18;5970:6;5967:30;5964:2;;;6015:6;6007;6000:22;5964:2;6059:76;6127:7;6118:6;6107:9;6103:22;6059:76;:::i;:::-;5735:460;;;;-1:-1:-1;6154:8:1;-1:-1:-1;;;;5735:460:1:o;6200:259::-;;6281:5;6275:12;6308:6;6303:3;6296:19;6324:63;6380:6;6373:4;6368:3;6364:14;6357:4;6350:5;6346:16;6324:63;:::i;:::-;6441:2;6420:15;-1:-1:-1;;6416:29:1;6407:39;;;;6448:4;6403:50;;6251:208;-1:-1:-1;;6251:208:1:o;6464:229::-;6613:2;6609:15;;;;-1:-1:-1;;6605:53:1;6593:66;;6684:2;6675:12;;6583:110::o;6698:247::-;6855:19;;;6899:2;6890:12;;6883:28;6936:2;6927:12;;6845:100::o;6950:637::-;;7268:6;7262:13;7284:53;7330:6;7325:3;7318:4;7310:6;7306:17;7284:53;:::i;:::-;7400:13;;7359:16;;;;7422:57;7400:13;7359:16;7456:4;7444:17;;7422:57;:::i;:::-;-1:-1:-1;;;7501:20:1;;7530:22;;;7579:1;7568:13;;7238:349;-1:-1:-1;;;;7238:349:1:o;7592:203::-;-1:-1:-1;;;;;7756:32:1;;;;7738:51;;7726:2;7711:18;;7693:102::o;7800:490::-;-1:-1:-1;;;;;8069:15:1;;;8051:34;;8121:15;;8116:2;8101:18;;8094:43;8168:2;8153:18;;8146:34;;;8216:3;8211:2;8196:18;;8189:31;;;7800:490;;8237:47;;8264:19;;8256:6;8237:47;:::i;:::-;8229:55;8003:287;-1:-1:-1;;;;;;8003:287:1:o;8295:635::-;8466:2;8518:21;;;8588:13;;8491:18;;;8610:22;;;8295:635;;8466:2;8689:15;;;;8663:2;8648:18;;;8295:635;8735:169;8749:6;8746:1;8743:13;8735:169;;;8810:13;;8798:26;;8879:15;;;;8844:12;;;;8771:1;8764:9;8735:169;;;-1:-1:-1;8921:3:1;;8446:484;-1:-1:-1;;;;;;8446:484:1:o;8935:187::-;9100:14;;9093:22;9075:41;;9063:2;9048:18;;9030:92::o;9127:177::-;9273:25;;;9261:2;9246:18;;9228:76::o;9309:221::-;;9458:2;9447:9;9440:21;9478:46;9520:2;9509:9;9505:18;9497:6;9478:46;:::i;9535:397::-;9737:2;9719:21;;;9776:2;9756:18;;;9749:30;9815:34;9810:2;9795:18;;9788:62;-1:-1:-1;;;9881:2:1;9866:18;;9859:31;9922:3;9907:19;;9709:223::o;9937:414::-;10139:2;10121:21;;;10178:2;10158:18;;;10151:30;10217:34;10212:2;10197:18;;10190:62;-1:-1:-1;;;10283:2:1;10268:18;;10261:48;10341:3;10326:19;;10111:240::o;10356:402::-;10558:2;10540:21;;;10597:2;10577:18;;;10570:30;10636:34;10631:2;10616:18;;10609:62;-1:-1:-1;;;10702:2:1;10687:18;;10680:36;10748:3;10733:19;;10530:228::o;10763:352::-;10965:2;10947:21;;;11004:2;10984:18;;;10977:30;11043;11038:2;11023:18;;11016:58;11106:2;11091:18;;10937:178::o;11120:400::-;11322:2;11304:21;;;11361:2;11341:18;;;11334:30;11400:34;11395:2;11380:18;;11373:62;-1:-1:-1;;;11466:2:1;11451:18;;11444:34;11510:3;11495:19;;11294:226::o;11525:349::-;11727:2;11709:21;;;11766:2;11746:18;;;11739:30;11805:27;11800:2;11785:18;;11778:55;11865:2;11850:18;;11699:175::o;11879:354::-;12081:2;12063:21;;;12120:2;12100:18;;;12093:30;12159:32;12154:2;12139:18;;12132:60;12224:2;12209:18;;12053:180::o;12238:332::-;12440:2;12422:21;;;12479:1;12459:18;;;12452:29;-1:-1:-1;;;12512:2:1;12497:18;;12490:39;12561:2;12546:18;;12412:158::o;12575:342::-;12777:2;12759:21;;;12816:2;12796:18;;;12789:30;-1:-1:-1;;;12850:2:1;12835:18;;12828:48;12908:2;12893:18;;12749:168::o;12922:408::-;13124:2;13106:21;;;13163:2;13143:18;;;13136:30;13202:34;13197:2;13182:18;;13175:62;-1:-1:-1;;;13268:2:1;13253:18;;13246:42;13320:3;13305:19;;13096:234::o;13335:346::-;13537:2;13519:21;;;13576:2;13556:18;;;13549:30;-1:-1:-1;;;13610:2:1;13595:18;;13588:52;13672:2;13657:18;;13509:172::o;13686:397::-;13888:2;13870:21;;;13927:2;13907:18;;;13900:30;13966:34;13961:2;13946:18;;13939:62;-1:-1:-1;;;14032:2:1;14017:18;;14010:31;14073:3;14058:19;;13860:223::o;14088:420::-;14290:2;14272:21;;;14329:2;14309:18;;;14302:30;14368:34;14363:2;14348:18;;14341:62;14439:26;14434:2;14419:18;;14412:54;14498:3;14483:19;;14262:246::o;14513:406::-;14715:2;14697:21;;;14754:2;14734:18;;;14727:30;14793:34;14788:2;14773:18;;14766:62;-1:-1:-1;;;14859:2:1;14844:18;;14837:40;14909:3;14894:19;;14687:232::o;14924:405::-;15126:2;15108:21;;;15165:2;15145:18;;;15138:30;15204:34;15199:2;15184:18;;15177:62;-1:-1:-1;;;15270:2:1;15255:18;;15248:39;15319:3;15304:19;;15098:231::o;15334:341::-;15536:2;15518:21;;;15575:2;15555:18;;;15548:30;-1:-1:-1;;;15609:2:1;15594:18;;15587:47;15666:2;15651:18;;15508:167::o;15680:356::-;15882:2;15864:21;;;15901:18;;;15894:30;15960:34;15955:2;15940:18;;15933:62;16027:2;16012:18;;15854:182::o;16041:408::-;16243:2;16225:21;;;16282:2;16262:18;;;16255:30;16321:34;16316:2;16301:18;;16294:62;-1:-1:-1;;;16387:2:1;16372:18;;16365:42;16439:3;16424:19;;16215:234::o;16454:339::-;16656:2;16638:21;;;16695:2;16675:18;;;16668:30;-1:-1:-1;;;16729:2:1;16714:18;;16707:45;16784:2;16769:18;;16628:165::o;16798:356::-;17000:2;16982:21;;;17019:18;;;17012:30;17078:34;17073:2;17058:18;;17051:62;17145:2;17130:18;;16972:182::o;17159:405::-;17361:2;17343:21;;;17400:2;17380:18;;;17373:30;17439:34;17434:2;17419:18;;17412:62;-1:-1:-1;;;17505:2:1;17490:18;;17483:39;17554:3;17539:19;;17333:231::o;17569:341::-;17771:2;17753:21;;;17810:2;17790:18;;;17783:30;-1:-1:-1;;;17844:2:1;17829:18;;17822:47;17901:2;17886:18;;17743:167::o;17915:346::-;18117:2;18099:21;;;18156:2;18136:18;;;18129:30;-1:-1:-1;;;18190:2:1;18175:18;;18168:52;18252:2;18237:18;;18089:172::o;18266:347::-;18468:2;18450:21;;;18507:2;18487:18;;;18480:30;18546:25;18541:2;18526:18;;18519:53;18604:2;18589:18;;18440:173::o;18618:397::-;18820:2;18802:21;;;18859:2;18839:18;;;18832:30;18898:34;18893:2;18878:18;;18871:62;-1:-1:-1;;;18964:2:1;18949:18;;18942:31;19005:3;18990:19;;18792:223::o;19020:413::-;19222:2;19204:21;;;19261:2;19241:18;;;19234:30;19300:34;19295:2;19280:18;;19273:62;-1:-1:-1;;;19366:2:1;19351:18;;19344:47;19423:3;19408:19;;19194:239::o;19438:397::-;19640:2;19622:21;;;19679:2;19659:18;;;19652:30;19718:34;19713:2;19698:18;;19691:62;-1:-1:-1;;;19784:2:1;19769:18;;19762:31;19825:3;19810:19;;19612:223::o;20022:391::-;20253:25;;;20309:2;20294:18;;20287:34;;;;20352:2;20337:18;;20330:34;20395:2;20380:18;;20373:34;20240:3;20225:19;;20207:206::o;20418:128::-;;20489:1;20485:6;20482:1;20479:13;20476:2;;;20495:18;;:::i;:::-;-1:-1:-1;20531:9:1;;20466:80::o;20551:120::-;;20617:1;20607:2;;20622:18;;:::i;:::-;-1:-1:-1;20656:9:1;;20597:74::o;20676:168::-;;20782:1;20778;20774:6;20770:14;20767:1;20764:21;20759:1;20752:9;20745:17;20741:45;20738:2;;;20789:18;;:::i;:::-;-1:-1:-1;20829:9:1;;20728:116::o;20849:125::-;;20917:1;20914;20911:8;20908:2;;;20922:18;;:::i;:::-;-1:-1:-1;20959:9:1;;20898:76::o;20979:258::-;21051:1;21061:113;21075:6;21072:1;21069:13;21061:113;;;21151:11;;;21145:18;21132:11;;;21125:39;21097:2;21090:10;21061:113;;;21192:6;21189:1;21186:13;21183:2;;;-1:-1:-1;;21227:1:1;21209:16;;21202:27;21032:205::o;21242:380::-;21327:1;21317:12;;21374:1;21364:12;;;21385:2;;21439:4;21431:6;21427:17;21417:27;;21385:2;21492;21484:6;21481:14;21461:18;21458:38;21455:2;;;21538:10;21533:3;21529:20;21526:1;21519:31;21573:4;21570:1;21563:15;21601:4;21598:1;21591:15;21455:2;;21297:325;;;:::o;21627:135::-;;-1:-1:-1;;21687:17:1;;21684:2;;;21707:18;;:::i;:::-;-1:-1:-1;21754:1:1;21743:13;;21674:88::o;21767:112::-;;21825:1;21815:2;;21830:18;;:::i;:::-;-1:-1:-1;21864:9:1;;21805:74::o;21884:127::-;21945:10;21940:3;21936:20;21933:1;21926:31;21976:4;21973:1;21966:15;22000:4;21997:1;21990:15;22016:127;22077:10;22072:3;22068:20;22065:1;22058:31;22108:4;22105:1;22098:15;22132:4;22129:1;22122:15;22148:127;22209:10;22204:3;22200:20;22197:1;22190:31;22240:4;22237:1;22230:15;22264:4;22261:1;22254:15;22280:133;-1:-1:-1;;;;;;22356:32:1;;22346:43;;22336:2;;22403:1;22400;22393:12

Swarm Source

ipfs://a9e2b7ce0ac064df4309a62db7bd727f6bcaa155da2d1b7a396a2415bf0451c1
Loading...
Loading
Loading...
Loading
[ Download: CSV Export  ]
[ Download: CSV Export  ]

A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.