ETH Price: $2,357.21 (+0.69%)

Token

Syndicated Cat Club (Syndicated Cat Club)
 

Overview

Max Total Supply

204 Syndicated Cat Club

Holders

132

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
ninechain.eth
Balance
1 Syndicated Cat Club
0xf6e7a49f408c1ad6e94d2251280aa13fd8ade519
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
MultiMint

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-03-05
*/

//SPDX-License-Identifier: UNLICENSED
// File: @openzeppelin/contracts/utils/Counters.sol


// OpenZeppelin Contracts v4.4.1 (utils/Counters.sol)

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented, decremented or reset. This can be used e.g. to track the number
 * of elements in a mapping, issuing ERC721 ids, or counting request ids.
 *
 * Include with `using Counters for Counters.Counter;`
 */
library Counters {
    struct Counter {
        // This variable should never be directly accessed by users of the library: interactions must be restricted to
        // the library's function. As of Solidity v0.5.2, this cannot be enforced, though there is a proposal to add
        // this feature: see https://github.com/ethereum/solidity/issues/4637
        uint256 _value; // default: 0
    }

    function current(Counter storage counter) internal view returns (uint256) {
        return counter._value;
    }

    function increment(Counter storage counter) internal {
        unchecked {
            counter._value += 1;
        }
    }

    function decrement(Counter storage counter) internal {
        uint256 value = counter._value;
        require(value > 0, "Counter: decrement overflow");
        unchecked {
            counter._value = value - 1;
        }
    }

    function reset(Counter storage counter) internal {
        counter._value = 0;
    }
}

// File: @openzeppelin/contracts/utils/Strings.sol


// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
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);
    }
}

// File: @openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

// File: @openzeppelin/contracts/access/Ownable.sol


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


/**
 * @dev Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _transferOwnership(address(0));
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Can only be called by the current owner.
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

// File: @openzeppelin/contracts/utils/Address.sol


// OpenZeppelin Contracts v4.4.1 (utils/Address.sol)

pragma solidity ^0.8.0;

/**
 * @dev Collection of functions related to the address type
 */
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);
            }
        }
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721Receiver.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
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);
}

// File: @openzeppelin/contracts/utils/introspection/IERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
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);
}

// File: @openzeppelin/contracts/utils/introspection/ERC165.sol


// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;


/**
 * @dev Implementation of the {IERC165} interface.
 *
 * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check
 * for the additional interface id that will be supported. For example:
 *
 * ```solidity
 * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
 *     return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId);
 * }
 * ```
 *
 * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation.
 */
abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

// File: @openzeppelin/contracts/token/ERC721/IERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


/**
 * @dev Required interface of an ERC721 compliant contract.
 */
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;
}

// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
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);
}

// File: @openzeppelin/contracts/token/ERC721/ERC721.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC721/ERC721.sol)

pragma solidity ^0.8.0;
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;
    string private _name;
    string private _symbol;
    mapping(uint256 => address) private _owners;
    mapping(address => uint256) private _balances;
    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");
        return _balances[owner];
    }
    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 tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

        string memory baseURI = _baseURI();
        return bytes(baseURI).length > 0 ? string(abi.encodePacked(baseURI, tokenId.toString())) : "";
    }
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.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 {
        _setApprovalForAll(_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 {
        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 _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 = ERC721.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);
        _balances[to] += 1;
        _owners[tokenId] = to;
        emit Transfer(address(0), to, tokenId);
    }
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);
        _beforeTokenTransfer(owner, address(0), tokenId);
        _approve(address(0), tokenId);
        _balances[owner] -= 1;
        delete _owners[tokenId];
        emit Transfer(owner, address(0), tokenId);
    }
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {
        require(ERC721.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);
        _approve(address(0), tokenId);
        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;
        emit Transfer(from, to, tokenId);
    }
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }
    function _setApprovalForAll(
        address owner,
        address operator,
        bool approved
    ) internal virtual {
        require(owner != operator, "ERC721: approve to caller");
        _operatorApprovals[owner][operator] = approved;
        emit ApprovalForAll(owner, operator, approved);
    }
    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 {}
}


pragma solidity >=0.7.0 <0.9.0;

contract MultiMint is ERC721, Ownable {
    //curated for Syndicated
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;
  
  uint256 public cost = 0.13 ether;
  uint256 public wlcost = 0.10 ether;
  uint256 public ogcost = 0.07 ether;
  uint256 public maxSupply = 9999;
  uint256 public _ogSupply = 99;
  uint256 public _ogMintLimit = 1;
  uint256 public maxMintAmountPerTx = 1;
  uint256 public maxMintPerUser = 1;

  bool public whiteListActive = false;
  mapping(address => bool) public _whitelist;

  uint256 public startTime = 1647334800;
  uint256 public ogstartTime = 1646492400;
  uint256 public ogendTime = 1646499600;
  uint256 public _WLstartTime = 1646730000;
  bool public paused = true;
  bool public ogpaused = true;
  bool public revealed = false;

  constructor() ERC721("Syndicated Cat Club", "Syndicated Cat Club") {
    setHiddenMetadataUri("ipfs://QmWY5YN4Dnb8bjzrU1zK3qk8t5pBCHGuwSgNSwdBzg3RHb/hidden.json");
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    _;
  }

  modifier ogmintCompliance(uint256 _mintAmount) {
    require(block.timestamp >= ogstartTime,"The sale has not started yet.");
    require(block.timestamp <= ogendTime,"The sale has ended.");
    require(supply.current() + _mintAmount <= _ogSupply, "No more OG's left!");
    require(_mintAmount > 0 && _mintAmount <= _ogMintLimit, "Can't mint more than mint limit");
    require(balanceOf(msg.sender)+_mintAmount <= maxMintPerUser, "Please Lower Amount");
      _;
  }

  modifier wlmintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, "Invalid mint amount!");
    require(supply.current() + _mintAmount <= maxSupply, "Max supply exceeded!");
    require(block.timestamp >= _WLstartTime,"The sale has not started yet.");
    require(balanceOf(msg.sender)+_mintAmount <= maxMintPerUser, "Please Lower Amount");
    _;
  }

    function setStartTime(uint256 _startTime) external onlyOwner {
        startTime = _startTime;
  }

    function setOGStartTime(uint256 _ogstartTime) external onlyOwner {
     ogstartTime = _ogstartTime;
}

    function setOGMintLimit(uint256 ogMintLimit) external onlyOwner {
        _ogMintLimit = ogMintLimit;
}

    function setogSupply(uint256 ogSupply) external onlyOwner {
        _ogSupply = ogSupply;
}

    function setOGEndTime(uint256 _ogendTime) external onlyOwner {
        ogstartTime = _ogendTime;
}
  
    function setWLStartTime(uint256 WLstartTime) external onlyOwner {
        _WLstartTime = WLstartTime;
  }

  function totalSupply() public view returns (uint256) {
    return supply.current();
  }

  function setwhiteListActive() external onlyOwner {
        whiteListActive = true;
      }

  function setwhiteListInActive() external onlyOwner {
        whiteListActive = false;
      }

  function setMaxMintPerUser(uint256 _maxMintPerUser) external onlyOwner {
      maxMintPerUser = _maxMintPerUser;
  }

  function addSingleWhiteList(address _addr) public onlyOwner {
      _whitelist[_addr] = true;
  }

  function addMultipleToWhiteList(address[] memory addresses) external onlyOwner {
        for (uint256 i = 0; i < addresses.length; i++) {
          require(addresses[i] != address(0), "Can't add the null address");
          _whitelist[addresses[i]] = true;
          
        }
      }  

  function isInWhiteList(address _addr) private view returns (bool) {
      return _whitelist[_addr];
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
    require(!paused, "The contract is paused!");
    require(msg.value == cost * _mintAmount, "Insufficient funds!");
    require(block.timestamp >= startTime,"The sale has not started yet.");
    require(balanceOf(msg.sender)+_mintAmount <= maxMintPerUser, "Please Lower Amount");
    _mintLoop(msg.sender, _mintAmount);
  }
  
  function ogmint(uint256 _mintAmount) public payable ogmintCompliance(_mintAmount) {
    require(owner() == msg.sender || !ogpaused, "Mint disabled");
    require(msg.value == ogcost * _mintAmount, "Insufficient funds!");
    _mintLoop(msg.sender, _mintAmount);
  }
  
  function WhiteListMint(uint256 _mintAmount) public payable wlmintCompliance(_mintAmount) {
    require(!whiteListActive, "The contract is paused!");
    require(msg.value == wlcost * _mintAmount, "Insufficient funds!");
    require(_whitelist[msg.sender], "You are not on the  WhiteList");
    _mintLoop(msg.sender, _mintAmount);
  }
  
  function mintForAddress(uint256 _mintAmount, address _receiver) public mintCompliance(_mintAmount) onlyOwner {
    _mintLoop(_receiver, _mintAmount);
  }

  function walletOfOwner(address _owner)
    public
    view
    returns (uint256[] memory)
  {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = 1;
    uint256 ownedTokenIndex = 0;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId <= maxSupply) {
      address currentTokenOwner = ownerOf(currentTokenId);

      if (currentTokenOwner == _owner) {
        ownedTokenIds[ownedTokenIndex] = currentTokenId;

        ownedTokenIndex++;
      }

      currentTokenId++;
    }

    return ownedTokenIds;
  }

  function tokenURI(uint256 _tokenId)
    public
    view
    virtual
    override
    returns (string memory)
  {
    require(
      _exists(_tokenId),
      "ERC721Metadata: URI query for nonexistent token"
    );

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : "";
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setWLCost(uint256 _wlcost) public onlyOwner {
    wlcost = _wlcost;
  }

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
  }

  function setOGPaused(bool _state) public onlyOwner {
    ogpaused = _state;
  }

  function withdraw() public {
      require(msg.sender == owner() || msg.sender == 0xFC23F7dE56685A65B8a13Cb79F20C08AB8564e26);
    (bool hs, ) = payable(0xFC23F7dE56685A65B8a13Cb79F20C08AB8564e26).call{value: address(this).balance * 90 / 100}("");
    require(hs);

    (bool project, ) = payable(owner()).call{value: address(this).balance}("");
    require(project);
  }

  function _mintLoop(address _receiver, uint256 _mintAmount) internal {
    for (uint256 i = 0; i < _mintAmount; i++) {
      supply.increment();
      _safeMint(_receiver, supply.current());
    }
  }

  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }
}

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":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"WhiteListMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"_WLstartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ogMintLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"_ogSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"_whitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addMultipleToWhiteList","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_addr","type":"address"}],"name":"addSingleWhiteList","outputs":[],"stateMutability":"nonpayable","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMintPerUser","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogendTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"ogmint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"ogpaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ogstartTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintPerUser","type":"uint256"}],"name":"setMaxMintPerUser","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ogendTime","type":"uint256"}],"name":"setOGEndTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ogMintLimit","type":"uint256"}],"name":"setOGMintLimit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setOGPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_ogstartTime","type":"uint256"}],"name":"setOGStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_startTime","type":"uint256"}],"name":"setStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_wlcost","type":"uint256"}],"name":"setWLCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"WLstartTime","type":"uint256"}],"name":"setWLStartTime","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"ogSupply","type":"uint256"}],"name":"setogSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setwhiteListActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"setwhiteListInActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"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":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"whiteListActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"wlcost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"}]

60a06040819052600060808190526200001b9160089162000253565b5060408051808201909152600580825264173539b7b760d91b60209092019182526200004a9160099162000253565b506701cdda4faccd0000600b5567016345785d8a0000600c5566f8b0a10e470000600d5561270f600e556063600f556001601081905560118190556012556013805460ff1916905563623055906015556362237af060165563622397106017556362271b106018556019805462ffffff1916610101179055348015620000cf57600080fd5b5060408051808201825260138082527f53796e646963617465642043617420436c756200000000000000000000000000602080840182815285518087019096529285528401528151919291620001289160009162000253565b5080516200013e90600190602084019062000253565b5050506200015b620001556200018560201b60201c565b62000189565b6200017f6040518060800160405280604181526020016200331b60419139620001db565b62000336565b3390565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b6006546001600160a01b031633146200023a5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640160405180910390fd5b80516200024f90600a90602084019062000253565b5050565b8280546200026190620002f9565b90600052602060002090601f016020900481019282620002855760008555620002d0565b82601f10620002a057805160ff1916838001178555620002d0565b82800160010185558215620002d0579182015b82811115620002d0578251825591602001919060010190620002b3565b50620002de929150620002e2565b5090565b5b80821115620002de5760008155600101620002e3565b600181811c908216806200030e57607f821691505b602082108114156200033057634e487b7160e01b600052602260045260246000fd5b50919050565b612fd580620003466000396000f3fe6080604052600436106103b85760003560e01c80636c2d3c4f116101f2578063ba1ba0ed1161010d578063d87a3aba116100a0578063ef368a3b1161006f578063ef368a3b14610a7c578063efbd73f414610a91578063f2fde38b14610ab1578063f6c03f4a14610ad157600080fd5b8063d87a3aba146109ea578063e0a8085314610a00578063e985e9c514610a20578063ec1f4f8414610a6957600080fd5b8063cfdb63ac116100dc578063cfdb63ac1461096e578063d1d192131461099e578063d304c4bc146109be578063d5abeb01146109d457600080fd5b8063ba1ba0ed1461090f578063bd8c540114610925578063c1c880e31461093b578063c87b56dd1461094e57600080fd5b80638da5cb5b11610185578063a22cb46511610154578063a22cb4651461089a578063a45ba8e7146108ba578063b071401b146108cf578063b88d4fde146108ef57600080fd5b80638da5cb5b1461083e57806394354fd01461085c57806395d89b4114610872578063a0712d681461088757600080fd5b806378e97925116101c157806378e97925146107c85780637ec4a659146107de57806383ccaef7146107fe5780638a710eb01461081e57600080fd5b80636c2d3c4f1461076757806370a082311461077d578063715018a61461079d57806373e4b7ce146107b257600080fd5b806333241b8d116102e257806349b1daa7116102755780635c975abb116102445780635c975abb146106f957806362b99ad4146107135780636352211e146107285780636571835c1461074857600080fd5b806349b1daa71461068e5780634fdd43cb146106a457806351830227146106c45780635503a0e8146106e457600080fd5b806342842e0e116102b157806342842e0e14610601578063438b63001461062157806344a0d68a1461064e578063457d338a1461066e57600080fd5b806333241b8d146105b75780633ccfd60b146105cc5780633e0a322d146105e15780633e9661161461050757600080fd5b806318160ddd1161035a57806323b872dd1161032957806323b872dd1461053d578063287930841461055d5780632d12cc741461057d5780632e4355cd1461059d57600080fd5b806318160ddd146104d25780631ef4ed85146104e7578063203b158114610507578063226f5dcd1461052757600080fd5b8063095ea7b311610396578063095ea7b31461044c57806313faede61461046e57806316ba10e01461049257806316c38b3c146104b257600080fd5b806301ffc9a7146103bd57806306fdde03146103f2578063081812fc14610414575b600080fd5b3480156103c957600080fd5b506103dd6103d8366004612a00565b610af1565b60405190151581526020015b60405180910390f35b3480156103fe57600080fd5b50610407610b43565b6040516103e99190612c30565b34801561042057600080fd5b5061043461042f366004612a83565b610bd5565b6040516001600160a01b0390911681526020016103e9565b34801561045857600080fd5b5061046c610467366004612907565b610c6f565b005b34801561047a57600080fd5b50610484600b5481565b6040519081526020016103e9565b34801561049e57600080fd5b5061046c6104ad366004612a3a565b610d85565b3480156104be57600080fd5b5061046c6104cd3660046129e5565b610dc6565b3480156104de57600080fd5b50610484610e03565b3480156104f357600080fd5b5061046c610502366004612a83565b610e13565b34801561051357600080fd5b5061046c610522366004612a83565b610e42565b34801561053357600080fd5b5061048460185481565b34801561054957600080fd5b5061046c610558366004612825565b610e71565b34801561056957600080fd5b5061046c610578366004612931565b610ea2565b34801561058957600080fd5b5061046c6105983660046127d7565b610fb0565b3480156105a957600080fd5b506013546103dd9060ff1681565b3480156105c357600080fd5b5061046c610ffe565b3480156105d857600080fd5b5061046c611034565b3480156105ed57600080fd5b5061046c6105fc366004612a83565b611157565b34801561060d57600080fd5b5061046c61061c366004612825565b611186565b34801561062d57600080fd5b5061064161063c3660046127d7565b6111a1565b6040516103e99190612bec565b34801561065a57600080fd5b5061046c610669366004612a83565b611282565b34801561067a57600080fd5b5061046c6106893660046129e5565b6112b1565b34801561069a57600080fd5b50610484600f5481565b3480156106b057600080fd5b5061046c6106bf366004612a3a565b6112f5565b3480156106d057600080fd5b506019546103dd9062010000900460ff1681565b3480156106f057600080fd5b50610407611332565b34801561070557600080fd5b506019546103dd9060ff1681565b34801561071f57600080fd5b506104076113c0565b34801561073457600080fd5b50610434610743366004612a83565b6113cd565b34801561075457600080fd5b506019546103dd90610100900460ff1681565b34801561077357600080fd5b50610484600c5481565b34801561078957600080fd5b506104846107983660046127d7565b611444565b3480156107a957600080fd5b5061046c6114cb565b3480156107be57600080fd5b5061048460165481565b3480156107d457600080fd5b5061048460155481565b3480156107ea57600080fd5b5061046c6107f9366004612a3a565b611501565b34801561080a57600080fd5b5061046c610819366004612a83565b61153e565b34801561082a57600080fd5b5061046c610839366004612a83565b61156d565b34801561084a57600080fd5b506006546001600160a01b0316610434565b34801561086857600080fd5b5061048460115481565b34801561087e57600080fd5b5061040761159c565b61046c610895366004612a83565b6115ab565b3480156108a657600080fd5b5061046c6108b53660046128dd565b6116e9565b3480156108c657600080fd5b506104076116f4565b3480156108db57600080fd5b5061046c6108ea366004612a83565b611701565b3480156108fb57600080fd5b5061046c61090a366004612861565b611730565b34801561091b57600080fd5b5061048460105481565b34801561093157600080fd5b50610484600d5481565b61046c610949366004612a83565b611768565b34801561095a57600080fd5b50610407610969366004612a83565b6118fb565b34801561097a57600080fd5b506103dd6109893660046127d7565b60146020526000908152604090205460ff1681565b3480156109aa57600080fd5b5061046c6109b9366004612a83565b611a7b565b3480156109ca57600080fd5b5061048460125481565b3480156109e057600080fd5b50610484600e5481565b3480156109f657600080fd5b5061048460175481565b348015610a0c57600080fd5b5061046c610a1b3660046129e5565b611aaa565b348015610a2c57600080fd5b506103dd610a3b3660046127f2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61046c610a77366004612a83565b611af0565b348015610a8857600080fd5b5061046c611ce0565b348015610a9d57600080fd5b5061046c610aac366004612a9c565b611d19565b348015610abd57600080fd5b5061046c610acc3660046127d7565b611db1565b348015610add57600080fd5b5061046c610aec366004612a83565b611e4c565b60006001600160e01b031982166380ac58cd60e01b1480610b2257506001600160e01b03198216635b5e139f60e01b145b80610b3d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610b5290612ec7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e90612ec7565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c7a826113cd565b9050806001600160a01b0316836001600160a01b03161415610ce85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c4a565b336001600160a01b0382161480610d045750610d048133610a3b565b610d765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c4a565b610d808383611e7b565b505050565b6006546001600160a01b03163314610daf5760405162461bcd60e51b8152600401610c4a90612cfa565b8051610dc29060099060208401906126ba565b5050565b6006546001600160a01b03163314610df05760405162461bcd60e51b8152600401610c4a90612cfa565b6019805460ff1916911515919091179055565b6000610e0e60075490565b905090565b6006546001600160a01b03163314610e3d5760405162461bcd60e51b8152600401610c4a90612cfa565b601055565b6006546001600160a01b03163314610e6c5760405162461bcd60e51b8152600401610c4a90612cfa565b601655565b610e7b3382611ee9565b610e975760405162461bcd60e51b8152600401610c4a90612d5d565b610d80838383611fe0565b6006546001600160a01b03163314610ecc5760405162461bcd60e51b8152600401610c4a90612cfa565b60005b8151811015610dc25760006001600160a01b0316828281518110610ef557610ef5612f5d565b60200260200101516001600160a01b03161415610f545760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610c4a565b600160146000848481518110610f6c57610f6c612f5d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610fa881612f02565b915050610ecf565b6006546001600160a01b03163314610fda5760405162461bcd60e51b8152600401610c4a90612cfa565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b6006546001600160a01b031633146110285760405162461bcd60e51b8152600401610c4a90612cfa565b6013805460ff19169055565b6006546001600160a01b0316331480611060575073fc23f7de56685a65b8a13cb79f20c08ab8564e2633145b61106957600080fd5b600073fc23f7de56685a65b8a13cb79f20c08ab8564e26606461108d47605a612e65565b6110979190612e51565b604051600081818185875af1925050503d80600081146110d3576040519150601f19603f3d011682016040523d82523d6000602084013e6110d8565b606091505b50509050806110e657600080fd5b60006110fa6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611144576040519150601f19603f3d011682016040523d82523d6000602084013e611149565b606091505b5050905080610dc257600080fd5b6006546001600160a01b031633146111815760405162461bcd60e51b8152600401610c4a90612cfa565b601555565b610d8083838360405180602001604052806000815250611730565b606060006111ae83611444565b905060008167ffffffffffffffff8111156111cb576111cb612f73565b6040519080825280602002602001820160405280156111f4578160200160208202803683370190505b509050600160005b838110801561120d5750600e548211155b1561127857600061121d836113cd565b9050866001600160a01b0316816001600160a01b03161415611265578284838151811061124c5761124c612f5d565b60209081029190910101528161126181612f02565b9250505b8261126f81612f02565b935050506111fc565b5090949350505050565b6006546001600160a01b031633146112ac5760405162461bcd60e51b8152600401610c4a90612cfa565b600b55565b6006546001600160a01b031633146112db5760405162461bcd60e51b8152600401610c4a90612cfa565b601980549115156101000261ff0019909216919091179055565b6006546001600160a01b0316331461131f5760405162461bcd60e51b8152600401610c4a90612cfa565b8051610dc290600a9060208401906126ba565b6009805461133f90612ec7565b80601f016020809104026020016040519081016040528092919081815260200182805461136b90612ec7565b80156113b85780601f1061138d576101008083540402835291602001916113b8565b820191906000526020600020905b81548152906001019060200180831161139b57829003601f168201915b505050505081565b6008805461133f90612ec7565b6000818152600260205260408120546001600160a01b031680610b3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c4a565b60006001600160a01b0382166114af5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c4a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146114f55760405162461bcd60e51b8152600401610c4a90612cfa565b6114ff6000612180565b565b6006546001600160a01b0316331461152b5760405162461bcd60e51b8152600401610c4a90612cfa565b8051610dc29060089060208401906126ba565b6006546001600160a01b031633146115685760405162461bcd60e51b8152600401610c4a90612cfa565b601255565b6006546001600160a01b031633146115975760405162461bcd60e51b8152600401610c4a90612cfa565b601855565b606060018054610b5290612ec7565b806000811180156115be57506011548111155b6115da5760405162461bcd60e51b8152600401610c4a90612c95565b600e54816115e760075490565b6115f19190612e39565b111561160f5760405162461bcd60e51b8152600401610c4a90612d2f565b60195460ff161561165c5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610c4a565b81600b5461166a9190612e65565b34146116885760405162461bcd60e51b8152600401610c4a90612ddb565b6015544210156116aa5760405162461bcd60e51b8152600401610c4a90612cc3565b601254826116b733611444565b6116c19190612e39565b11156116df5760405162461bcd60e51b8152600401610c4a90612dae565b610dc233836121d2565b610dc233838361220f565b600a805461133f90612ec7565b6006546001600160a01b0316331461172b5760405162461bcd60e51b8152600401610c4a90612cfa565b601155565b61173a3383611ee9565b6117565760405162461bcd60e51b8152600401610c4a90612d5d565b611762848484846122de565b50505050565b8060008111801561177b57506011548111155b6117975760405162461bcd60e51b8152600401610c4a90612c95565b600e54816117a460075490565b6117ae9190612e39565b11156117cc5760405162461bcd60e51b8152600401610c4a90612d2f565b6018544210156117ee5760405162461bcd60e51b8152600401610c4a90612cc3565b601254816117fb33611444565b6118059190612e39565b11156118235760405162461bcd60e51b8152600401610c4a90612dae565b60135460ff16156118705760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610c4a565b81600c5461187e9190612e65565b341461189c5760405162461bcd60e51b8152600401610c4a90612ddb565b3360009081526014602052604090205460ff166116df5760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e20746865202057686974654c6973740000006044820152606401610c4a565b6000818152600260205260409020546060906001600160a01b031661197a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c4a565b60195462010000900460ff16611a1c57600a805461199790612ec7565b80601f01602080910402602001604051908101604052809291908181526020018280546119c390612ec7565b8015611a105780601f106119e557610100808354040283529160200191611a10565b820191906000526020600020905b8154815290600101906020018083116119f357829003601f168201915b50505050509050919050565b6000611a26612311565b90506000815111611a465760405180602001604052806000815250611a74565b80611a5084612320565b6009604051602001611a6493929190612aeb565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611aa55760405162461bcd60e51b8152600401610c4a90612cfa565b600c55565b6006546001600160a01b03163314611ad45760405162461bcd60e51b8152600401610c4a90612cfa565b60198054911515620100000262ff000019909216919091179055565b80601654421015611b135760405162461bcd60e51b8152600401610c4a90612cc3565b601754421115611b5b5760405162461bcd60e51b81526020600482015260136024820152722a34329039b0b632903430b99032b73232b21760691b6044820152606401610c4a565b600f5481611b6860075490565b611b729190612e39565b1115611bb55760405162461bcd60e51b81526020600482015260126024820152714e6f206d6f7265204f472773206c6566742160701b6044820152606401610c4a565b600081118015611bc757506010548111155b611c135760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d696e74206c696d6974006044820152606401610c4a565b60125481611c2033611444565b611c2a9190612e39565b1115611c485760405162461bcd60e51b8152600401610c4a90612dae565b33611c5b6006546001600160a01b031690565b6001600160a01b03161480611c785750601954610100900460ff16155b611cb45760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d08191a5cd8589b1959609a1b6044820152606401610c4a565b81600d54611cc29190612e65565b34146116df5760405162461bcd60e51b8152600401610c4a90612ddb565b6006546001600160a01b03163314611d0a5760405162461bcd60e51b8152600401610c4a90612cfa565b6013805460ff19166001179055565b81600081118015611d2c57506011548111155b611d485760405162461bcd60e51b8152600401610c4a90612c95565b600e5481611d5560075490565b611d5f9190612e39565b1115611d7d5760405162461bcd60e51b8152600401610c4a90612d2f565b6006546001600160a01b03163314611da75760405162461bcd60e51b8152600401610c4a90612cfa565b610d8082846121d2565b6006546001600160a01b03163314611ddb5760405162461bcd60e51b8152600401610c4a90612cfa565b6001600160a01b038116611e405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c4a565b611e4981612180565b50565b6006546001600160a01b03163314611e765760405162461bcd60e51b8152600401610c4a90612cfa565b600f55565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611eb0826113cd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c4a565b6000611f6d836113cd565b9050806001600160a01b0316846001600160a01b03161480611fa85750836001600160a01b0316611f9d84610bd5565b6001600160a01b0316145b80611fd857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ff3826113cd565b6001600160a01b03161461205b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c4a565b6001600160a01b0382166120bd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c4a565b6120c8600082611e7b565b6001600160a01b03831660009081526003602052604081208054600192906120f1908490612e84565b90915550506001600160a01b038216600090815260036020526040812080546001929061211f908490612e39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610d80576121eb600780546001019055565b6121fd836121f860075490565b61241e565b8061220781612f02565b9150506121d5565b816001600160a01b0316836001600160a01b031614156122715760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c4a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122e9848484611fe0565b6122f584848484612438565b6117625760405162461bcd60e51b8152600401610c4a90612c43565b606060088054610b5290612ec7565b6060816123445750506040805180820190915260018152600360fc1b602082015290565b8160005b811561236e578061235881612f02565b91506123679050600a83612e51565b9150612348565b60008167ffffffffffffffff81111561238957612389612f73565b6040519080825280601f01601f1916602001820160405280156123b3576020820181803683370190505b5090505b8415611fd8576123c8600183612e84565b91506123d5600a86612f1d565b6123e0906030612e39565b60f81b8183815181106123f5576123f5612f5d565b60200101906001600160f81b031916908160001a905350612417600a86612e51565b94506123b7565b610dc2828260405180602001604052806000815250612545565b60006001600160a01b0384163b1561253a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061247c903390899088908890600401612baf565b602060405180830381600087803b15801561249657600080fd5b505af19250505080156124c6575060408051601f3d908101601f191682019092526124c391810190612a1d565b60015b612520573d8080156124f4576040519150601f19603f3d011682016040523d82523d6000602084013e6124f9565b606091505b5080516125185760405162461bcd60e51b8152600401610c4a90612c43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd8565b506001949350505050565b61254f8383612578565b61255c6000848484612438565b610d805760405162461bcd60e51b8152600401610c4a90612c43565b6001600160a01b0382166125ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c4a565b6000818152600260205260409020546001600160a01b0316156126335760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c4a565b6001600160a01b038216600090815260036020526040812080546001929061265c908490612e39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546126c690612ec7565b90600052602060002090601f0160209004810192826126e8576000855561272e565b82601f1061270157805160ff191683800117855561272e565b8280016001018555821561272e579182015b8281111561272e578251825591602001919060010190612713565b5061273a92915061273e565b5090565b5b8082111561273a576000815560010161273f565b600067ffffffffffffffff83111561276d5761276d612f73565b612780601f8401601f1916602001612e08565b905082815283838301111561279457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146127c257600080fd5b919050565b803580151581146127c257600080fd5b6000602082840312156127e957600080fd5b611a74826127ab565b6000806040838503121561280557600080fd5b61280e836127ab565b915061281c602084016127ab565b90509250929050565b60008060006060848603121561283a57600080fd5b612843846127ab565b9250612851602085016127ab565b9150604084013590509250925092565b6000806000806080858703121561287757600080fd5b612880856127ab565b935061288e602086016127ab565b925060408501359150606085013567ffffffffffffffff8111156128b157600080fd5b8501601f810187136128c257600080fd5b6128d187823560208401612753565b91505092959194509250565b600080604083850312156128f057600080fd5b6128f9836127ab565b915061281c602084016127c7565b6000806040838503121561291a57600080fd5b612923836127ab565b946020939093013593505050565b6000602080838503121561294457600080fd5b823567ffffffffffffffff8082111561295c57600080fd5b818501915085601f83011261297057600080fd5b81358181111561298257612982612f73565b8060051b9150612993848301612e08565b8181528481019084860184860187018a10156129ae57600080fd5b600095505b838610156129d8576129c4816127ab565b8352600195909501949186019186016129b3565b5098975050505050505050565b6000602082840312156129f757600080fd5b611a74826127c7565b600060208284031215612a1257600080fd5b8135611a7481612f89565b600060208284031215612a2f57600080fd5b8151611a7481612f89565b600060208284031215612a4c57600080fd5b813567ffffffffffffffff811115612a6357600080fd5b8201601f81018413612a7457600080fd5b611fd884823560208401612753565b600060208284031215612a9557600080fd5b5035919050565b60008060408385031215612aaf57600080fd5b8235915061281c602084016127ab565b60008151808452612ad7816020860160208601612e9b565b601f01601f19169290920160200192915050565b600084516020612afe8285838a01612e9b565b855191840191612b118184848a01612e9b565b8554920191600090600181811c9080831680612b2e57607f831692505b858310811415612b4c57634e487b7160e01b85526022600452602485fd5b808015612b605760018114612b7157612b9e565b60ff19851688528388019550612b9e565b60008b81526020902060005b85811015612b965781548a820152908401908801612b7d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612be290830184612abf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c2457835183529284019291840191600101612c08565b50909695505050505050565b602081526000611a746020830184612abf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601d908201527f5468652073616c6520686173206e6f742073746172746564207965742e000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272141b19585cd948131bddd95c88105b5bdd5b9d606a1b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e3157612e31612f73565b604052919050565b60008219821115612e4c57612e4c612f31565b500190565b600082612e6057612e60612f47565b500490565b6000816000190483118215151615612e7f57612e7f612f31565b500290565b600082821015612e9657612e96612f31565b500390565b60005b83811015612eb6578181015183820152602001612e9e565b838111156117625750506000910152565b600181811c90821680612edb57607f821691505b60208210811415612efc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f1657612f16612f31565b5060010190565b600082612f2c57612f2c612f47565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e4957600080fdfea26469706673582212207e4a654a73153b7dfa7ee5739c87ad21bb76f8695b40b17c7bdca73add7e7a5764736f6c63430008070033697066733a2f2f516d575935594e34446e6238626a7a7255317a4b33716b3874357042434847757753674e537764427a67335248622f68696464656e2e6a736f6e

Deployed Bytecode

0x6080604052600436106103b85760003560e01c80636c2d3c4f116101f2578063ba1ba0ed1161010d578063d87a3aba116100a0578063ef368a3b1161006f578063ef368a3b14610a7c578063efbd73f414610a91578063f2fde38b14610ab1578063f6c03f4a14610ad157600080fd5b8063d87a3aba146109ea578063e0a8085314610a00578063e985e9c514610a20578063ec1f4f8414610a6957600080fd5b8063cfdb63ac116100dc578063cfdb63ac1461096e578063d1d192131461099e578063d304c4bc146109be578063d5abeb01146109d457600080fd5b8063ba1ba0ed1461090f578063bd8c540114610925578063c1c880e31461093b578063c87b56dd1461094e57600080fd5b80638da5cb5b11610185578063a22cb46511610154578063a22cb4651461089a578063a45ba8e7146108ba578063b071401b146108cf578063b88d4fde146108ef57600080fd5b80638da5cb5b1461083e57806394354fd01461085c57806395d89b4114610872578063a0712d681461088757600080fd5b806378e97925116101c157806378e97925146107c85780637ec4a659146107de57806383ccaef7146107fe5780638a710eb01461081e57600080fd5b80636c2d3c4f1461076757806370a082311461077d578063715018a61461079d57806373e4b7ce146107b257600080fd5b806333241b8d116102e257806349b1daa7116102755780635c975abb116102445780635c975abb146106f957806362b99ad4146107135780636352211e146107285780636571835c1461074857600080fd5b806349b1daa71461068e5780634fdd43cb146106a457806351830227146106c45780635503a0e8146106e457600080fd5b806342842e0e116102b157806342842e0e14610601578063438b63001461062157806344a0d68a1461064e578063457d338a1461066e57600080fd5b806333241b8d146105b75780633ccfd60b146105cc5780633e0a322d146105e15780633e9661161461050757600080fd5b806318160ddd1161035a57806323b872dd1161032957806323b872dd1461053d578063287930841461055d5780632d12cc741461057d5780632e4355cd1461059d57600080fd5b806318160ddd146104d25780631ef4ed85146104e7578063203b158114610507578063226f5dcd1461052757600080fd5b8063095ea7b311610396578063095ea7b31461044c57806313faede61461046e57806316ba10e01461049257806316c38b3c146104b257600080fd5b806301ffc9a7146103bd57806306fdde03146103f2578063081812fc14610414575b600080fd5b3480156103c957600080fd5b506103dd6103d8366004612a00565b610af1565b60405190151581526020015b60405180910390f35b3480156103fe57600080fd5b50610407610b43565b6040516103e99190612c30565b34801561042057600080fd5b5061043461042f366004612a83565b610bd5565b6040516001600160a01b0390911681526020016103e9565b34801561045857600080fd5b5061046c610467366004612907565b610c6f565b005b34801561047a57600080fd5b50610484600b5481565b6040519081526020016103e9565b34801561049e57600080fd5b5061046c6104ad366004612a3a565b610d85565b3480156104be57600080fd5b5061046c6104cd3660046129e5565b610dc6565b3480156104de57600080fd5b50610484610e03565b3480156104f357600080fd5b5061046c610502366004612a83565b610e13565b34801561051357600080fd5b5061046c610522366004612a83565b610e42565b34801561053357600080fd5b5061048460185481565b34801561054957600080fd5b5061046c610558366004612825565b610e71565b34801561056957600080fd5b5061046c610578366004612931565b610ea2565b34801561058957600080fd5b5061046c6105983660046127d7565b610fb0565b3480156105a957600080fd5b506013546103dd9060ff1681565b3480156105c357600080fd5b5061046c610ffe565b3480156105d857600080fd5b5061046c611034565b3480156105ed57600080fd5b5061046c6105fc366004612a83565b611157565b34801561060d57600080fd5b5061046c61061c366004612825565b611186565b34801561062d57600080fd5b5061064161063c3660046127d7565b6111a1565b6040516103e99190612bec565b34801561065a57600080fd5b5061046c610669366004612a83565b611282565b34801561067a57600080fd5b5061046c6106893660046129e5565b6112b1565b34801561069a57600080fd5b50610484600f5481565b3480156106b057600080fd5b5061046c6106bf366004612a3a565b6112f5565b3480156106d057600080fd5b506019546103dd9062010000900460ff1681565b3480156106f057600080fd5b50610407611332565b34801561070557600080fd5b506019546103dd9060ff1681565b34801561071f57600080fd5b506104076113c0565b34801561073457600080fd5b50610434610743366004612a83565b6113cd565b34801561075457600080fd5b506019546103dd90610100900460ff1681565b34801561077357600080fd5b50610484600c5481565b34801561078957600080fd5b506104846107983660046127d7565b611444565b3480156107a957600080fd5b5061046c6114cb565b3480156107be57600080fd5b5061048460165481565b3480156107d457600080fd5b5061048460155481565b3480156107ea57600080fd5b5061046c6107f9366004612a3a565b611501565b34801561080a57600080fd5b5061046c610819366004612a83565b61153e565b34801561082a57600080fd5b5061046c610839366004612a83565b61156d565b34801561084a57600080fd5b506006546001600160a01b0316610434565b34801561086857600080fd5b5061048460115481565b34801561087e57600080fd5b5061040761159c565b61046c610895366004612a83565b6115ab565b3480156108a657600080fd5b5061046c6108b53660046128dd565b6116e9565b3480156108c657600080fd5b506104076116f4565b3480156108db57600080fd5b5061046c6108ea366004612a83565b611701565b3480156108fb57600080fd5b5061046c61090a366004612861565b611730565b34801561091b57600080fd5b5061048460105481565b34801561093157600080fd5b50610484600d5481565b61046c610949366004612a83565b611768565b34801561095a57600080fd5b50610407610969366004612a83565b6118fb565b34801561097a57600080fd5b506103dd6109893660046127d7565b60146020526000908152604090205460ff1681565b3480156109aa57600080fd5b5061046c6109b9366004612a83565b611a7b565b3480156109ca57600080fd5b5061048460125481565b3480156109e057600080fd5b50610484600e5481565b3480156109f657600080fd5b5061048460175481565b348015610a0c57600080fd5b5061046c610a1b3660046129e5565b611aaa565b348015610a2c57600080fd5b506103dd610a3b3660046127f2565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b61046c610a77366004612a83565b611af0565b348015610a8857600080fd5b5061046c611ce0565b348015610a9d57600080fd5b5061046c610aac366004612a9c565b611d19565b348015610abd57600080fd5b5061046c610acc3660046127d7565b611db1565b348015610add57600080fd5b5061046c610aec366004612a83565b611e4c565b60006001600160e01b031982166380ac58cd60e01b1480610b2257506001600160e01b03198216635b5e139f60e01b145b80610b3d57506301ffc9a760e01b6001600160e01b03198316145b92915050565b606060008054610b5290612ec7565b80601f0160208091040260200160405190810160405280929190818152602001828054610b7e90612ec7565b8015610bcb5780601f10610ba057610100808354040283529160200191610bcb565b820191906000526020600020905b815481529060010190602001808311610bae57829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610c535760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b6000610c7a826113cd565b9050806001600160a01b0316836001600160a01b03161415610ce85760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b6064820152608401610c4a565b336001600160a01b0382161480610d045750610d048133610a3b565b610d765760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006064820152608401610c4a565b610d808383611e7b565b505050565b6006546001600160a01b03163314610daf5760405162461bcd60e51b8152600401610c4a90612cfa565b8051610dc29060099060208401906126ba565b5050565b6006546001600160a01b03163314610df05760405162461bcd60e51b8152600401610c4a90612cfa565b6019805460ff1916911515919091179055565b6000610e0e60075490565b905090565b6006546001600160a01b03163314610e3d5760405162461bcd60e51b8152600401610c4a90612cfa565b601055565b6006546001600160a01b03163314610e6c5760405162461bcd60e51b8152600401610c4a90612cfa565b601655565b610e7b3382611ee9565b610e975760405162461bcd60e51b8152600401610c4a90612d5d565b610d80838383611fe0565b6006546001600160a01b03163314610ecc5760405162461bcd60e51b8152600401610c4a90612cfa565b60005b8151811015610dc25760006001600160a01b0316828281518110610ef557610ef5612f5d565b60200260200101516001600160a01b03161415610f545760405162461bcd60e51b815260206004820152601a60248201527f43616e27742061646420746865206e756c6c20616464726573730000000000006044820152606401610c4a565b600160146000848481518110610f6c57610f6c612f5d565b6020908102919091018101516001600160a01b03168252810191909152604001600020805460ff191691151591909117905580610fa881612f02565b915050610ecf565b6006546001600160a01b03163314610fda5760405162461bcd60e51b8152600401610c4a90612cfa565b6001600160a01b03166000908152601460205260409020805460ff19166001179055565b6006546001600160a01b031633146110285760405162461bcd60e51b8152600401610c4a90612cfa565b6013805460ff19169055565b6006546001600160a01b0316331480611060575073fc23f7de56685a65b8a13cb79f20c08ab8564e2633145b61106957600080fd5b600073fc23f7de56685a65b8a13cb79f20c08ab8564e26606461108d47605a612e65565b6110979190612e51565b604051600081818185875af1925050503d80600081146110d3576040519150601f19603f3d011682016040523d82523d6000602084013e6110d8565b606091505b50509050806110e657600080fd5b60006110fa6006546001600160a01b031690565b6001600160a01b03164760405160006040518083038185875af1925050503d8060008114611144576040519150601f19603f3d011682016040523d82523d6000602084013e611149565b606091505b5050905080610dc257600080fd5b6006546001600160a01b031633146111815760405162461bcd60e51b8152600401610c4a90612cfa565b601555565b610d8083838360405180602001604052806000815250611730565b606060006111ae83611444565b905060008167ffffffffffffffff8111156111cb576111cb612f73565b6040519080825280602002602001820160405280156111f4578160200160208202803683370190505b509050600160005b838110801561120d5750600e548211155b1561127857600061121d836113cd565b9050866001600160a01b0316816001600160a01b03161415611265578284838151811061124c5761124c612f5d565b60209081029190910101528161126181612f02565b9250505b8261126f81612f02565b935050506111fc565b5090949350505050565b6006546001600160a01b031633146112ac5760405162461bcd60e51b8152600401610c4a90612cfa565b600b55565b6006546001600160a01b031633146112db5760405162461bcd60e51b8152600401610c4a90612cfa565b601980549115156101000261ff0019909216919091179055565b6006546001600160a01b0316331461131f5760405162461bcd60e51b8152600401610c4a90612cfa565b8051610dc290600a9060208401906126ba565b6009805461133f90612ec7565b80601f016020809104026020016040519081016040528092919081815260200182805461136b90612ec7565b80156113b85780601f1061138d576101008083540402835291602001916113b8565b820191906000526020600020905b81548152906001019060200180831161139b57829003601f168201915b505050505081565b6008805461133f90612ec7565b6000818152600260205260408120546001600160a01b031680610b3d5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b6064820152608401610c4a565b60006001600160a01b0382166114af5760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b6064820152608401610c4a565b506001600160a01b031660009081526003602052604090205490565b6006546001600160a01b031633146114f55760405162461bcd60e51b8152600401610c4a90612cfa565b6114ff6000612180565b565b6006546001600160a01b0316331461152b5760405162461bcd60e51b8152600401610c4a90612cfa565b8051610dc29060089060208401906126ba565b6006546001600160a01b031633146115685760405162461bcd60e51b8152600401610c4a90612cfa565b601255565b6006546001600160a01b031633146115975760405162461bcd60e51b8152600401610c4a90612cfa565b601855565b606060018054610b5290612ec7565b806000811180156115be57506011548111155b6115da5760405162461bcd60e51b8152600401610c4a90612c95565b600e54816115e760075490565b6115f19190612e39565b111561160f5760405162461bcd60e51b8152600401610c4a90612d2f565b60195460ff161561165c5760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610c4a565b81600b5461166a9190612e65565b34146116885760405162461bcd60e51b8152600401610c4a90612ddb565b6015544210156116aa5760405162461bcd60e51b8152600401610c4a90612cc3565b601254826116b733611444565b6116c19190612e39565b11156116df5760405162461bcd60e51b8152600401610c4a90612dae565b610dc233836121d2565b610dc233838361220f565b600a805461133f90612ec7565b6006546001600160a01b0316331461172b5760405162461bcd60e51b8152600401610c4a90612cfa565b601155565b61173a3383611ee9565b6117565760405162461bcd60e51b8152600401610c4a90612d5d565b611762848484846122de565b50505050565b8060008111801561177b57506011548111155b6117975760405162461bcd60e51b8152600401610c4a90612c95565b600e54816117a460075490565b6117ae9190612e39565b11156117cc5760405162461bcd60e51b8152600401610c4a90612d2f565b6018544210156117ee5760405162461bcd60e51b8152600401610c4a90612cc3565b601254816117fb33611444565b6118059190612e39565b11156118235760405162461bcd60e51b8152600401610c4a90612dae565b60135460ff16156118705760405162461bcd60e51b815260206004820152601760248201527654686520636f6e7472616374206973207061757365642160481b6044820152606401610c4a565b81600c5461187e9190612e65565b341461189c5760405162461bcd60e51b8152600401610c4a90612ddb565b3360009081526014602052604090205460ff166116df5760405162461bcd60e51b815260206004820152601d60248201527f596f7520617265206e6f74206f6e20746865202057686974654c6973740000006044820152606401610c4a565b6000818152600260205260409020546060906001600160a01b031661197a5760405162461bcd60e51b815260206004820152602f60248201527f4552433732314d657461646174613a2055524920717565727920666f72206e6f60448201526e3732bc34b9ba32b73a103a37b5b2b760891b6064820152608401610c4a565b60195462010000900460ff16611a1c57600a805461199790612ec7565b80601f01602080910402602001604051908101604052809291908181526020018280546119c390612ec7565b8015611a105780601f106119e557610100808354040283529160200191611a10565b820191906000526020600020905b8154815290600101906020018083116119f357829003601f168201915b50505050509050919050565b6000611a26612311565b90506000815111611a465760405180602001604052806000815250611a74565b80611a5084612320565b6009604051602001611a6493929190612aeb565b6040516020818303038152906040525b9392505050565b6006546001600160a01b03163314611aa55760405162461bcd60e51b8152600401610c4a90612cfa565b600c55565b6006546001600160a01b03163314611ad45760405162461bcd60e51b8152600401610c4a90612cfa565b60198054911515620100000262ff000019909216919091179055565b80601654421015611b135760405162461bcd60e51b8152600401610c4a90612cc3565b601754421115611b5b5760405162461bcd60e51b81526020600482015260136024820152722a34329039b0b632903430b99032b73232b21760691b6044820152606401610c4a565b600f5481611b6860075490565b611b729190612e39565b1115611bb55760405162461bcd60e51b81526020600482015260126024820152714e6f206d6f7265204f472773206c6566742160701b6044820152606401610c4a565b600081118015611bc757506010548111155b611c135760405162461bcd60e51b815260206004820152601f60248201527f43616e2774206d696e74206d6f7265207468616e206d696e74206c696d6974006044820152606401610c4a565b60125481611c2033611444565b611c2a9190612e39565b1115611c485760405162461bcd60e51b8152600401610c4a90612dae565b33611c5b6006546001600160a01b031690565b6001600160a01b03161480611c785750601954610100900460ff16155b611cb45760405162461bcd60e51b815260206004820152600d60248201526c135a5b9d08191a5cd8589b1959609a1b6044820152606401610c4a565b81600d54611cc29190612e65565b34146116df5760405162461bcd60e51b8152600401610c4a90612ddb565b6006546001600160a01b03163314611d0a5760405162461bcd60e51b8152600401610c4a90612cfa565b6013805460ff19166001179055565b81600081118015611d2c57506011548111155b611d485760405162461bcd60e51b8152600401610c4a90612c95565b600e5481611d5560075490565b611d5f9190612e39565b1115611d7d5760405162461bcd60e51b8152600401610c4a90612d2f565b6006546001600160a01b03163314611da75760405162461bcd60e51b8152600401610c4a90612cfa565b610d8082846121d2565b6006546001600160a01b03163314611ddb5760405162461bcd60e51b8152600401610c4a90612cfa565b6001600160a01b038116611e405760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b6064820152608401610c4a565b611e4981612180565b50565b6006546001600160a01b03163314611e765760405162461bcd60e51b8152600401610c4a90612cfa565b600f55565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190611eb0826113cd565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b0316611f625760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b6064820152608401610c4a565b6000611f6d836113cd565b9050806001600160a01b0316846001600160a01b03161480611fa85750836001600160a01b0316611f9d84610bd5565b6001600160a01b0316145b80611fd857506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b0316611ff3826113cd565b6001600160a01b03161461205b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b6064820152608401610c4a565b6001600160a01b0382166120bd5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b6064820152608401610c4a565b6120c8600082611e7b565b6001600160a01b03831660009081526003602052604081208054600192906120f1908490612e84565b90915550506001600160a01b038216600090815260036020526040812080546001929061211f908490612e39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600680546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b60005b81811015610d80576121eb600780546001019055565b6121fd836121f860075490565b61241e565b8061220781612f02565b9150506121d5565b816001600160a01b0316836001600160a01b031614156122715760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c6572000000000000006044820152606401610c4a565b6001600160a01b03838116600081815260056020908152604080832094871680845294825291829020805460ff191686151590811790915591519182527f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a3505050565b6122e9848484611fe0565b6122f584848484612438565b6117625760405162461bcd60e51b8152600401610c4a90612c43565b606060088054610b5290612ec7565b6060816123445750506040805180820190915260018152600360fc1b602082015290565b8160005b811561236e578061235881612f02565b91506123679050600a83612e51565b9150612348565b60008167ffffffffffffffff81111561238957612389612f73565b6040519080825280601f01601f1916602001820160405280156123b3576020820181803683370190505b5090505b8415611fd8576123c8600183612e84565b91506123d5600a86612f1d565b6123e0906030612e39565b60f81b8183815181106123f5576123f5612f5d565b60200101906001600160f81b031916908160001a905350612417600a86612e51565b94506123b7565b610dc2828260405180602001604052806000815250612545565b60006001600160a01b0384163b1561253a57604051630a85bd0160e11b81526001600160a01b0385169063150b7a029061247c903390899088908890600401612baf565b602060405180830381600087803b15801561249657600080fd5b505af19250505080156124c6575060408051601f3d908101601f191682019092526124c391810190612a1d565b60015b612520573d8080156124f4576040519150601f19603f3d011682016040523d82523d6000602084013e6124f9565b606091505b5080516125185760405162461bcd60e51b8152600401610c4a90612c43565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611fd8565b506001949350505050565b61254f8383612578565b61255c6000848484612438565b610d805760405162461bcd60e51b8152600401610c4a90612c43565b6001600160a01b0382166125ce5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f20616464726573736044820152606401610c4a565b6000818152600260205260409020546001600160a01b0316156126335760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006044820152606401610c4a565b6001600160a01b038216600090815260036020526040812080546001929061265c908490612e39565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b8280546126c690612ec7565b90600052602060002090601f0160209004810192826126e8576000855561272e565b82601f1061270157805160ff191683800117855561272e565b8280016001018555821561272e579182015b8281111561272e578251825591602001919060010190612713565b5061273a92915061273e565b5090565b5b8082111561273a576000815560010161273f565b600067ffffffffffffffff83111561276d5761276d612f73565b612780601f8401601f1916602001612e08565b905082815283838301111561279457600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b03811681146127c257600080fd5b919050565b803580151581146127c257600080fd5b6000602082840312156127e957600080fd5b611a74826127ab565b6000806040838503121561280557600080fd5b61280e836127ab565b915061281c602084016127ab565b90509250929050565b60008060006060848603121561283a57600080fd5b612843846127ab565b9250612851602085016127ab565b9150604084013590509250925092565b6000806000806080858703121561287757600080fd5b612880856127ab565b935061288e602086016127ab565b925060408501359150606085013567ffffffffffffffff8111156128b157600080fd5b8501601f810187136128c257600080fd5b6128d187823560208401612753565b91505092959194509250565b600080604083850312156128f057600080fd5b6128f9836127ab565b915061281c602084016127c7565b6000806040838503121561291a57600080fd5b612923836127ab565b946020939093013593505050565b6000602080838503121561294457600080fd5b823567ffffffffffffffff8082111561295c57600080fd5b818501915085601f83011261297057600080fd5b81358181111561298257612982612f73565b8060051b9150612993848301612e08565b8181528481019084860184860187018a10156129ae57600080fd5b600095505b838610156129d8576129c4816127ab565b8352600195909501949186019186016129b3565b5098975050505050505050565b6000602082840312156129f757600080fd5b611a74826127c7565b600060208284031215612a1257600080fd5b8135611a7481612f89565b600060208284031215612a2f57600080fd5b8151611a7481612f89565b600060208284031215612a4c57600080fd5b813567ffffffffffffffff811115612a6357600080fd5b8201601f81018413612a7457600080fd5b611fd884823560208401612753565b600060208284031215612a9557600080fd5b5035919050565b60008060408385031215612aaf57600080fd5b8235915061281c602084016127ab565b60008151808452612ad7816020860160208601612e9b565b601f01601f19169290920160200192915050565b600084516020612afe8285838a01612e9b565b855191840191612b118184848a01612e9b565b8554920191600090600181811c9080831680612b2e57607f831692505b858310811415612b4c57634e487b7160e01b85526022600452602485fd5b808015612b605760018114612b7157612b9e565b60ff19851688528388019550612b9e565b60008b81526020902060005b85811015612b965781548a820152908401908801612b7d565b505083880195505b50939b9a5050505050505050505050565b6001600160a01b0385811682528416602082015260408101839052608060608201819052600090612be290830184612abf565b9695505050505050565b6020808252825182820181905260009190848201906040850190845b81811015612c2457835183529284019291840191600101612c08565b50909695505050505050565b602081526000611a746020830184612abf565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b602080825260149082015273496e76616c6964206d696e7420616d6f756e742160601b604082015260600190565b6020808252601d908201527f5468652073616c6520686173206e6f742073746172746564207965742e000000604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252601490820152734d617820737570706c792065786365656465642160601b604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b602080825260139082015272141b19585cd948131bddd95c88105b5bdd5b9d606a1b604082015260600190565b602080825260139082015272496e73756666696369656e742066756e64732160681b604082015260600190565b604051601f8201601f1916810167ffffffffffffffff81118282101715612e3157612e31612f73565b604052919050565b60008219821115612e4c57612e4c612f31565b500190565b600082612e6057612e60612f47565b500490565b6000816000190483118215151615612e7f57612e7f612f31565b500290565b600082821015612e9657612e96612f31565b500390565b60005b83811015612eb6578181015183820152602001612e9e565b838111156117625750506000910152565b600181811c90821680612edb57607f821691505b60208210811415612efc57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415612f1657612f16612f31565b5060010190565b600082612f2c57612f2c612f47565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b031981168114611e4957600080fdfea26469706673582212207e4a654a73153b7dfa7ee5739c87ad21bb76f8695b40b17c7bdca73add7e7a5764736f6c63430008070033

Deployed Bytecode Sourcemap

31724:7810:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24551:305;;;;;;;;;;-1:-1:-1;24551:305:0;;;;;:::i;:::-;;:::i;:::-;;;8809:14:1;;8802:22;8784:41;;8772:2;8757:18;24551:305:0;;;;;;;;25321:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26390:219::-;;;;;;;;;;-1:-1:-1;26390:219:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7470:32:1;;;7452:51;;7440:2;7425:18;26390:219:0;7306:203:1;25977:407:0;;;;;;;;;;-1:-1:-1;25977:407:0;;;;;:::i;:::-;;:::i;:::-;;32018:32;;;;;;;;;;;;;;;;;;;19802:25:1;;;19790:2;19775:18;32018:32:0;19656:177:1;38557:100:0;;;;;;;;;;-1:-1:-1;38557:100:0;;;;;:::i;:::-;;:::i;38663:77::-;;;;;;;;;;-1:-1:-1;38663:77:0;;;;;:::i;:::-;;:::i;34645:89::-;;;;;;;;;;;;;:::i;34208:105::-;;;;;;;;;;-1:-1:-1;34208:105:0;;;;;:::i;:::-;;:::i;34097:103::-;;;;;;;;;;-1:-1:-1;34097:103:0;;;;;:::i;:::-;;:::i;32538:40::-;;;;;;;;;;;;;;;;26946:284;;;;;;;;;;-1:-1:-1;26946:284:0;;;;;:::i;:::-;;:::i;35168:292::-;;;;;;;;;;-1:-1:-1;35168:292:0;;;;;:::i;:::-;;:::i;35063:99::-;;;;;;;;;;-1:-1:-1;35063:99:0;;;;;:::i;:::-;;:::i;32321:35::-;;;;;;;;;;-1:-1:-1;32321:35:0;;;;;;;;34838:95;;;;;;;;;;;;;:::i;38833:378::-;;;;;;;;;;;;;:::i;33989:100::-;;;;;;;;;;-1:-1:-1;33989:100:0;;;;;:::i;:::-;;:::i;27236:185::-;;;;;;;;;;-1:-1:-1;27236:185:0;;;;;:::i;:::-;;:::i;36781:635::-;;;;;;;;;;-1:-1:-1;36781:635:0;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;38009:74::-;;;;;;;;;;-1:-1:-1;38009:74:0;;;;;:::i;:::-;;:::i;38746:81::-;;;;;;;;;;-1:-1:-1;38746:81:0;;;;;:::i;:::-;;:::i;32169:29::-;;;;;;;;;;;;;;;;38313:132;;;;;;;;;;-1:-1:-1;38313:132:0;;;;;:::i;:::-;;:::i;32645:28::-;;;;;;;;;;-1:-1:-1;32645:28:0;;;;;;;;;;;31940:33;;;;;;;;;;;;;:::i;32583:25::-;;;;;;;;;;-1:-1:-1;32583:25:0;;;;;;;;31907:28;;;;;;;;;;;;;:::i;25076:239::-;;;;;;;;;;-1:-1:-1;25076:239:0;;;;;:::i;:::-;;:::i;32613:27::-;;;;;;;;;;-1:-1:-1;32613:27:0;;;;;;;;;;;32055:34;;;;;;;;;;;;;;;;24862:208;;;;;;;;;;-1:-1:-1;24862:208:0;;;;;:::i;:::-;;:::i;6234:103::-;;;;;;;;;;;;;:::i;32452:39::-;;;;;;;;;;;;;;;;32410:37;;;;;;;;;;;;;;;;38451:100;;;;;;;;;;-1:-1:-1;38451:100:0;;;;;:::i;:::-;;:::i;34939:118::-;;;;;;;;;;-1:-1:-1;34939:118:0;;;;;:::i;:::-;;:::i;34532:107::-;;;;;;;;;;-1:-1:-1;34532:107:0;;;;;:::i;:::-;;:::i;5583:87::-;;;;;;;;;;-1:-1:-1;5656:6:0;;-1:-1:-1;;;;;5656:6:0;5583:87;;32239:37;;;;;;;;;;;;;;;;25427:104;;;;;;;;;;;;;:::i;35579:411::-;;;;;;:::i;:::-;;:::i;26615:155::-;;;;;;;;;;-1:-1:-1;26615:155:0;;;;;:::i;:::-;;:::i;31978:31::-;;;;;;;;;;;;;:::i;38177:130::-;;;;;;;;;;-1:-1:-1;38177:130:0;;;;;:::i;:::-;;:::i;27427:328::-;;;;;;;;;;-1:-1:-1;27427:328:0;;;;;:::i;:::-;;:::i;32203:31::-;;;;;;;;;;;;;;;;32094:34;;;;;;;;;;;;;;;;36274:338;;;;;;:::i;:::-;;:::i;37422:494::-;;;;;;;;;;-1:-1:-1;37422:494:0;;;;;:::i;:::-;;:::i;32361:42::-;;;;;;;;;;-1:-1:-1;32361:42:0;;;;;:::i;:::-;;;;;;;;;;;;;;;;38089:82;;;;;;;;;;-1:-1:-1;38089:82:0;;;;;:::i;:::-;;:::i;32281:33::-;;;;;;;;;;;;;;;;32133:31;;;;;;;;;;;;;;;;32496:37;;;;;;;;;;;;;;;;37922:81;;;;;;;;;;-1:-1:-1;37922:81:0;;;;;:::i;:::-;;:::i;26776:164::-;;;;;;;;;;-1:-1:-1;26776:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26897:25:0;;;26873:4;26897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26776:164;35998:268;;;;;;:::i;:::-;;:::i;34740:92::-;;;;;;;;;;;;;:::i;36620:155::-;;;;;;;;;;-1:-1:-1;36620:155:0;;;;;:::i;:::-;;:::i;6492:201::-;;;;;;;;;;-1:-1:-1;6492:201:0;;;;;:::i;:::-;;:::i;34321:93::-;;;;;;;;;;-1:-1:-1;34321:93:0;;;;;:::i;:::-;;:::i;24551:305::-;24653:4;-1:-1:-1;;;;;;24690:40:0;;-1:-1:-1;;;24690:40:0;;:105;;-1:-1:-1;;;;;;;24747:48:0;;-1:-1:-1;;;24747:48:0;24690:105;:158;;;-1:-1:-1;;;;;;;;;;18124:40:0;;;24812:36;24670:178;24551:305;-1:-1:-1;;24551:305:0:o;25321:100::-;25375:13;25408:5;25401:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25321:100;:::o;26390:219::-;26466:7;28171:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28171:16:0;26486:73;;;;-1:-1:-1;;;26486:73:0;;15344:2:1;26486:73:0;;;15326:21:1;15383:2;15363:18;;;15356:30;15422:34;15402:18;;;15395:62;-1:-1:-1;;;15473:18:1;;;15466:42;15525:19;;26486:73:0;;;;;;;;;-1:-1:-1;26577:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26577:24:0;;26390:219::o;25977:407::-;26058:13;26074:23;26089:7;26074:14;:23::i;:::-;26058:39;;26122:5;-1:-1:-1;;;;;26116:11:0;:2;-1:-1:-1;;;;;26116:11:0;;;26108:57;;;;-1:-1:-1;;;26108:57:0;;17651:2:1;26108:57:0;;;17633:21:1;17690:2;17670:18;;;17663:30;17729:34;17709:18;;;17702:62;-1:-1:-1;;;17780:18:1;;;17773:31;17821:19;;26108:57:0;17449:397:1;26108:57:0;4387:10;-1:-1:-1;;;;;26198:21:0;;;;:62;;-1:-1:-1;26223:37:0;26240:5;4387:10;26776:164;:::i;26223:37::-;26176:168;;;;-1:-1:-1;;;26176:168:0;;12671:2:1;26176:168:0;;;12653:21:1;12710:2;12690:18;;;12683:30;12749:34;12729:18;;;12722:62;12820:26;12800:18;;;12793:54;12864:19;;26176:168:0;12469:420:1;26176:168:0;26355:21;26364:2;26368:7;26355:8;:21::i;:::-;26047:337;25977:407;;:::o;38557:100::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;38629:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;:::-;;38557:100:::0;:::o;38663:77::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;38719:6:::1;:15:::0;;-1:-1:-1;;38719:15:0::1;::::0;::::1;;::::0;;;::::1;::::0;;38663:77::o;34645:89::-;34689:7;34712:16;:6;1003:14;;911:114;34712:16;34705:23;;34645:89;:::o;34208:105::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;34283:12:::1;:26:::0;34208:105::o;34097:103::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;34170:11:::1;:26:::0;34097:103::o;26946:284::-;27088:41;4387:10;27121:7;27088:18;:41::i;:::-;27080:103;;;;-1:-1:-1;;;27080:103:0;;;;;;;:::i;:::-;27194:28;27204:4;27210:2;27214:7;27194:9;:28::i;35168:292::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;35263:9:::1;35258:193;35282:9;:16;35278:1;:20;35258:193;;;35350:1;-1:-1:-1::0;;;;;35326:26:0::1;:9;35336:1;35326:12;;;;;;;;:::i;:::-;;;;;;;-1:-1:-1::0;;;;;35326:26:0::1;;;35318:65;;;::::0;-1:-1:-1;;;35318:65:0;;16118:2:1;35318:65:0::1;::::0;::::1;16100:21:1::0;16157:2;16137:18;;;16130:30;16196:28;16176:18;;;16169:56;16242:18;;35318:65:0::1;15916:350:1::0;35318:65:0::1;35423:4;35396:10;:24;35407:9;35417:1;35407:12;;;;;;;;:::i;:::-;;::::0;;::::1;::::0;;;;;;;-1:-1:-1;;;;;35396:24:0::1;::::0;;;::::1;::::0;;;;;;-1:-1:-1;35396:24:0;:31;;-1:-1:-1;;35396:31:0::1;::::0;::::1;;::::0;;;::::1;::::0;;35300:3;::::1;::::0;::::1;:::i;:::-;;;;35258:193;;35063:99:::0;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;35132:17:0::1;;::::0;;;:10:::1;:17;::::0;;;;:24;;-1:-1:-1;;35132:24:0::1;35152:4;35132:24;::::0;;35063:99::o;34838:95::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;34900:15:::1;:23:::0;;-1:-1:-1;;34900:23:0::1;::::0;;34838:95::o;38833:378::-;5656:6;;-1:-1:-1;;;;;5656:6:0;38877:10;:21;;:81;;-1:-1:-1;38916:42:0;38902:10;:56;38877:81;38869:90;;;;;;38967:7;38988:42;39073:3;39044:26;:21;39068:2;39044:26;:::i;:::-;:32;;;;:::i;:::-;38980:101;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38966:115;;;39096:2;39088:11;;;;;;39109:12;39135:7;5656:6;;-1:-1:-1;;;;;5656:6:0;;5583:87;39135:7;-1:-1:-1;;;;;39127:21:0;39156;39127:55;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39108:74;;;39197:7;39189:16;;;;;33989:100;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;34061:9:::1;:22:::0;33989:100::o;27236:185::-;27374:39;27391:4;27397:2;27401:7;27374:39;;;;;;;;;;;;:16;:39::i;36781:635::-;36856:16;36884:23;36910:17;36920:6;36910:9;:17::i;:::-;36884:43;;36934:30;36981:15;36967:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;36967:30:0;-1:-1:-1;36934:63:0;-1:-1:-1;37029:1:0;37004:22;37073:309;37098:15;37080;:33;:64;;;;;37135:9;;37117:14;:27;;37080:64;37073:309;;;37155:25;37183:23;37191:14;37183:7;:23::i;:::-;37155:51;;37242:6;-1:-1:-1;;;;;37221:27:0;:17;-1:-1:-1;;;;;37221:27:0;;37217:131;;;37294:14;37261:13;37275:15;37261:30;;;;;;;;:::i;:::-;;;;;;;;;;:47;37321:17;;;;:::i;:::-;;;;37217:131;37358:16;;;;:::i;:::-;;;;37146:236;37073:309;;;-1:-1:-1;37397:13:0;;36781:635;-1:-1:-1;;;;36781:635:0:o;38009:74::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;38065:4:::1;:12:::0;38009:74::o;38746:81::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;38804:8:::1;:17:::0;;;::::1;;;;-1:-1:-1::0;;38804:17:0;;::::1;::::0;;;::::1;::::0;;38746:81::o;38313:132::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;38401:38;;::::1;::::0;:17:::1;::::0;:38:::1;::::0;::::1;::::0;::::1;:::i;31940:33::-:0;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;31907:28::-;;;;;;;:::i;25076:239::-;25148:7;25184:16;;;:7;:16;;;;;;-1:-1:-1;;;;;25184:16:0;25219:19;25211:73;;;;-1:-1:-1;;;25211:73:0;;13867:2:1;25211:73:0;;;13849:21:1;13906:2;13886:18;;;13879:30;13945:34;13925:18;;;13918:62;-1:-1:-1;;;13996:18:1;;;13989:39;14045:19;;25211:73:0;13665:405:1;24862:208:0;24934:7;-1:-1:-1;;;;;24962:19:0;;24954:74;;;;-1:-1:-1;;;24954:74:0;;13456:2:1;24954:74:0;;;13438:21:1;13495:2;13475:18;;;13468:30;13534:34;13514:18;;;13507:62;-1:-1:-1;;;13585:18:1;;;13578:40;13635:19;;24954:74:0;13254:406:1;24954:74:0;-1:-1:-1;;;;;;25046:16:0;;;;;:9;:16;;;;;;;24862:208::o;6234:103::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;6299:30:::1;6326:1;6299:18;:30::i;:::-;6234:103::o:0;38451:100::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;38523:22;;::::1;::::0;:9:::1;::::0;:22:::1;::::0;::::1;::::0;::::1;:::i;34939:118::-:0;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;35019:14:::1;:32:::0;34939:118::o;34532:107::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;34607:12:::1;:26:::0;34532:107::o;25427:104::-;25483:13;25516:7;25509:14;;;;;:::i;35579:411::-;35644:11;32929:1;32915:11;:15;:52;;;;;32949:18;;32934:11;:33;;32915:52;32907:85;;;;-1:-1:-1;;;32907:85:0;;;;;;;:::i;:::-;33041:9;;33026:11;33007:16;:6;1003:14;;911:114;33007:16;:30;;;;:::i;:::-;:43;;32999:76;;;;-1:-1:-1;;;32999:76:0;;;;;;;:::i;:::-;35673:6:::1;::::0;::::1;;35672:7;35664:43;;;::::0;-1:-1:-1;;;35664:43:0;;16473:2:1;35664:43:0::1;::::0;::::1;16455:21:1::0;16512:2;16492:18;;;16485:30;-1:-1:-1;;;16531:18:1;;;16524:53;16594:18;;35664:43:0::1;16271:347:1::0;35664:43:0::1;35742:11;35735:4;;:18;;;;:::i;:::-;35722:9;:31;35714:63;;;;-1:-1:-1::0;;;35714:63:0::1;;;;;;;:::i;:::-;35811:9;;35792:15;:28;;35784:69;;;;-1:-1:-1::0;;;35784:69:0::1;;;;;;;:::i;:::-;35905:14;;35890:11;35868:21;35878:10;35868:9;:21::i;:::-;:33;;;;:::i;:::-;:51;;35860:83;;;;-1:-1:-1::0;;;35860:83:0::1;;;;;;;:::i;:::-;35950:34;35960:10;35972:11;35950:9;:34::i;26615:155::-:0;26710:52;4387:10;26743:8;26753;26710:18;:52::i;31978:31::-;;;;;;;:::i;38177:130::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;38261:18:::1;:40:::0;38177:130::o;27427:328::-;27602:41;4387:10;27635:7;27602:18;:41::i;:::-;27594:103;;;;-1:-1:-1;;;27594:103:0;;;;;;;:::i;:::-;27708:39;27722:4;27728:2;27732:7;27741:5;27708:13;:39::i;:::-;27427:328;;;;:::o;36274:338::-;36350:11;33652:1;33638:11;:15;:52;;;;;33672:18;;33657:11;:33;;33638:52;33630:85;;;;-1:-1:-1;;;33630:85:0;;;;;;;:::i;:::-;33764:9;;33749:11;33730:16;:6;1003:14;;911:114;33730:16;:30;;;;:::i;:::-;:43;;33722:76;;;;-1:-1:-1;;;33722:76:0;;;;;;;:::i;:::-;33832:12;;33813:15;:31;;33805:72;;;;-1:-1:-1;;;33805:72:0;;;;;;;:::i;:::-;33929:14;;33914:11;33892:21;33902:10;33892:9;:21::i;:::-;:33;;;;:::i;:::-;:51;;33884:83;;;;-1:-1:-1;;;33884:83:0;;;;;;;:::i;:::-;36379:15:::1;::::0;::::1;;36378:16;36370:52;;;::::0;-1:-1:-1;;;36370:52:0;;16473:2:1;36370:52:0::1;::::0;::::1;16455:21:1::0;16512:2;16492:18;;;16485:30;-1:-1:-1;;;16531:18:1;;;16524:53;16594:18;;36370:52:0::1;16271:347:1::0;36370:52:0::1;36459:11;36450:6;;:20;;;;:::i;:::-;36437:9;:33;36429:65;;;;-1:-1:-1::0;;;36429:65:0::1;;;;;;;:::i;:::-;36520:10;36509:22;::::0;;;:10:::1;:22;::::0;;;;;::::1;;36501:64;;;::::0;-1:-1:-1;;;36501:64:0;;9262:2:1;36501:64:0::1;::::0;::::1;9244:21:1::0;9301:2;9281:18;;;9274:30;9340:31;9320:18;;;9313:59;9389:18;;36501:64:0::1;9060:353:1::0;37422:494:0;28147:4;28171:16;;;:7;:16;;;;;;37521:13;;-1:-1:-1;;;;;28171:16:0;37546:98;;;;-1:-1:-1;;;37546:98:0;;17235:2:1;37546:98:0;;;17217:21:1;17274:2;17254:18;;;17247:30;17313:34;17293:18;;;17286:62;-1:-1:-1;;;17364:18:1;;;17357:45;17419:19;;37546:98:0;17033:411:1;37546:98:0;37657:8;;;;;;;37653:64;;37692:17;37685:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37422:494;;;:::o;37653:64::-;37725:28;37756:10;:8;:10::i;:::-;37725:41;;37811:1;37786:14;37780:28;:32;:130;;;;;;;;;;;;;;;;;37848:14;37864:19;:8;:17;:19::i;:::-;37885:9;37831:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;37780:130;37773:137;37422:494;-1:-1:-1;;;37422:494:0:o;38089:82::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;38149:6:::1;:16:::0;38089:82::o;37922:81::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;37980:8:::1;:17:::0;;;::::1;;::::0;::::1;-1:-1:-1::0;;37980:17:0;;::::1;::::0;;;::::1;::::0;;37922:81::o;35998:268::-;36067:11;33176;;33157:15;:30;;33149:71;;;;-1:-1:-1;;;33149:71:0;;;;;;;:::i;:::-;33254:9;;33235:15;:28;;33227:59;;;;-1:-1:-1;;;33227:59:0;;14277:2:1;33227:59:0;;;14259:21:1;14316:2;14296:18;;;14289:30;-1:-1:-1;;;14335:18:1;;;14328:49;14394:18;;33227:59:0;14075:343:1;33227:59:0;33335:9;;33320:11;33301:16;:6;1003:14;;911:114;33301:16;:30;;;;:::i;:::-;:43;;33293:74;;;;-1:-1:-1;;;33293:74:0;;9620:2:1;33293:74:0;;;9602:21:1;9659:2;9639:18;;;9632:30;-1:-1:-1;;;9678:18:1;;;9671:48;9736:18;;33293:74:0;9418:342:1;33293:74:0;33396:1;33382:11;:15;:46;;;;;33416:12;;33401:11;:27;;33382:46;33374:90;;;;-1:-1:-1;;;33374:90:0;;13096:2:1;33374:90:0;;;13078:21:1;13135:2;13115:18;;;13108:30;13174:33;13154:18;;;13147:61;13225:18;;33374:90:0;12894:355:1;33374:90:0;33516:14;;33501:11;33479:21;33489:10;33479:9;:21::i;:::-;:33;;;;:::i;:::-;:51;;33471:83;;;;-1:-1:-1;;;33471:83:0;;;;;;;:::i;:::-;36106:10:::1;36095:7;5656:6:::0;;-1:-1:-1;;;;;5656:6:0;;5583:87;36095:7:::1;-1:-1:-1::0;;;;;36095:21:0::1;;:34;;;-1:-1:-1::0;36121:8:0::1;::::0;::::1;::::0;::::1;;;36120:9;36095:34;36087:60;;;::::0;-1:-1:-1;;;36087:60:0;;18820:2:1;36087:60:0::1;::::0;::::1;18802:21:1::0;18859:2;18839:18;;;18832:30;-1:-1:-1;;;18878:18:1;;;18871:43;18931:18;;36087:60:0::1;18618:337:1::0;36087:60:0::1;36184:11;36175:6;;:20;;;;:::i;:::-;36162:9;:33;36154:65;;;;-1:-1:-1::0;;;36154:65:0::1;;;;;;;:::i;34740:92::-:0;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;34800:15:::1;:22:::0;;-1:-1:-1;;34800:22:0::1;34818:4;34800:22;::::0;;34740:92::o;36620:155::-;36706:11;32929:1;32915:11;:15;:52;;;;;32949:18;;32934:11;:33;;32915:52;32907:85;;;;-1:-1:-1;;;32907:85:0;;;;;;;:::i;:::-;33041:9;;33026:11;33007:16;:6;1003:14;;911:114;33007:16;:30;;;;:::i;:::-;:43;;32999:76;;;;-1:-1:-1;;;32999:76:0;;;;;;;:::i;:::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23:::1;5795:68;;;;-1:-1:-1::0;;;5795:68:0::1;;;;;;;:::i;:::-;36736:33:::2;36746:9;36757:11;36736:9;:33::i;6492:201::-:0;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;6581:22:0;::::1;6573:73;;;::::0;-1:-1:-1;;;6573:73:0;;10386:2:1;6573:73:0::1;::::0;::::1;10368:21:1::0;10425:2;10405:18;;;10398:30;10464:34;10444:18;;;10437:62;-1:-1:-1;;;10515:18:1;;;10508:36;10561:19;;6573:73:0::1;10184:402:1::0;6573:73:0::1;6657:28;6676:8;6657:18;:28::i;:::-;6492:201:::0;:::o;34321:93::-;5656:6;;-1:-1:-1;;;;;5656:6:0;4387:10;5803:23;5795:68;;;;-1:-1:-1;;;5795:68:0;;;;;;;:::i;:::-;34390:9:::1;:20:::0;34321:93::o;30248:174::-;30323:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;30323:29:0;-1:-1:-1;;;;;30323:29:0;;;;;;;;:24;;30377:23;30323:24;30377:14;:23::i;:::-;-1:-1:-1;;;;;30368:46:0;;;;;;;;;;;30248:174;;:::o;28215:348::-;28308:4;28171:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28171:16:0;28325:73;;;;-1:-1:-1;;;28325:73:0;;12258:2:1;28325:73:0;;;12240:21:1;12297:2;12277:18;;;12270:30;12336:34;12316:18;;;12309:62;-1:-1:-1;;;12387:18:1;;;12380:42;12439:19;;28325:73:0;12056:408:1;28325:73:0;28409:13;28425:23;28440:7;28425:14;:23::i;:::-;28409:39;;28478:5;-1:-1:-1;;;;;28467:16:0;:7;-1:-1:-1;;;;;28467:16:0;;:51;;;;28511:7;-1:-1:-1;;;;;28487:31:0;:20;28499:7;28487:11;:20::i;:::-;-1:-1:-1;;;;;28487:31:0;;28467:51;:87;;;-1:-1:-1;;;;;;26897:25:0;;;26873:4;26897:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;28522:32;28459:96;28215:348;-1:-1:-1;;;;28215:348:0:o;29724:518::-;29883:4;-1:-1:-1;;;;;29856:31:0;:23;29871:7;29856:14;:23::i;:::-;-1:-1:-1;;;;;29856:31:0;;29848:85;;;;-1:-1:-1;;;29848:85:0;;16825:2:1;29848:85:0;;;16807:21:1;16864:2;16844:18;;;16837:30;16903:34;16883:18;;;16876:62;-1:-1:-1;;;16954:18:1;;;16947:39;17003:19;;29848:85:0;16623:405:1;29848:85:0;-1:-1:-1;;;;;29952:16:0;;29944:65;;;;-1:-1:-1;;;29944:65:0;;11499:2:1;29944:65:0;;;11481:21:1;11538:2;11518:18;;;11511:30;11577:34;11557:18;;;11550:62;-1:-1:-1;;;11628:18:1;;;11621:34;11672:19;;29944:65:0;11297:400:1;29944:65:0;30070:29;30087:1;30091:7;30070:8;:29::i;:::-;-1:-1:-1;;;;;30110:15:0;;;;;;:9;:15;;;;;:20;;30129:1;;30110:15;:20;;30129:1;;30110:20;:::i;:::-;;;;-1:-1:-1;;;;;;;30141:13:0;;;;;;:9;:13;;;;;:18;;30158:1;;30141:13;:18;;30158:1;;30141:18;:::i;:::-;;;;-1:-1:-1;;30170:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;30170:21:0;-1:-1:-1;;;;;30170:21:0;;;;;;;;;30207:27;;30170:16;;30207:27;;;;;;;29724:518;;;:::o;6853:191::-;6946:6;;;-1:-1:-1;;;;;6963:17:0;;;-1:-1:-1;;;;;;6963:17:0;;;;;;;6996:40;;6946:6;;;6963:17;6946:6;;6996:40;;6927:16;;6996:40;6916:128;6853:191;:::o;39217:204::-;39297:9;39292:124;39316:11;39312:1;:15;39292:124;;;39343:18;:6;1122:19;;1140:1;1122:19;;;1033:127;39343:18;39370:38;39380:9;39391:16;:6;1003:14;;911:114;39391:16;39370:9;:38::i;:::-;39329:3;;;;:::i;:::-;;;;39292:124;;30428:315;30583:8;-1:-1:-1;;;;;30574:17:0;:5;-1:-1:-1;;;;;30574:17:0;;;30566:55;;;;-1:-1:-1;;;30566:55:0;;11904:2:1;30566:55:0;;;11886:21:1;11943:2;11923:18;;;11916:30;11982:27;11962:18;;;11955:55;12027:18;;30566:55:0;11702:349:1;30566:55:0;-1:-1:-1;;;;;30632:25:0;;;;;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;:46;;-1:-1:-1;;30632:46:0;;;;;;;;;;30694:41;;8784::1;;;30694::0;;8757:18:1;30694:41:0;;;;;;;30428:315;;;:::o;27761:::-;27918:28;27928:4;27934:2;27938:7;27918:9;:28::i;:::-;27965:48;27988:4;27994:2;27998:7;28007:5;27965:22;:48::i;:::-;27957:111;;;;-1:-1:-1;;;27957:111:0;;;;;;;:::i;39427:104::-;39487:13;39516:9;39509:16;;;;;:::i;1869:723::-;1925:13;2146:10;2142:53;;-1:-1:-1;;2173:10:0;;;;;;;;;;;;-1:-1:-1;;;2173:10:0;;;;;1869:723::o;2142:53::-;2220:5;2205:12;2261:78;2268:9;;2261:78;;2294:8;;;;:::i;:::-;;-1:-1:-1;2317:10:0;;-1:-1:-1;2325:2:0;2317:10;;:::i;:::-;;;2261:78;;;2349:19;2381:6;2371:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;2371:17:0;;2349:39;;2399:154;2406:10;;2399:154;;2433:11;2443:1;2433:11;;:::i;:::-;;-1:-1:-1;2502:10:0;2510:2;2502:5;:10;:::i;:::-;2489:24;;:2;:24;:::i;:::-;2476:39;;2459:6;2466;2459:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;2459:56:0;;;;;;;;-1:-1:-1;2530:11:0;2539:2;2530:11;;:::i;:::-;;;2399:154;;28569:110;28645:26;28655:2;28659:7;28645:26;;;;;;;;;;;;:9;:26::i;30749:799::-;30904:4;-1:-1:-1;;;;;30925:13:0;;8194:20;8242:8;30921:620;;30961:72;;-1:-1:-1;;;30961:72:0;;-1:-1:-1;;;;;30961:36:0;;;;;:72;;4387:10;;31012:4;;31018:7;;31027:5;;30961:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;30961:72:0;;;;;;;;-1:-1:-1;;30961:72:0;;;;;;;;;;;;:::i;:::-;;;30957:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;31203:13:0;;31199:272;;31246:60;;-1:-1:-1;;;31246:60:0;;;;;;;:::i;31199:272::-;31421:6;31415:13;31406:6;31402:2;31398:15;31391:38;30957:529;-1:-1:-1;;;;;;31084:51:0;-1:-1:-1;;;31084:51:0;;-1:-1:-1;31077:58:0;;30921:620;-1:-1:-1;31525:4:0;30749:799;;;;;;:::o;28685:321::-;28815:18;28821:2;28825:7;28815:5;:18::i;:::-;28866:54;28897:1;28901:2;28905:7;28914:5;28866:22;:54::i;:::-;28844:154;;;;-1:-1:-1;;;28844:154:0;;;;;;;:::i;29012:376::-;-1:-1:-1;;;;;29092:16:0;;29084:61;;;;-1:-1:-1;;;29084:61:0;;14625:2:1;29084:61:0;;;14607:21:1;;;14644:18;;;14637:30;14703:34;14683:18;;;14676:62;14755:18;;29084:61:0;14423:356:1;29084:61:0;28147:4;28171:16;;;:7;:16;;;;;;-1:-1:-1;;;;;28171:16:0;:30;29156:58;;;;-1:-1:-1;;;29156:58:0;;10793:2:1;29156:58:0;;;10775:21:1;10832:2;10812:18;;;10805:30;10871;10851:18;;;10844:58;10919:18;;29156:58:0;10591:352:1;29156:58:0;-1:-1:-1;;;;;29281:13:0;;;;;;:9;:13;;;;;:18;;29298:1;;29281:13;:18;;29298:1;;29281:18;:::i;:::-;;;;-1:-1:-1;;29310:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;29310:21:0;-1:-1:-1;;;;;29310:21:0;;;;;;;;29347:33;;29310:16;;;29347:33;;29310:16;;29347:33;29012:376;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:406:1;78:5;112:18;104:6;101:30;98:56;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:45;;;309:1;306;299:12;268:45;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;14:406;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:70;;588:1;585;578:12;522:70;425:173;;;:::o;603:160::-;668:20;;724:13;;717:21;707:32;;697:60;;753:1;750;743:12;768:186;827:6;880:2;868:9;859:7;855:23;851:32;848:52;;;896:1;893;886:12;848:52;919:29;938:9;919:29;:::i;959:260::-;1027:6;1035;1088:2;1076:9;1067:7;1063:23;1059:32;1056:52;;;1104:1;1101;1094:12;1056:52;1127:29;1146:9;1127:29;:::i;:::-;1117:39;;1175:38;1209:2;1198:9;1194:18;1175:38;:::i;:::-;1165:48;;959:260;;;;;:::o;1224:328::-;1301:6;1309;1317;1370:2;1358:9;1349:7;1345:23;1341:32;1338:52;;;1386:1;1383;1376:12;1338:52;1409:29;1428:9;1409:29;:::i;:::-;1399:39;;1457:38;1491:2;1480:9;1476:18;1457:38;:::i;:::-;1447:48;;1542:2;1531:9;1527:18;1514:32;1504:42;;1224:328;;;;;:::o;1557:666::-;1652:6;1660;1668;1676;1729:3;1717:9;1708:7;1704:23;1700:33;1697:53;;;1746:1;1743;1736:12;1697:53;1769:29;1788:9;1769:29;:::i;:::-;1759:39;;1817:38;1851:2;1840:9;1836:18;1817:38;:::i;:::-;1807:48;;1902:2;1891:9;1887:18;1874:32;1864:42;;1957:2;1946:9;1942:18;1929:32;1984:18;1976:6;1973:30;1970:50;;;2016:1;2013;2006:12;1970:50;2039:22;;2092:4;2084:13;;2080:27;-1:-1:-1;2070:55:1;;2121:1;2118;2111:12;2070:55;2144:73;2209:7;2204:2;2191:16;2186:2;2182;2178:11;2144:73;:::i;:::-;2134:83;;;1557:666;;;;;;;:::o;2228:254::-;2293:6;2301;2354:2;2342:9;2333:7;2329:23;2325:32;2322:52;;;2370:1;2367;2360:12;2322:52;2393:29;2412:9;2393:29;:::i;:::-;2383:39;;2441:35;2472:2;2461:9;2457:18;2441:35;:::i;2487:254::-;2555:6;2563;2616:2;2604:9;2595:7;2591:23;2587:32;2584:52;;;2632:1;2629;2622:12;2584:52;2655:29;2674:9;2655:29;:::i;:::-;2645:39;2731:2;2716:18;;;;2703:32;;-1:-1:-1;;;2487:254:1:o;2746:963::-;2830:6;2861:2;2904;2892:9;2883:7;2879:23;2875:32;2872:52;;;2920:1;2917;2910:12;2872:52;2960:9;2947:23;2989:18;3030:2;3022:6;3019:14;3016:34;;;3046:1;3043;3036:12;3016:34;3084:6;3073:9;3069:22;3059:32;;3129:7;3122:4;3118:2;3114:13;3110:27;3100:55;;3151:1;3148;3141:12;3100:55;3187:2;3174:16;3209:2;3205;3202:10;3199:36;;;3215:18;;:::i;:::-;3261:2;3258:1;3254:10;3244:20;;3284:28;3308:2;3304;3300:11;3284:28;:::i;:::-;3346:15;;;3377:12;;;;3409:11;;;3439;;;3435:20;;3432:33;-1:-1:-1;3429:53:1;;;3478:1;3475;3468:12;3429:53;3500:1;3491:10;;3510:169;3524:2;3521:1;3518:9;3510:169;;;3581:23;3600:3;3581:23;:::i;:::-;3569:36;;3542:1;3535:9;;;;;3625:12;;;;3657;;3510:169;;;-1:-1:-1;3698:5:1;2746:963;-1:-1:-1;;;;;;;;2746:963:1:o;3714:180::-;3770:6;3823:2;3811:9;3802:7;3798:23;3794:32;3791:52;;;3839:1;3836;3829:12;3791:52;3862:26;3878:9;3862:26;:::i;3899:245::-;3957:6;4010:2;3998:9;3989:7;3985:23;3981:32;3978:52;;;4026:1;4023;4016:12;3978:52;4065:9;4052:23;4084:30;4108:5;4084:30;:::i;4149:249::-;4218:6;4271:2;4259:9;4250:7;4246:23;4242:32;4239:52;;;4287:1;4284;4277:12;4239:52;4319:9;4313:16;4338:30;4362:5;4338:30;:::i;4403:450::-;4472:6;4525:2;4513:9;4504:7;4500:23;4496:32;4493:52;;;4541:1;4538;4531:12;4493:52;4581:9;4568:23;4614:18;4606:6;4603:30;4600:50;;;4646:1;4643;4636:12;4600:50;4669:22;;4722:4;4714:13;;4710:27;-1:-1:-1;4700:55:1;;4751:1;4748;4741:12;4700:55;4774:73;4839:7;4834:2;4821:16;4816:2;4812;4808:11;4774:73;:::i;4858:180::-;4917:6;4970:2;4958:9;4949:7;4945:23;4941:32;4938:52;;;4986:1;4983;4976:12;4938:52;-1:-1:-1;5009:23:1;;4858:180;-1:-1:-1;4858:180:1:o;5043:254::-;5111:6;5119;5172:2;5160:9;5151:7;5147:23;5143:32;5140:52;;;5188:1;5185;5178:12;5140:52;5224:9;5211:23;5201:33;;5253:38;5287:2;5276:9;5272:18;5253:38;:::i;5302:257::-;5343:3;5381:5;5375:12;5408:6;5403:3;5396:19;5424:63;5480:6;5473:4;5468:3;5464:14;5457:4;5450:5;5446:16;5424:63;:::i;:::-;5541:2;5520:15;-1:-1:-1;;5516:29:1;5507:39;;;;5548:4;5503:50;;5302:257;-1:-1:-1;;5302:257:1:o;5564:1527::-;5788:3;5826:6;5820:13;5852:4;5865:51;5909:6;5904:3;5899:2;5891:6;5887:15;5865:51;:::i;:::-;5979:13;;5938:16;;;;6001:55;5979:13;5938:16;6023:15;;;6001:55;:::i;:::-;6145:13;;6078:20;;;6118:1;;6205;6227:18;;;;6280;;;;6307:93;;6385:4;6375:8;6371:19;6359:31;;6307:93;6448:2;6438:8;6435:16;6415:18;6412:40;6409:167;;;-1:-1:-1;;;6475:33:1;;6531:4;6528:1;6521:15;6561:4;6482:3;6549:17;6409:167;6592:18;6619:110;;;;6743:1;6738:328;;;;6585:481;;6619:110;-1:-1:-1;;6654:24:1;;6640:39;;6699:20;;;;-1:-1:-1;6619:110:1;;6738:328;20191:1;20184:14;;;20228:4;20215:18;;6833:1;6847:169;6861:8;6858:1;6855:15;6847:169;;;6943:14;;6928:13;;;6921:37;6986:16;;;;6878:10;;6847:169;;;6851:3;;7047:8;7040:5;7036:20;7029:27;;6585:481;-1:-1:-1;7082:3:1;;5564:1527;-1:-1:-1;;;;;;;;;;;5564:1527:1:o;7514:488::-;-1:-1:-1;;;;;7783:15:1;;;7765:34;;7835:15;;7830:2;7815:18;;7808:43;7882:2;7867:18;;7860:34;;;7930:3;7925:2;7910:18;;7903:31;;;7708:4;;7951:45;;7976:19;;7968:6;7951:45;:::i;:::-;7943:53;7514:488;-1:-1:-1;;;;;;7514:488:1:o;8007:632::-;8178:2;8230:21;;;8300:13;;8203:18;;;8322:22;;;8149:4;;8178:2;8401:15;;;;8375:2;8360:18;;;8149:4;8444:169;8458:6;8455:1;8452:13;8444:169;;;8519:13;;8507:26;;8588:15;;;;8553:12;;;;8480:1;8473:9;8444:169;;;-1:-1:-1;8630:3:1;;8007:632;-1:-1:-1;;;;;;8007:632:1:o;8836:219::-;8985:2;8974:9;8967:21;8948:4;9005:44;9045:2;9034:9;9030:18;9022:6;9005:44;:::i;9765:414::-;9967:2;9949:21;;;10006:2;9986:18;;;9979:30;10045:34;10040:2;10025:18;;10018:62;-1:-1:-1;;;10111:2:1;10096:18;;10089:48;10169:3;10154:19;;9765:414::o;10948:344::-;11150:2;11132:21;;;11189:2;11169:18;;;11162:30;-1:-1:-1;;;11223:2:1;11208:18;;11201:50;11283:2;11268:18;;10948:344::o;14784:353::-;14986:2;14968:21;;;15025:2;15005:18;;;14998:30;15064:31;15059:2;15044:18;;15037:59;15128:2;15113:18;;14784:353::o;15555:356::-;15757:2;15739:21;;;15776:18;;;15769:30;15835:34;15830:2;15815:18;;15808:62;15902:2;15887:18;;15555:356::o;17851:344::-;18053:2;18035:21;;;18092:2;18072:18;;;18065:30;-1:-1:-1;;;18126:2:1;18111:18;;18104:50;18186:2;18171:18;;17851:344::o;18200:413::-;18402:2;18384:21;;;18441:2;18421:18;;;18414:30;18480:34;18475:2;18460:18;;18453:62;-1:-1:-1;;;18546:2:1;18531:18;;18524:47;18603:3;18588:19;;18200:413::o;18960:343::-;19162:2;19144:21;;;19201:2;19181:18;;;19174:30;-1:-1:-1;;;19235:2:1;19220:18;;19213:49;19294:2;19279:18;;18960:343::o;19308:::-;19510:2;19492:21;;;19549:2;19529:18;;;19522:30;-1:-1:-1;;;19583:2:1;19568:18;;19561:49;19642:2;19627:18;;19308:343::o;19838:275::-;19909:2;19903:9;19974:2;19955:13;;-1:-1:-1;;19951:27:1;19939:40;;20009:18;19994:34;;20030:22;;;19991:62;19988:88;;;20056:18;;:::i;:::-;20092:2;20085:22;19838:275;;-1:-1:-1;19838:275:1:o;20244:128::-;20284:3;20315:1;20311:6;20308:1;20305:13;20302:39;;;20321:18;;:::i;:::-;-1:-1:-1;20357:9:1;;20244:128::o;20377:120::-;20417:1;20443;20433:35;;20448:18;;:::i;:::-;-1:-1:-1;20482:9:1;;20377:120::o;20502:168::-;20542:7;20608:1;20604;20600:6;20596:14;20593:1;20590:21;20585:1;20578:9;20571:17;20567:45;20564:71;;;20615:18;;:::i;:::-;-1:-1:-1;20655:9:1;;20502:168::o;20675:125::-;20715:4;20743:1;20740;20737:8;20734:34;;;20748:18;;:::i;:::-;-1:-1:-1;20785:9:1;;20675:125::o;20805:258::-;20877:1;20887:113;20901:6;20898:1;20895:13;20887:113;;;20977:11;;;20971:18;20958:11;;;20951:39;20923:2;20916:10;20887:113;;;21018:6;21015:1;21012:13;21009:48;;;-1:-1:-1;;21053:1:1;21035:16;;21028:27;20805:258::o;21068:380::-;21147:1;21143:12;;;;21190;;;21211:61;;21265:4;21257:6;21253:17;21243:27;;21211:61;21318:2;21310:6;21307:14;21287:18;21284:38;21281:161;;;21364:10;21359:3;21355:20;21352:1;21345:31;21399:4;21396:1;21389:15;21427:4;21424:1;21417:15;21281:161;;21068:380;;;:::o;21453:135::-;21492:3;-1:-1:-1;;21513:17:1;;21510:43;;;21533:18;;:::i;:::-;-1:-1:-1;21580:1:1;21569:13;;21453:135::o;21593:112::-;21625:1;21651;21641:35;;21656:18;;:::i;:::-;-1:-1:-1;21690:9:1;;21593:112::o;21710:127::-;21771:10;21766:3;21762:20;21759:1;21752:31;21802:4;21799:1;21792:15;21826:4;21823:1;21816:15;21842:127;21903:10;21898:3;21894:20;21891:1;21884:31;21934:4;21931:1;21924:15;21958:4;21955:1;21948:15;21974:127;22035:10;22030:3;22026:20;22023:1;22016:31;22066:4;22063:1;22056:15;22090:4;22087:1;22080:15;22106:127;22167:10;22162:3;22158:20;22155:1;22148:31;22198:4;22195:1;22188:15;22222:4;22219:1;22212:15;22238:131;-1:-1:-1;;;;;;22312:32:1;;22302:43;;22292:71;;22359:1;22356;22349:12

Swarm Source

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