ETH Price: $2,993.29 (-4.44%)
Gas: 3 Gwei

Token

The Crazy Avocados Club (TCAC)
 

Overview

Max Total Supply

2,500 TCAC

Holders

534

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
5 TCAC
0x4eb173b2a73875921facbf9e048c4b71ec8c8818
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:
TCACmint

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-02-26
*/

// SPDX-License-Identifier: MIT
// 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;








/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension, but not including the Enumerable extension, which is available separately as
 * {ERC721Enumerable}.
 */
contract ERC721 is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to owner address
    mapping(uint256 => address) private _owners;

    // Mapping owner address to token count
    mapping(address => uint256) private _balances;

    // Mapping from token ID to approved address
    mapping(uint256 => address) private _tokenApprovals;

    // Mapping from owner to operator approvals
    mapping(address => mapping(address => bool)) private _operatorApprovals;

    /**
     * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override(ERC165, IERC165) returns (bool) {
        return
            interfaceId == type(IERC721).interfaceId ||
            interfaceId == type(IERC721Metadata).interfaceId ||
            super.supportsInterface(interfaceId);
    }

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view virtual override returns (uint256) {
        require(owner != address(0), "ERC721: balance query for the zero address");
        return _balances[owner];
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    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;
    }

    /**
     * @dev See {IERC721Metadata-name}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC721Metadata-symbol}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    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())) : "";
    }

    /**
     * @dev Base URI for computing {tokenURI}. If set, the resulting URI for each
     * token will be the concatenation of the `baseURI` and the `tokenId`. Empty
     * by default, can be overriden in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

    /**
     * @dev See {IERC721-approve}.
     */
    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);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId) public view virtual override returns (address) {
        require(_exists(tokenId), "ERC721: approved query for nonexistent token");

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        _setApprovalForAll(_msgSender(), operator, approved);
    }

    /**
     * @dev See {IERC721-isApprovedForAll}.
     */
    function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) {
        return _operatorApprovals[owner][operator];
    }

    /**
     * @dev See {IERC721-transferFrom}.
     */
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        //solhint-disable-next-line max-line-length
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");

        _transfer(from, to, tokenId);
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) public virtual override {
        safeTransferFrom(from, to, tokenId, "");
    }

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    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);
    }

    /**
     * @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.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    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");
    }

    /**
     * @dev Returns whether `tokenId` exists.
     *
     * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}.
     *
     * Tokens start existing when they are minted (`_mint`),
     * and stop existing when they are burned (`_burn`).
     */
    function _exists(uint256 tokenId) internal view virtual returns (bool) {
        return _owners[tokenId] != address(0);
    }

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    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));
    }

    /**
     * @dev Safely mints `tokenId` and transfers it to `to`.
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(address to, uint256 tokenId) internal virtual {
        _safeMint(to, tokenId, "");
    }

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    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"
        );
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    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);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId) internal virtual {
        address owner = ERC721.ownerOf(tokenId);

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

        // Clear approvals
        _approve(address(0), tokenId);

        _balances[owner] -= 1;
        delete _owners[tokenId];

        emit Transfer(owner, address(0), tokenId);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    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);

        // Clear approvals from the previous owner
        _approve(address(0), tokenId);

        _balances[from] -= 1;
        _balances[to] += 1;
        _owners[tokenId] = to;

        emit Transfer(from, to, tokenId);
    }

    /**
     * @dev Approve `to` to operate on `tokenId`
     *
     * Emits a {Approval} event.
     */
    function _approve(address to, uint256 tokenId) internal virtual {
        _tokenApprovals[tokenId] = to;
        emit Approval(ERC721.ownerOf(tokenId), to, tokenId);
    }

    /**
     * @dev Approve `operator` to operate on all of `owner` tokens
     *
     * Emits a {ApprovalForAll} event.
     */
    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);
    }

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    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;
        }
    }

    /**
     * @dev Hook that is called before any token transfer. This includes minting
     * and burning.
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     * - When `to` is zero, ``from``'s `tokenId` will be burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 tokenId
    ) internal virtual {}
}

// File: contracts/AvocadoNFTs.sol

pragma solidity >=0.7.0 <0.9.0;

contract TCACmint is ERC721, Ownable {
  using Strings for uint256;
  using Counters for Counters.Counter;

  Counters.Counter private supply;

  string public uriPrefix = "ipfs://QmQycHvgz7ChYQETFcxpctgqc2dodqKSbyUDpbph5sKqKS/";
  string public uriSuffix = ".json";
  string public hiddenMetadataUri;

  uint256 public maxSupply = 10000;
  uint256 public maxMintAmountPerTx = 5;

  bool public revealed = false;

  mapping(uint => string) public names;

  address[] public giveAwayAddresses;

  constructor() ERC721("The Crazy Avocados Club", "TCAC") {
    setHiddenMetadataUri("ipfs://QmZG4xy67RoTu24JSZAypCLaR6Dw3darNCxy1TBrB54Kt8/hidden.json");
    giveAwayAddresses = [0x591Fc5ABd2400a3F395a373d9355659f59c08AF8, 0xd0DaEE3D22e8b14D124135336982401e646D61aB, 0x3a08E9445E14C69426453AB97be1DDB29B59aA1E , 0x0a7B73fed6560a50418E058135Fb70E2cb237832, 0xb266E542c645627da44821b1010C25768E23e112, 0xc34fBE7e799fa5fC788603a1da15f9D4569a7D85, 0xfDF913d48E2A3bf83f3D53d515962147b692e18a, 0x623Ba64974F277fc50Ba470Fe70E446f511DBfFe, 0x58EA4AE9a8A81286b61B6dadbC04297b87C8412d, 0x66E7b85FCDE41Caa6DD7E1b66659BC18d091942C, 0x8784C31c135DD1d544f540ebC3A5bA46eFC0D1C0, 0x2c6e39534fD414164D980200d85e0A4E893545c8, 0x4c8E22d1c15Ed6AD0fE36e6d5D7fc80e0Fc00b38, 0xE1Af987712C3E286c5aE8BaBe50b5381764bc3b0, 0xDAB3dF8A22dc52C90434706205b9c4245454880e, 0x7E8F6C17440de89f0A9fD6ED469b454E6C693267, 0x10E2b2d360Eb6f5691E05e4DE61136C4Ee51282C, 0x4C344380c0faE40E61D6fcB90d1BB92bEE7736A9, 0x7B17dde77d7B409097E14EEa5c42f501E951A207, 0xb3003Aa4B3A6215a599e1349ec7eb0e77049183D, 0xF904A3932979cBf4EEaAB3b588396883ebC360bA];
    for(uint256 i=0; i<giveAwayAddresses.length;i++){
      supply.increment();
      _safeMint(giveAwayAddresses[i], supply.current());
    }
    for(uint256 i=0; i<10;i++){
      supply.increment();
      _safeMint(msg.sender, supply.current());
    }
  }

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

  function setName(string memory _name, uint256 _avocado) public payable {
    require(msg.value >= 0.005 ether);
    bool hasNFT = false;
    uint[] memory ownedTokens = walletOfOwner(msg.sender);
    for(uint256 i=0; i<ownedTokens.length;i++){
      if(_avocado == ownedTokens[i]){
        hasNFT = true;
      }
    }
    require(hasNFT, "You do not own that avocado!");
    names[_avocado] = _name;
  }

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

  function checkCost(uint256 _supply) public view returns (uint256 _cost){
      if(_supply < 2500) {
          return 0 ether;
      }
      if(_supply < 5000) {
          return 0.06 ether;
      }
      if(_supply < 7500) {
          return 0.08 ether;
      }
      if(_supply < maxSupply) {
          return 0.1 ether;
      }
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) {
   
    require(msg.value >= checkCost(supply.current()) * _mintAmount, "Insufficient funds!");
    require((balanceOf(msg.sender) + _mintAmount) < 6, "Cannot own more than 5 Avocados");

    _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 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 withdraw() public onlyOwner {
    (bool os, ) = payable(owner()).call{value: address(this).balance}("");
    require(os);
  }

  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":"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":[{"internalType":"uint256","name":"_supply","type":"uint256"}],"name":"checkCost","outputs":[{"internalType":"uint256","name":"_cost","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"giveAwayAddresses","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":"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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"names","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"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":"string","name":"_name","type":"string"},{"internalType":"uint256","name":"_avocado","type":"uint256"}],"name":"setName","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","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":"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":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052604051806060016040528060368152602001620059b360369139600890805190602001906200003592919062000f0d565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600990805190602001906200008392919062000f0d565b50612710600b556005600c556000600d60006101000a81548160ff021916908315150217905550348015620000b757600080fd5b506040518060400160405280601781526020017f546865204372617a792041766f6361646f7320436c75620000000000000000008152506040518060400160405280600481526020017f544341430000000000000000000000000000000000000000000000000000000081525081600090805190602001906200013c92919062000f0d565b5080600190805190602001906200015592919062000f0d565b505050620001786200016c6200088e60201b60201c565b6200089660201b60201c565b620001a260405180608001604052806041815260200162005972604191396200095c60201b60201c565b604051806102a0016040528073591fc5abd2400a3f395a373d9355659f59c08af873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173d0daee3d22e8b14d124135336982401e646d61ab73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001733a08e9445e14c69426453ab97be1ddb29b59aa1e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001730a7b73fed6560a50418e058135fb70e2cb23783273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173b266e542c645627da44821b1010c25768e23e11273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173c34fbe7e799fa5fc788603a1da15f9d4569a7d8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173fdf913d48e2a3bf83f3d53d515962147b692e18a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173623ba64974f277fc50ba470fe70e446f511dbffe73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017358ea4ae9a8a81286b61b6dadbc04297b87c8412d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017366e7b85fcde41caa6dd7e1b66659bc18d091942c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001738784c31c135dd1d544f540ebc3a5ba46efc0d1c073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001732c6e39534fd414164d980200d85e0a4e893545c873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001734c8e22d1c15ed6ad0fe36e6d5d7fc80e0fc00b3873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173e1af987712c3e286c5ae8babe50b5381764bc3b073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173dab3df8a22dc52c90434706205b9c4245454880e73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001737e8f6c17440de89f0a9fd6ed469b454e6c69326773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020017310e2b2d360eb6f5691e05e4de61136c4ee51282c73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001734c344380c0fae40e61d6fcb90d1bb92bee7736a973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001737b17dde77d7b409097e14eea5c42f501e951a20773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173b3003aa4b3a6215a599e1349ec7eb0e77049183d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200173f904a3932979cbf4eeaab3b588396883ebc360ba73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815250600f9060156200077c92919062000f9e565b5060005b600f805490508110156200082457620007a5600762000a0760201b62001d961760201c565b6200080e600f8281548110620007c057620007bf6200147c565b5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1662000802600762000a1d60201b62001dac1760201c565b62000a2b60201b60201c565b80806200081b90620013d0565b91505062000780565b5060005b600a811015620008875762000849600762000a0760201b62001d961760201c565b620008713362000865600762000a1d60201b62001dac1760201c565b62000a2b60201b60201c565b80806200087e90620013d0565b91505062000828565b50620015a5565b600033905090565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6200096c6200088e60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200099262000a5160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620009eb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009e2906200124e565b60405180910390fd5b80600a908051906020019062000a0392919062000f0d565b5050565b6001816000016000828254019250508190555050565b600081600001549050919050565b62000a4d82826040518060200160405280600081525062000a7b60201b60201c565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b62000a8d838362000ae960201b60201c565b62000aa2600084848462000ccf60201b60201c565b62000ae4576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000adb90620011e8565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000b5c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000b53906200122c565b60405180910390fd5b62000b6d8162000e8960201b60201c565b1562000bb0576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ba7906200120a565b60405180910390fd5b62000bc46000838362000ef560201b60201c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825462000c1691906200129d565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600062000cfd8473ffffffffffffffffffffffffffffffffffffffff1662000efa60201b62001dba1760201c565b1562000e7c578373ffffffffffffffffffffffffffffffffffffffff1663150b7a0262000d2f6200088e60201b60201c565b8786866040518563ffffffff1660e01b815260040162000d53949392919062001194565b602060405180830381600087803b15801562000d6e57600080fd5b505af192505050801562000da257506040513d601f19601f8201168201806040525081019062000d9f919062001063565b60015b62000e2b573d806000811462000dd5576040519150601f19603f3d011682016040523d82523d6000602084013e62000dda565b606091505b5060008151141562000e23576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000e1a90620011e8565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161491505062000e81565b600190505b949350505050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b505050565b600080823b905060008111915050919050565b82805462000f1b906200139a565b90600052602060002090601f01602090048101928262000f3f576000855562000f8b565b82601f1062000f5a57805160ff191683800117855562000f8b565b8280016001018555821562000f8b579182015b8281111562000f8a57825182559160200191906001019062000f6d565b5b50905062000f9a91906200102d565b5090565b8280548282559060005260206000209081019282156200101a579160200282015b82811115620010195782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055509160200191906001019062000fbf565b5b5090506200102991906200102d565b5090565b5b80821115620010485760008160009055506001016200102e565b5090565b6000815190506200105d816200158b565b92915050565b6000602082840312156200107c576200107b620014ab565b5b60006200108c848285016200104c565b91505092915050565b620010a081620012fa565b82525050565b6000620010b38262001270565b620010bf81856200127b565b9350620010d181856020860162001364565b620010dc81620014b0565b840191505092915050565b6000620010f66032836200128c565b91506200110382620014c1565b604082019050919050565b60006200111d601c836200128c565b91506200112a8262001510565b602082019050919050565b6000620011446020836200128c565b9150620011518262001539565b602082019050919050565b60006200116b6020836200128c565b9150620011788262001562565b602082019050919050565b6200118e816200135a565b82525050565b6000608082019050620011ab600083018762001095565b620011ba602083018662001095565b620011c9604083018562001183565b8181036060830152620011dd8184620010a6565b905095945050505050565b600060208201905081810360008301526200120381620010e7565b9050919050565b6000602082019050818103600083015262001225816200110e565b9050919050565b60006020820190508181036000830152620012478162001135565b9050919050565b6000602082019050818103600083015262001269816200115c565b9050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b6000620012aa826200135a565b9150620012b7836200135a565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620012ef57620012ee6200141e565b5b828201905092915050565b600062001307826200133a565b9050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200138457808201518184015260208101905062001367565b8381111562001394576000848401525b50505050565b60006002820490506001821680620013b357607f821691505b60208210811415620013ca57620013c96200144d565b5b50919050565b6000620013dd826200135a565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156200141357620014126200141e565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b62001596816200130e565b8114620015a257600080fd5b50565b6143bd80620015b56000396000f3fe60806040526004361061020f5760003560e01c806370a0823111610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610793578063e0a80853146107be578063e985e9c5146107e7578063efbd73f414610824578063f2fde38b1461084d5761020f565b8063a45ba8e7146106d9578063b071401b14610704578063b88d4fde1461072d578063c87b56dd146107565761020f565b80638da5cb5b116100e75780638da5cb5b1461061357806394354fd01461063e57806395d89b4114610669578063a0712d6814610694578063a22cb465146106b05761020f565b806370a0823114610559578063715018a6146105965780637c2aa1b5146105ad5780637ec4a659146105ea5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb14610472578063518302271461049b5780635503a0e8146104c657806362b99ad4146104f15780636352211e1461051c5761020f565b80633ccfd60b146103b857806342842e0e146103cf578063438b6300146103f85780634622ab03146104355761020f565b806311b4a832116101e257806311b4a832146102e257806316ba10e01461031f57806318160ddd1461034857806323b872dd146103735780633baa81701461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612f1f565b610876565b6040516102489190613630565b60405180910390f35b34801561025d57600080fd5b50610266610958565b604051610273919061364b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061301e565b6109ea565b6040516102b091906135a7565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612eb2565b610a6f565b005b3480156102ee57600080fd5b506103096004803603810190610304919061301e565b610b87565b604051610316919061390d565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612f79565b610bef565b005b34801561035457600080fd5b5061035d610c85565b60405161036a919061390d565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190612d9c565b610c96565b005b6103b660048036038101906103b19190612fc2565b610cf6565b005b3480156103c457600080fd5b506103cd610dcd565b005b3480156103db57600080fd5b506103f660048036038101906103f19190612d9c565b610ec9565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612d2f565b610ee9565b60405161042c919061360e565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061301e565b610ff4565b604051610469919061364b565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190612f79565b611094565b005b3480156104a757600080fd5b506104b061112a565b6040516104bd9190613630565b60405180910390f35b3480156104d257600080fd5b506104db61113d565b6040516104e8919061364b565b60405180910390f35b3480156104fd57600080fd5b506105066111cb565b604051610513919061364b565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e919061301e565b611259565b60405161055091906135a7565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612d2f565b61130b565b60405161058d919061390d565b60405180910390f35b3480156105a257600080fd5b506105ab6113c3565b005b3480156105b957600080fd5b506105d460048036038101906105cf919061301e565b61144b565b6040516105e191906135a7565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612f79565b61148a565b005b34801561061f57600080fd5b50610628611520565b60405161063591906135a7565b60405180910390f35b34801561064a57600080fd5b5061065361154a565b604051610660919061390d565b60405180910390f35b34801561067557600080fd5b5061067e611550565b60405161068b919061364b565b60405180910390f35b6106ae60048036038101906106a9919061301e565b6115e2565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190612e72565b611750565b005b3480156106e557600080fd5b506106ee611766565b6040516106fb919061364b565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061301e565b6117f4565b005b34801561073957600080fd5b50610754600480360381019061074f9190612def565b61187a565b005b34801561076257600080fd5b5061077d6004803603810190610778919061301e565b6118dc565b60405161078a919061364b565b60405180910390f35b34801561079f57600080fd5b506107a8611a35565b6040516107b5919061390d565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190612ef2565b611a3b565b005b3480156107f357600080fd5b5061080e60048036038101906108099190612d5c565b611ad4565b60405161081b9190613630565b60405180910390f35b34801561083057600080fd5b5061084b6004803603810190610846919061304b565b611b68565b005b34801561085957600080fd5b50610874600480360381019061086f9190612d2f565b611c9e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610951575061095082611dcd565b5b9050919050565b60606000805461096790613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461099390613c16565b80156109e05780601f106109b5576101008083540402835291602001916109e0565b820191906000526020600020905b8154815290600101906020018083116109c357829003601f168201915b5050505050905090565b60006109f582611e37565b610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b906137ed565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7a82611259565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae29061386d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0a611ea3565b73ffffffffffffffffffffffffffffffffffffffff161480610b395750610b3881610b33611ea3565b611ad4565b5b610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f9061376d565b60405180910390fd5b610b828383611eab565b505050565b60006109c4821015610b9c5760009050610bea565b611388821015610bb55766d529ae9e8600009050610bea565b611d4c821015610bcf5767011c37937e0800009050610bea565b600b54821015610be95767016345785d8a00009050610bea565b5b919050565b610bf7611ea3565b73ffffffffffffffffffffffffffffffffffffffff16610c15611520565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c629061380d565b60405180910390fd5b8060099080519060200190610c81929190612b43565b5050565b6000610c916007611dac565b905090565b610ca7610ca1611ea3565b82611f64565b610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906138cd565b60405180910390fd5b610cf1838383612042565b505050565b6611c37937e08000341015610d0a57600080fd5b600080610d1633610ee9565b905060005b8151811015610d5e57818181518110610d3757610d36613d80565b5b6020026020010151841415610d4b57600192505b8080610d5690613c79565b915050610d1b565b5081610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d969061372d565b60405180910390fd5b83600e60008581526020019081526020016000209080519060200190610dc6929190612b43565b5050505050565b610dd5611ea3565b73ffffffffffffffffffffffffffffffffffffffff16610df3611520565b73ffffffffffffffffffffffffffffffffffffffff1614610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e409061380d565b60405180910390fd5b6000610e53611520565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e7690613592565b60006040518083038185875af1925050503d8060008114610eb3576040519150601f19603f3d011682016040523d82523d6000602084013e610eb8565b606091505b5050905080610ec657600080fd5b50565b610ee48383836040518060200160405280600081525061187a565b505050565b60606000610ef68361130b565b905060008167ffffffffffffffff811115610f1457610f13613daf565b5b604051908082528060200260200182016040528015610f425781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f5f5750600b548211155b15610fe8576000610f6f83611259565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd45782848381518110610fb957610fb8613d80565b5b6020026020010181815250508180610fd090613c79565b9250505b8280610fdf90613c79565b93505050610f4e565b82945050505050919050565b600e602052806000526040600020600091509050805461101390613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461103f90613c16565b801561108c5780601f106110615761010080835404028352916020019161108c565b820191906000526020600020905b81548152906001019060200180831161106f57829003601f168201915b505050505081565b61109c611ea3565b73ffffffffffffffffffffffffffffffffffffffff166110ba611520565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111079061380d565b60405180910390fd5b80600a9080519060200190611126929190612b43565b5050565b600d60009054906101000a900460ff1681565b6009805461114a90613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461117690613c16565b80156111c35780601f10611198576101008083540402835291602001916111c3565b820191906000526020600020905b8154815290600101906020018083116111a657829003601f168201915b505050505081565b600880546111d890613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461120490613c16565b80156112515780601f1061122657610100808354040283529160200191611251565b820191906000526020600020905b81548152906001019060200180831161123457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906137ad565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113739061378d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113cb611ea3565b73ffffffffffffffffffffffffffffffffffffffff166113e9611520565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114369061380d565b60405180910390fd5b611449600061229e565b565b600f818154811061145b57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611492611ea3565b73ffffffffffffffffffffffffffffffffffffffff166114b0611520565b73ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd9061380d565b60405180910390fd5b806008908051906020019061151c929190612b43565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606001805461155f90613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461158b90613c16565b80156115d85780601f106115ad576101008083540402835291602001916115d8565b820191906000526020600020905b8154815290600101906020018083116115bb57829003601f168201915b5050505050905090565b806000811180156115f55750600c548111155b611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b906136cd565b60405180910390fd5b600b54816116426007611dac565b61164c9190613a4b565b111561168d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116849061388d565b60405180910390fd5b816116a061169b6007611dac565b610b87565b6116aa9190613ad2565b3410156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e3906138ed565b60405180910390fd5b6006826116f83361130b565b6117029190613a4b565b10611742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611739906138ad565b60405180910390fd5b61174c3383612364565b5050565b61176261175b611ea3565b83836123a4565b5050565b600a805461177390613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461179f90613c16565b80156117ec5780601f106117c1576101008083540402835291602001916117ec565b820191906000526020600020905b8154815290600101906020018083116117cf57829003601f168201915b505050505081565b6117fc611ea3565b73ffffffffffffffffffffffffffffffffffffffff1661181a611520565b73ffffffffffffffffffffffffffffffffffffffff1614611870576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118679061380d565b60405180910390fd5b80600c8190555050565b61188b611885611ea3565b83611f64565b6118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c1906138cd565b60405180910390fd5b6118d684848484612511565b50505050565b60606118e782611e37565b611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d9061384d565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514156119d457600a805461194f90613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461197b90613c16565b80156119c85780601f1061199d576101008083540402835291602001916119c8565b820191906000526020600020905b8154815290600101906020018083116119ab57829003601f168201915b50505050509050611a30565b60006119de61256d565b905060008151116119fe5760405180602001604052806000815250611a2c565b80611a08846125ff565b6009604051602001611a1c93929190613561565b6040516020818303038152906040525b9150505b919050565b600b5481565b611a43611ea3565b73ffffffffffffffffffffffffffffffffffffffff16611a61611520565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae9061380d565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611b7b5750600c548111155b611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb1906136cd565b60405180910390fd5b600b5481611bc86007611dac565b611bd29190613a4b565b1115611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a9061388d565b60405180910390fd5b611c1b611ea3565b73ffffffffffffffffffffffffffffffffffffffff16611c39611520565b73ffffffffffffffffffffffffffffffffffffffff1614611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c869061380d565b60405180910390fd5b611c998284612364565b505050565b611ca6611ea3565b73ffffffffffffffffffffffffffffffffffffffff16611cc4611520565b73ffffffffffffffffffffffffffffffffffffffff1614611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119061380d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d819061368d565b60405180910390fd5b611d938161229e565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1e83611259565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6f82611e37565b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa59061374d565b60405180910390fd5b6000611fb983611259565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202857508373ffffffffffffffffffffffffffffffffffffffff16612010846109ea565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203957506120388185611ad4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661206282611259565b73ffffffffffffffffffffffffffffffffffffffff16146120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af9061382d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f906136ed565b60405180910390fd5b612133838383612760565b61213e600082611eab565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218e9190613b2c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e59190613a4b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561239f576123796007611d96565b61238c836123876007611dac565b612765565b808061239790613c79565b915050612367565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a9061370d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125049190613630565b60405180910390a3505050565b61251c848484612042565b61252884848484612783565b612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255e9061366d565b60405180910390fd5b50505050565b60606008805461257c90613c16565b80601f01602080910402602001604051908101604052809291908181526020018280546125a890613c16565b80156125f55780601f106125ca576101008083540402835291602001916125f5565b820191906000526020600020905b8154815290600101906020018083116125d857829003601f168201915b5050505050905090565b60606000821415612647576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061275b565b600082905060005b6000821461267957808061266290613c79565b915050600a826126729190613aa1565b915061264f565b60008167ffffffffffffffff81111561269557612694613daf565b5b6040519080825280601f01601f1916602001820160405280156126c75781602001600182028036833780820191505090505b5090505b60008514612754576001826126e09190613b2c565b9150600a856126ef9190613cc2565b60306126fb9190613a4b565b60f81b81838151811061271157612710613d80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274d9190613aa1565b94506126cb565b8093505050505b919050565b505050565b61277f82826040518060200160405280600081525061291a565b5050565b60006127a48473ffffffffffffffffffffffffffffffffffffffff16611dba565b1561290d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127cd611ea3565b8786866040518563ffffffff1660e01b81526004016127ef94939291906135c2565b602060405180830381600087803b15801561280957600080fd5b505af192505050801561283a57506040513d601f19601f820116820180604052508101906128379190612f4c565b60015b6128bd573d806000811461286a576040519150601f19603f3d011682016040523d82523d6000602084013e61286f565b606091505b506000815114156128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac9061366d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612912565b600190505b949350505050565b6129248383612975565b6129316000848484612783565b612970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129679061366d565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dc906137cd565b60405180910390fd5b6129ee81611e37565b15612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a25906136ad565b60405180910390fd5b612a3a60008383612760565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8a9190613a4b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b4f90613c16565b90600052602060002090601f016020900481019282612b715760008555612bb8565b82601f10612b8a57805160ff1916838001178555612bb8565b82800160010185558215612bb8579182015b82811115612bb7578251825591602001919060010190612b9c565b5b509050612bc59190612bc9565b5090565b5b80821115612be2576000816000905550600101612bca565b5090565b6000612bf9612bf48461394d565b613928565b905082815260208101848484011115612c1557612c14613de3565b5b612c20848285613bd4565b509392505050565b6000612c3b612c368461397e565b613928565b905082815260208101848484011115612c5757612c56613de3565b5b612c62848285613bd4565b509392505050565b600081359050612c798161432b565b92915050565b600081359050612c8e81614342565b92915050565b600081359050612ca381614359565b92915050565b600081519050612cb881614359565b92915050565b600082601f830112612cd357612cd2613dde565b5b8135612ce3848260208601612be6565b91505092915050565b600082601f830112612d0157612d00613dde565b5b8135612d11848260208601612c28565b91505092915050565b600081359050612d2981614370565b92915050565b600060208284031215612d4557612d44613ded565b5b6000612d5384828501612c6a565b91505092915050565b60008060408385031215612d7357612d72613ded565b5b6000612d8185828601612c6a565b9250506020612d9285828601612c6a565b9150509250929050565b600080600060608486031215612db557612db4613ded565b5b6000612dc386828701612c6a565b9350506020612dd486828701612c6a565b9250506040612de586828701612d1a565b9150509250925092565b60008060008060808587031215612e0957612e08613ded565b5b6000612e1787828801612c6a565b9450506020612e2887828801612c6a565b9350506040612e3987828801612d1a565b925050606085013567ffffffffffffffff811115612e5a57612e59613de8565b5b612e6687828801612cbe565b91505092959194509250565b60008060408385031215612e8957612e88613ded565b5b6000612e9785828601612c6a565b9250506020612ea885828601612c7f565b9150509250929050565b60008060408385031215612ec957612ec8613ded565b5b6000612ed785828601612c6a565b9250506020612ee885828601612d1a565b9150509250929050565b600060208284031215612f0857612f07613ded565b5b6000612f1684828501612c7f565b91505092915050565b600060208284031215612f3557612f34613ded565b5b6000612f4384828501612c94565b91505092915050565b600060208284031215612f6257612f61613ded565b5b6000612f7084828501612ca9565b91505092915050565b600060208284031215612f8f57612f8e613ded565b5b600082013567ffffffffffffffff811115612fad57612fac613de8565b5b612fb984828501612cec565b91505092915050565b60008060408385031215612fd957612fd8613ded565b5b600083013567ffffffffffffffff811115612ff757612ff6613de8565b5b61300385828601612cec565b925050602061301485828601612d1a565b9150509250929050565b60006020828403121561303457613033613ded565b5b600061304284828501612d1a565b91505092915050565b6000806040838503121561306257613061613ded565b5b600061307085828601612d1a565b925050602061308185828601612c6a565b9150509250929050565b60006130978383613543565b60208301905092915050565b6130ac81613b60565b82525050565b60006130bd826139d4565b6130c78185613a02565b93506130d2836139af565b8060005b838110156131035781516130ea888261308b565b97506130f5836139f5565b9250506001810190506130d6565b5085935050505092915050565b61311981613b72565b82525050565b600061312a826139df565b6131348185613a13565b9350613144818560208601613be3565b61314d81613df2565b840191505092915050565b6000613163826139ea565b61316d8185613a2f565b935061317d818560208601613be3565b61318681613df2565b840191505092915050565b600061319c826139ea565b6131a68185613a40565b93506131b6818560208601613be3565b80840191505092915050565b600081546131cf81613c16565b6131d98186613a40565b945060018216600081146131f4576001811461320557613238565b60ff19831686528186019350613238565b61320e856139bf565b60005b8381101561323057815481890152600182019150602081019050613211565b838801955050505b50505092915050565b600061324e603283613a2f565b915061325982613e03565b604082019050919050565b6000613271602683613a2f565b915061327c82613e52565b604082019050919050565b6000613294601c83613a2f565b915061329f82613ea1565b602082019050919050565b60006132b7601483613a2f565b91506132c282613eca565b602082019050919050565b60006132da602483613a2f565b91506132e582613ef3565b604082019050919050565b60006132fd601983613a2f565b915061330882613f42565b602082019050919050565b6000613320601c83613a2f565b915061332b82613f6b565b602082019050919050565b6000613343602c83613a2f565b915061334e82613f94565b604082019050919050565b6000613366603883613a2f565b915061337182613fe3565b604082019050919050565b6000613389602a83613a2f565b915061339482614032565b604082019050919050565b60006133ac602983613a2f565b91506133b782614081565b604082019050919050565b60006133cf602083613a2f565b91506133da826140d0565b602082019050919050565b60006133f2602c83613a2f565b91506133fd826140f9565b604082019050919050565b6000613415602083613a2f565b915061342082614148565b602082019050919050565b6000613438602983613a2f565b915061344382614171565b604082019050919050565b600061345b602f83613a2f565b9150613466826141c0565b604082019050919050565b600061347e602183613a2f565b91506134898261420f565b604082019050919050565b60006134a1600083613a24565b91506134ac8261425e565b600082019050919050565b60006134c4601483613a2f565b91506134cf82614261565b602082019050919050565b60006134e7601f83613a2f565b91506134f28261428a565b602082019050919050565b600061350a603183613a2f565b9150613515826142b3565b604082019050919050565b600061352d601383613a2f565b915061353882614302565b602082019050919050565b61354c81613bca565b82525050565b61355b81613bca565b82525050565b600061356d8286613191565b91506135798285613191565b915061358582846131c2565b9150819050949350505050565b600061359d82613494565b9150819050919050565b60006020820190506135bc60008301846130a3565b92915050565b60006080820190506135d760008301876130a3565b6135e460208301866130a3565b6135f16040830185613552565b8181036060830152613603818461311f565b905095945050505050565b6000602082019050818103600083015261362881846130b2565b905092915050565b60006020820190506136456000830184613110565b92915050565b600060208201905081810360008301526136658184613158565b905092915050565b6000602082019050818103600083015261368681613241565b9050919050565b600060208201905081810360008301526136a681613264565b9050919050565b600060208201905081810360008301526136c681613287565b9050919050565b600060208201905081810360008301526136e6816132aa565b9050919050565b60006020820190508181036000830152613706816132cd565b9050919050565b60006020820190508181036000830152613726816132f0565b9050919050565b6000602082019050818103600083015261374681613313565b9050919050565b6000602082019050818103600083015261376681613336565b9050919050565b6000602082019050818103600083015261378681613359565b9050919050565b600060208201905081810360008301526137a68161337c565b9050919050565b600060208201905081810360008301526137c68161339f565b9050919050565b600060208201905081810360008301526137e6816133c2565b9050919050565b60006020820190508181036000830152613806816133e5565b9050919050565b6000602082019050818103600083015261382681613408565b9050919050565b600060208201905081810360008301526138468161342b565b9050919050565b600060208201905081810360008301526138668161344e565b9050919050565b6000602082019050818103600083015261388681613471565b9050919050565b600060208201905081810360008301526138a6816134b7565b9050919050565b600060208201905081810360008301526138c6816134da565b9050919050565b600060208201905081810360008301526138e6816134fd565b9050919050565b6000602082019050818103600083015261390681613520565b9050919050565b60006020820190506139226000830184613552565b92915050565b6000613932613943565b905061393e8282613c48565b919050565b6000604051905090565b600067ffffffffffffffff82111561396857613967613daf565b5b61397182613df2565b9050602081019050919050565b600067ffffffffffffffff82111561399957613998613daf565b5b6139a282613df2565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5682613bca565b9150613a6183613bca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9657613a95613cf3565b5b828201905092915050565b6000613aac82613bca565b9150613ab783613bca565b925082613ac757613ac6613d22565b5b828204905092915050565b6000613add82613bca565b9150613ae883613bca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2157613b20613cf3565b5b828202905092915050565b6000613b3782613bca565b9150613b4283613bca565b925082821015613b5557613b54613cf3565b5b828203905092915050565b6000613b6b82613baa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c01578082015181840152602081019050613be6565b83811115613c10576000848401525b50505050565b60006002820490506001821680613c2e57607f821691505b60208210811415613c4257613c41613d51565b5b50919050565b613c5182613df2565b810181811067ffffffffffffffff82111715613c7057613c6f613daf565b5b80604052505050565b6000613c8482613bca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb757613cb6613cf3565b5b600182019050919050565b6000613ccd82613bca565b9150613cd883613bca565b925082613ce857613ce7613d22565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f7520646f206e6f74206f776e20746861742061766f6361646f2100000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f43616e6e6f74206f776e206d6f7265207468616e20352041766f6361646f7300600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61433481613b60565b811461433f57600080fd5b50565b61434b81613b72565b811461435657600080fd5b50565b61436281613b7e565b811461436d57600080fd5b50565b61437981613bca565b811461438457600080fd5b5056fea2646970667358221220b97f7f16bf5dd86a8524b05f53292bf0ae2b309eae86d8601134efc7b0375fa264736f6c63430008070033697066733a2f2f516d5a473478793637526f547532344a535a417970434c6152364477336461724e437879315442724235344b74382f68696464656e2e6a736f6e697066733a2f2f516d5179634876677a3743685951455446637870637467716332646f64714b53627955447062706835734b714b532f

Deployed Bytecode

0x60806040526004361061020f5760003560e01c806370a0823111610118578063a45ba8e7116100a0578063d5abeb011161006f578063d5abeb0114610793578063e0a80853146107be578063e985e9c5146107e7578063efbd73f414610824578063f2fde38b1461084d5761020f565b8063a45ba8e7146106d9578063b071401b14610704578063b88d4fde1461072d578063c87b56dd146107565761020f565b80638da5cb5b116100e75780638da5cb5b1461061357806394354fd01461063e57806395d89b4114610669578063a0712d6814610694578063a22cb465146106b05761020f565b806370a0823114610559578063715018a6146105965780637c2aa1b5146105ad5780637ec4a659146105ea5761020f565b80633ccfd60b1161019b5780634fdd43cb1161016a5780634fdd43cb14610472578063518302271461049b5780635503a0e8146104c657806362b99ad4146104f15780636352211e1461051c5761020f565b80633ccfd60b146103b857806342842e0e146103cf578063438b6300146103f85780634622ab03146104355761020f565b806311b4a832116101e257806311b4a832146102e257806316ba10e01461031f57806318160ddd1461034857806323b872dd146103735780633baa81701461039c5761020f565b806301ffc9a71461021457806306fdde0314610251578063081812fc1461027c578063095ea7b3146102b9575b600080fd5b34801561022057600080fd5b5061023b60048036038101906102369190612f1f565b610876565b6040516102489190613630565b60405180910390f35b34801561025d57600080fd5b50610266610958565b604051610273919061364b565b60405180910390f35b34801561028857600080fd5b506102a3600480360381019061029e919061301e565b6109ea565b6040516102b091906135a7565b60405180910390f35b3480156102c557600080fd5b506102e060048036038101906102db9190612eb2565b610a6f565b005b3480156102ee57600080fd5b506103096004803603810190610304919061301e565b610b87565b604051610316919061390d565b60405180910390f35b34801561032b57600080fd5b5061034660048036038101906103419190612f79565b610bef565b005b34801561035457600080fd5b5061035d610c85565b60405161036a919061390d565b60405180910390f35b34801561037f57600080fd5b5061039a60048036038101906103959190612d9c565b610c96565b005b6103b660048036038101906103b19190612fc2565b610cf6565b005b3480156103c457600080fd5b506103cd610dcd565b005b3480156103db57600080fd5b506103f660048036038101906103f19190612d9c565b610ec9565b005b34801561040457600080fd5b5061041f600480360381019061041a9190612d2f565b610ee9565b60405161042c919061360e565b60405180910390f35b34801561044157600080fd5b5061045c6004803603810190610457919061301e565b610ff4565b604051610469919061364b565b60405180910390f35b34801561047e57600080fd5b5061049960048036038101906104949190612f79565b611094565b005b3480156104a757600080fd5b506104b061112a565b6040516104bd9190613630565b60405180910390f35b3480156104d257600080fd5b506104db61113d565b6040516104e8919061364b565b60405180910390f35b3480156104fd57600080fd5b506105066111cb565b604051610513919061364b565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e919061301e565b611259565b60405161055091906135a7565b60405180910390f35b34801561056557600080fd5b50610580600480360381019061057b9190612d2f565b61130b565b60405161058d919061390d565b60405180910390f35b3480156105a257600080fd5b506105ab6113c3565b005b3480156105b957600080fd5b506105d460048036038101906105cf919061301e565b61144b565b6040516105e191906135a7565b60405180910390f35b3480156105f657600080fd5b50610611600480360381019061060c9190612f79565b61148a565b005b34801561061f57600080fd5b50610628611520565b60405161063591906135a7565b60405180910390f35b34801561064a57600080fd5b5061065361154a565b604051610660919061390d565b60405180910390f35b34801561067557600080fd5b5061067e611550565b60405161068b919061364b565b60405180910390f35b6106ae60048036038101906106a9919061301e565b6115e2565b005b3480156106bc57600080fd5b506106d760048036038101906106d29190612e72565b611750565b005b3480156106e557600080fd5b506106ee611766565b6040516106fb919061364b565b60405180910390f35b34801561071057600080fd5b5061072b6004803603810190610726919061301e565b6117f4565b005b34801561073957600080fd5b50610754600480360381019061074f9190612def565b61187a565b005b34801561076257600080fd5b5061077d6004803603810190610778919061301e565b6118dc565b60405161078a919061364b565b60405180910390f35b34801561079f57600080fd5b506107a8611a35565b6040516107b5919061390d565b60405180910390f35b3480156107ca57600080fd5b506107e560048036038101906107e09190612ef2565b611a3b565b005b3480156107f357600080fd5b5061080e60048036038101906108099190612d5c565b611ad4565b60405161081b9190613630565b60405180910390f35b34801561083057600080fd5b5061084b6004803603810190610846919061304b565b611b68565b005b34801561085957600080fd5b50610874600480360381019061086f9190612d2f565b611c9e565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061094157507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610951575061095082611dcd565b5b9050919050565b60606000805461096790613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461099390613c16565b80156109e05780601f106109b5576101008083540402835291602001916109e0565b820191906000526020600020905b8154815290600101906020018083116109c357829003601f168201915b5050505050905090565b60006109f582611e37565b610a34576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2b906137ed565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a7a82611259565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae29061386d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610b0a611ea3565b73ffffffffffffffffffffffffffffffffffffffff161480610b395750610b3881610b33611ea3565b611ad4565b5b610b78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b6f9061376d565b60405180910390fd5b610b828383611eab565b505050565b60006109c4821015610b9c5760009050610bea565b611388821015610bb55766d529ae9e8600009050610bea565b611d4c821015610bcf5767011c37937e0800009050610bea565b600b54821015610be95767016345785d8a00009050610bea565b5b919050565b610bf7611ea3565b73ffffffffffffffffffffffffffffffffffffffff16610c15611520565b73ffffffffffffffffffffffffffffffffffffffff1614610c6b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c629061380d565b60405180910390fd5b8060099080519060200190610c81929190612b43565b5050565b6000610c916007611dac565b905090565b610ca7610ca1611ea3565b82611f64565b610ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cdd906138cd565b60405180910390fd5b610cf1838383612042565b505050565b6611c37937e08000341015610d0a57600080fd5b600080610d1633610ee9565b905060005b8151811015610d5e57818181518110610d3757610d36613d80565b5b6020026020010151841415610d4b57600192505b8080610d5690613c79565b915050610d1b565b5081610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d969061372d565b60405180910390fd5b83600e60008581526020019081526020016000209080519060200190610dc6929190612b43565b5050505050565b610dd5611ea3565b73ffffffffffffffffffffffffffffffffffffffff16610df3611520565b73ffffffffffffffffffffffffffffffffffffffff1614610e49576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e409061380d565b60405180910390fd5b6000610e53611520565b73ffffffffffffffffffffffffffffffffffffffff1647604051610e7690613592565b60006040518083038185875af1925050503d8060008114610eb3576040519150601f19603f3d011682016040523d82523d6000602084013e610eb8565b606091505b5050905080610ec657600080fd5b50565b610ee48383836040518060200160405280600081525061187a565b505050565b60606000610ef68361130b565b905060008167ffffffffffffffff811115610f1457610f13613daf565b5b604051908082528060200260200182016040528015610f425781602001602082028036833780820191505090505b50905060006001905060005b8381108015610f5f5750600b548211155b15610fe8576000610f6f83611259565b90508673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610fd45782848381518110610fb957610fb8613d80565b5b6020026020010181815250508180610fd090613c79565b9250505b8280610fdf90613c79565b93505050610f4e565b82945050505050919050565b600e602052806000526040600020600091509050805461101390613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461103f90613c16565b801561108c5780601f106110615761010080835404028352916020019161108c565b820191906000526020600020905b81548152906001019060200180831161106f57829003601f168201915b505050505081565b61109c611ea3565b73ffffffffffffffffffffffffffffffffffffffff166110ba611520565b73ffffffffffffffffffffffffffffffffffffffff1614611110576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111079061380d565b60405180910390fd5b80600a9080519060200190611126929190612b43565b5050565b600d60009054906101000a900460ff1681565b6009805461114a90613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461117690613c16565b80156111c35780601f10611198576101008083540402835291602001916111c3565b820191906000526020600020905b8154815290600101906020018083116111a657829003601f168201915b505050505081565b600880546111d890613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461120490613c16565b80156112515780601f1061122657610100808354040283529160200191611251565b820191906000526020600020905b81548152906001019060200180831161123457829003601f168201915b505050505081565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611302576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112f9906137ad565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561137c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113739061378d565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6113cb611ea3565b73ffffffffffffffffffffffffffffffffffffffff166113e9611520565b73ffffffffffffffffffffffffffffffffffffffff161461143f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114369061380d565b60405180910390fd5b611449600061229e565b565b600f818154811061145b57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b611492611ea3565b73ffffffffffffffffffffffffffffffffffffffff166114b0611520565b73ffffffffffffffffffffffffffffffffffffffff1614611506576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fd9061380d565b60405180910390fd5b806008908051906020019061151c929190612b43565b5050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600c5481565b60606001805461155f90613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461158b90613c16565b80156115d85780601f106115ad576101008083540402835291602001916115d8565b820191906000526020600020905b8154815290600101906020018083116115bb57829003601f168201915b5050505050905090565b806000811180156115f55750600c548111155b611634576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162b906136cd565b60405180910390fd5b600b54816116426007611dac565b61164c9190613a4b565b111561168d576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116849061388d565b60405180910390fd5b816116a061169b6007611dac565b610b87565b6116aa9190613ad2565b3410156116ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116e3906138ed565b60405180910390fd5b6006826116f83361130b565b6117029190613a4b565b10611742576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611739906138ad565b60405180910390fd5b61174c3383612364565b5050565b61176261175b611ea3565b83836123a4565b5050565b600a805461177390613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461179f90613c16565b80156117ec5780601f106117c1576101008083540402835291602001916117ec565b820191906000526020600020905b8154815290600101906020018083116117cf57829003601f168201915b505050505081565b6117fc611ea3565b73ffffffffffffffffffffffffffffffffffffffff1661181a611520565b73ffffffffffffffffffffffffffffffffffffffff1614611870576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118679061380d565b60405180910390fd5b80600c8190555050565b61188b611885611ea3565b83611f64565b6118ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c1906138cd565b60405180910390fd5b6118d684848484612511565b50505050565b60606118e782611e37565b611926576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161191d9061384d565b60405180910390fd5b60001515600d60009054906101000a900460ff16151514156119d457600a805461194f90613c16565b80601f016020809104026020016040519081016040528092919081815260200182805461197b90613c16565b80156119c85780601f1061199d576101008083540402835291602001916119c8565b820191906000526020600020905b8154815290600101906020018083116119ab57829003601f168201915b50505050509050611a30565b60006119de61256d565b905060008151116119fe5760405180602001604052806000815250611a2c565b80611a08846125ff565b6009604051602001611a1c93929190613561565b6040516020818303038152906040525b9150505b919050565b600b5481565b611a43611ea3565b73ffffffffffffffffffffffffffffffffffffffff16611a61611520565b73ffffffffffffffffffffffffffffffffffffffff1614611ab7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aae9061380d565b60405180910390fd5b80600d60006101000a81548160ff02191690831515021790555050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b81600081118015611b7b5750600c548111155b611bba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bb1906136cd565b60405180910390fd5b600b5481611bc86007611dac565b611bd29190613a4b565b1115611c13576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0a9061388d565b60405180910390fd5b611c1b611ea3565b73ffffffffffffffffffffffffffffffffffffffff16611c39611520565b73ffffffffffffffffffffffffffffffffffffffff1614611c8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c869061380d565b60405180910390fd5b611c998284612364565b505050565b611ca6611ea3565b73ffffffffffffffffffffffffffffffffffffffff16611cc4611520565b73ffffffffffffffffffffffffffffffffffffffff1614611d1a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d119061380d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611d8a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d819061368d565b60405180910390fd5b611d938161229e565b50565b6001816000016000828254019250508190555050565b600081600001549050919050565b600080823b905060008111915050919050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16611f1e83611259565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611f6f82611e37565b611fae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa59061374d565b60405180910390fd5b6000611fb983611259565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16148061202857508373ffffffffffffffffffffffffffffffffffffffff16612010846109ea565b73ffffffffffffffffffffffffffffffffffffffff16145b8061203957506120388185611ad4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661206282611259565b73ffffffffffffffffffffffffffffffffffffffff16146120b8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120af9061382d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612128576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161211f906136ed565b60405180910390fd5b612133838383612760565b61213e600082611eab565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461218e9190613b2c565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546121e59190613a4b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60005b8181101561239f576123796007611d96565b61238c836123876007611dac565b612765565b808061239790613c79565b915050612367565b505050565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612413576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240a9061370d565b60405180910390fd5b80600560008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516125049190613630565b60405180910390a3505050565b61251c848484612042565b61252884848484612783565b612567576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255e9061366d565b60405180910390fd5b50505050565b60606008805461257c90613c16565b80601f01602080910402602001604051908101604052809291908181526020018280546125a890613c16565b80156125f55780601f106125ca576101008083540402835291602001916125f5565b820191906000526020600020905b8154815290600101906020018083116125d857829003601f168201915b5050505050905090565b60606000821415612647576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061275b565b600082905060005b6000821461267957808061266290613c79565b915050600a826126729190613aa1565b915061264f565b60008167ffffffffffffffff81111561269557612694613daf565b5b6040519080825280601f01601f1916602001820160405280156126c75781602001600182028036833780820191505090505b5090505b60008514612754576001826126e09190613b2c565b9150600a856126ef9190613cc2565b60306126fb9190613a4b565b60f81b81838151811061271157612710613d80565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561274d9190613aa1565b94506126cb565b8093505050505b919050565b505050565b61277f82826040518060200160405280600081525061291a565b5050565b60006127a48473ffffffffffffffffffffffffffffffffffffffff16611dba565b1561290d578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026127cd611ea3565b8786866040518563ffffffff1660e01b81526004016127ef94939291906135c2565b602060405180830381600087803b15801561280957600080fd5b505af192505050801561283a57506040513d601f19601f820116820180604052508101906128379190612f4c565b60015b6128bd573d806000811461286a576040519150601f19603f3d011682016040523d82523d6000602084013e61286f565b606091505b506000815114156128b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128ac9061366d565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050612912565b600190505b949350505050565b6129248383612975565b6129316000848484612783565b612970576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129679061366d565b60405180910390fd5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129dc906137cd565b60405180910390fd5b6129ee81611e37565b15612a2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a25906136ad565b60405180910390fd5b612a3a60008383612760565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a8a9190613a4b565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b828054612b4f90613c16565b90600052602060002090601f016020900481019282612b715760008555612bb8565b82601f10612b8a57805160ff1916838001178555612bb8565b82800160010185558215612bb8579182015b82811115612bb7578251825591602001919060010190612b9c565b5b509050612bc59190612bc9565b5090565b5b80821115612be2576000816000905550600101612bca565b5090565b6000612bf9612bf48461394d565b613928565b905082815260208101848484011115612c1557612c14613de3565b5b612c20848285613bd4565b509392505050565b6000612c3b612c368461397e565b613928565b905082815260208101848484011115612c5757612c56613de3565b5b612c62848285613bd4565b509392505050565b600081359050612c798161432b565b92915050565b600081359050612c8e81614342565b92915050565b600081359050612ca381614359565b92915050565b600081519050612cb881614359565b92915050565b600082601f830112612cd357612cd2613dde565b5b8135612ce3848260208601612be6565b91505092915050565b600082601f830112612d0157612d00613dde565b5b8135612d11848260208601612c28565b91505092915050565b600081359050612d2981614370565b92915050565b600060208284031215612d4557612d44613ded565b5b6000612d5384828501612c6a565b91505092915050565b60008060408385031215612d7357612d72613ded565b5b6000612d8185828601612c6a565b9250506020612d9285828601612c6a565b9150509250929050565b600080600060608486031215612db557612db4613ded565b5b6000612dc386828701612c6a565b9350506020612dd486828701612c6a565b9250506040612de586828701612d1a565b9150509250925092565b60008060008060808587031215612e0957612e08613ded565b5b6000612e1787828801612c6a565b9450506020612e2887828801612c6a565b9350506040612e3987828801612d1a565b925050606085013567ffffffffffffffff811115612e5a57612e59613de8565b5b612e6687828801612cbe565b91505092959194509250565b60008060408385031215612e8957612e88613ded565b5b6000612e9785828601612c6a565b9250506020612ea885828601612c7f565b9150509250929050565b60008060408385031215612ec957612ec8613ded565b5b6000612ed785828601612c6a565b9250506020612ee885828601612d1a565b9150509250929050565b600060208284031215612f0857612f07613ded565b5b6000612f1684828501612c7f565b91505092915050565b600060208284031215612f3557612f34613ded565b5b6000612f4384828501612c94565b91505092915050565b600060208284031215612f6257612f61613ded565b5b6000612f7084828501612ca9565b91505092915050565b600060208284031215612f8f57612f8e613ded565b5b600082013567ffffffffffffffff811115612fad57612fac613de8565b5b612fb984828501612cec565b91505092915050565b60008060408385031215612fd957612fd8613ded565b5b600083013567ffffffffffffffff811115612ff757612ff6613de8565b5b61300385828601612cec565b925050602061301485828601612d1a565b9150509250929050565b60006020828403121561303457613033613ded565b5b600061304284828501612d1a565b91505092915050565b6000806040838503121561306257613061613ded565b5b600061307085828601612d1a565b925050602061308185828601612c6a565b9150509250929050565b60006130978383613543565b60208301905092915050565b6130ac81613b60565b82525050565b60006130bd826139d4565b6130c78185613a02565b93506130d2836139af565b8060005b838110156131035781516130ea888261308b565b97506130f5836139f5565b9250506001810190506130d6565b5085935050505092915050565b61311981613b72565b82525050565b600061312a826139df565b6131348185613a13565b9350613144818560208601613be3565b61314d81613df2565b840191505092915050565b6000613163826139ea565b61316d8185613a2f565b935061317d818560208601613be3565b61318681613df2565b840191505092915050565b600061319c826139ea565b6131a68185613a40565b93506131b6818560208601613be3565b80840191505092915050565b600081546131cf81613c16565b6131d98186613a40565b945060018216600081146131f4576001811461320557613238565b60ff19831686528186019350613238565b61320e856139bf565b60005b8381101561323057815481890152600182019150602081019050613211565b838801955050505b50505092915050565b600061324e603283613a2f565b915061325982613e03565b604082019050919050565b6000613271602683613a2f565b915061327c82613e52565b604082019050919050565b6000613294601c83613a2f565b915061329f82613ea1565b602082019050919050565b60006132b7601483613a2f565b91506132c282613eca565b602082019050919050565b60006132da602483613a2f565b91506132e582613ef3565b604082019050919050565b60006132fd601983613a2f565b915061330882613f42565b602082019050919050565b6000613320601c83613a2f565b915061332b82613f6b565b602082019050919050565b6000613343602c83613a2f565b915061334e82613f94565b604082019050919050565b6000613366603883613a2f565b915061337182613fe3565b604082019050919050565b6000613389602a83613a2f565b915061339482614032565b604082019050919050565b60006133ac602983613a2f565b91506133b782614081565b604082019050919050565b60006133cf602083613a2f565b91506133da826140d0565b602082019050919050565b60006133f2602c83613a2f565b91506133fd826140f9565b604082019050919050565b6000613415602083613a2f565b915061342082614148565b602082019050919050565b6000613438602983613a2f565b915061344382614171565b604082019050919050565b600061345b602f83613a2f565b9150613466826141c0565b604082019050919050565b600061347e602183613a2f565b91506134898261420f565b604082019050919050565b60006134a1600083613a24565b91506134ac8261425e565b600082019050919050565b60006134c4601483613a2f565b91506134cf82614261565b602082019050919050565b60006134e7601f83613a2f565b91506134f28261428a565b602082019050919050565b600061350a603183613a2f565b9150613515826142b3565b604082019050919050565b600061352d601383613a2f565b915061353882614302565b602082019050919050565b61354c81613bca565b82525050565b61355b81613bca565b82525050565b600061356d8286613191565b91506135798285613191565b915061358582846131c2565b9150819050949350505050565b600061359d82613494565b9150819050919050565b60006020820190506135bc60008301846130a3565b92915050565b60006080820190506135d760008301876130a3565b6135e460208301866130a3565b6135f16040830185613552565b8181036060830152613603818461311f565b905095945050505050565b6000602082019050818103600083015261362881846130b2565b905092915050565b60006020820190506136456000830184613110565b92915050565b600060208201905081810360008301526136658184613158565b905092915050565b6000602082019050818103600083015261368681613241565b9050919050565b600060208201905081810360008301526136a681613264565b9050919050565b600060208201905081810360008301526136c681613287565b9050919050565b600060208201905081810360008301526136e6816132aa565b9050919050565b60006020820190508181036000830152613706816132cd565b9050919050565b60006020820190508181036000830152613726816132f0565b9050919050565b6000602082019050818103600083015261374681613313565b9050919050565b6000602082019050818103600083015261376681613336565b9050919050565b6000602082019050818103600083015261378681613359565b9050919050565b600060208201905081810360008301526137a68161337c565b9050919050565b600060208201905081810360008301526137c68161339f565b9050919050565b600060208201905081810360008301526137e6816133c2565b9050919050565b60006020820190508181036000830152613806816133e5565b9050919050565b6000602082019050818103600083015261382681613408565b9050919050565b600060208201905081810360008301526138468161342b565b9050919050565b600060208201905081810360008301526138668161344e565b9050919050565b6000602082019050818103600083015261388681613471565b9050919050565b600060208201905081810360008301526138a6816134b7565b9050919050565b600060208201905081810360008301526138c6816134da565b9050919050565b600060208201905081810360008301526138e6816134fd565b9050919050565b6000602082019050818103600083015261390681613520565b9050919050565b60006020820190506139226000830184613552565b92915050565b6000613932613943565b905061393e8282613c48565b919050565b6000604051905090565b600067ffffffffffffffff82111561396857613967613daf565b5b61397182613df2565b9050602081019050919050565b600067ffffffffffffffff82111561399957613998613daf565b5b6139a282613df2565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613a5682613bca565b9150613a6183613bca565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613a9657613a95613cf3565b5b828201905092915050565b6000613aac82613bca565b9150613ab783613bca565b925082613ac757613ac6613d22565b5b828204905092915050565b6000613add82613bca565b9150613ae883613bca565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613b2157613b20613cf3565b5b828202905092915050565b6000613b3782613bca565b9150613b4283613bca565b925082821015613b5557613b54613cf3565b5b828203905092915050565b6000613b6b82613baa565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613c01578082015181840152602081019050613be6565b83811115613c10576000848401525b50505050565b60006002820490506001821680613c2e57607f821691505b60208210811415613c4257613c41613d51565b5b50919050565b613c5182613df2565b810181811067ffffffffffffffff82111715613c7057613c6f613daf565b5b80604052505050565b6000613c8482613bca565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613cb757613cb6613cf3565b5b600182019050919050565b6000613ccd82613bca565b9150613cd883613bca565b925082613ce857613ce7613d22565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f596f7520646f206e6f74206f776e20746861742061766f6361646f2100000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b50565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b7f43616e6e6f74206f776e206d6f7265207468616e20352041766f6361646f7300600082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b61433481613b60565b811461433f57600080fd5b50565b61434b81613b72565b811461435657600080fd5b50565b61436281613b7e565b811461436d57600080fd5b50565b61437981613bca565b811461438457600080fd5b5056fea2646970667358221220b97f7f16bf5dd86a8524b05f53292bf0ae2b309eae86d8601134efc7b0375fa264736f6c63430008070033

Deployed Bytecode Sourcemap

37753:5663:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25240:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26185:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27744:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27267:411;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40402:346;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42850:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40307:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28494:339;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39886:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42956:137;;;;;;;;;;;;;:::i;:::-;;28904:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41240:635;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38184:36;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42606:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38149:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37992:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37905:82;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25879:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25609:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6228:103;;;;;;;;;;;;;:::i;:::-;;38227:34;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42744:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5577:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38105:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26354:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40754:317;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28037:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38030:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42470:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;29160:328;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41881:494;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38068:32;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42381:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28263:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;41079:155;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6486:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25240:305;25342:4;25394:25;25379:40;;;:11;:40;;;;:105;;;;25451:33;25436:48;;;:11;:48;;;;25379:105;:158;;;;25501:36;25525:11;25501:23;:36::i;:::-;25379:158;25359:178;;25240:305;;;:::o;26185:100::-;26239:13;26272:5;26265:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26185:100;:::o;27744:221::-;27820:7;27848:16;27856:7;27848;:16::i;:::-;27840:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27933:15;:24;27949:7;27933:24;;;;;;;;;;;;;;;;;;;;;27926:31;;27744:221;;;:::o;27267:411::-;27348:13;27364:23;27379:7;27364:14;:23::i;:::-;27348:39;;27412:5;27406:11;;:2;:11;;;;27398:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;27506:5;27490:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;27515:37;27532:5;27539:12;:10;:12::i;:::-;27515:16;:37::i;:::-;27490:62;27468:168;;;;;;;;;;;;:::i;:::-;;;;;;;;;27649:21;27658:2;27662:7;27649:8;:21::i;:::-;27337:341;27267:411;;:::o;40402:346::-;40459:13;40495:4;40485:7;:14;40482:56;;;40521:7;40514:14;;;;40482:56;40559:4;40549:7;:14;40546:59;;;40585:10;40578:17;;;;40546:59;40626:4;40616:7;:14;40613:59;;;40652:10;40645:17;;;;40613:59;40693:9;;40683:7;:19;40680:63;;;40724:9;40717:16;;;;40680:63;40402:346;;;;:::o;42850:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42934:10:::1;42922:9;:22;;;;;;;;;;;;:::i;:::-;;42850:100:::0;:::o;40307:89::-;40351:7;40374:16;:6;:14;:16::i;:::-;40367:23;;40307:89;:::o;28494:339::-;28689:41;28708:12;:10;:12::i;:::-;28722:7;28689:18;:41::i;:::-;28681:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28797:28;28807:4;28813:2;28817:7;28797:9;:28::i;:::-;28494:339;;;:::o;39886:415::-;39985:11;39972:9;:24;;39964:33;;;;;;40004:11;40030:25;40058;40072:10;40058:13;:25::i;:::-;40030:53;;40094:9;40090:122;40109:11;:18;40107:1;:20;40090:122;;;40156:11;40168:1;40156:14;;;;;;;;:::i;:::-;;;;;;;;40144:8;:26;40141:64;;;40191:4;40182:13;;40141:64;40128:3;;;;;:::i;:::-;;;;40090:122;;;;40226:6;40218:47;;;;;;;;;;;;:::i;:::-;;;;;;;;;40290:5;40272;:15;40278:8;40272:15;;;;;;;;;;;:23;;;;;;;;;;;;:::i;:::-;;39957:344;;39886:415;;:::o;42956:137::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43001:7:::1;43022;:5;:7::i;:::-;43014:21;;43043;43014:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43000:69;;;43084:2;43076:11;;;::::0;::::1;;42993:100;42956:137::o:0;28904:185::-;29042:39;29059:4;29065:2;29069:7;29042:39;;;;;;;;;;;;:16;:39::i;:::-;28904:185;;;:::o;41240:635::-;41315:16;41343:23;41369:17;41379:6;41369:9;:17::i;:::-;41343:43;;41393:30;41440:15;41426:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41393:63;;41463:22;41488:1;41463:26;;41496:23;41532:309;41557:15;41539;:33;:64;;;;;41594:9;;41576:14;:27;;41539:64;41532:309;;;41614:25;41642:23;41650:14;41642:7;:23::i;:::-;41614:51;;41701:6;41680:27;;:17;:27;;;41676:131;;;41753:14;41720:13;41734:15;41720:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;41780:17;;;;;:::i;:::-;;;;41676:131;41817:16;;;;;:::i;:::-;;;;41605:236;41532:309;;;41856:13;41849:20;;;;;;41240:635;;;:::o;38184:36::-;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42606:132::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42714:18:::1;42694:17;:38;;;;;;;;;;;;:::i;:::-;;42606:132:::0;:::o;38149:28::-;;;;;;;;;;;;;:::o;37992:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37905:82::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;25879:239::-;25951:7;25971:13;25987:7;:16;25995:7;25987:16;;;;;;;;;;;;;;;;;;;;;25971:32;;26039:1;26022:19;;:5;:19;;;;26014:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26105:5;26098:12;;;25879:239;;;:::o;25609:208::-;25681:7;25726:1;25709:19;;:5;:19;;;;25701:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;25793:9;:16;25803:5;25793:16;;;;;;;;;;;;;;;;25786:23;;25609:208;;;:::o;6228:103::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6293:30:::1;6320:1;6293:18;:30::i;:::-;6228:103::o:0;38227:34::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42744:100::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42828:10:::1;42816:9;:22;;;;;;;;;;;;:::i;:::-;;42744:100:::0;:::o;5577:87::-;5623:7;5650:6;;;;;;;;;;;5643:13;;5577:87;:::o;38105:37::-;;;;:::o;26354:104::-;26410:13;26443:7;26436:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26354:104;:::o;40754:317::-;40819:11;39720:1;39706:11;:15;:52;;;;;39740:18;;39725:11;:33;;39706:52;39698:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39832:9;;39817:11;39798:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39790:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;40895:11:::1;40865:27;40875:16;:6;:14;:16::i;:::-;40865:9;:27::i;:::-;:41;;;;:::i;:::-;40852:9;:54;;40844:86;;;;;;;;;;;;:::i;:::-;;;;;;;;;40985:1;40970:11;40946:21;40956:10;40946:9;:21::i;:::-;:35;;;;:::i;:::-;40945:41;40937:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;41031:34;41041:10;41053:11;41031:9;:34::i;:::-;40754:317:::0;;:::o;28037:155::-;28132:52;28151:12;:10;:12::i;:::-;28165:8;28175;28132:18;:52::i;:::-;28037:155;;:::o;38030:31::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;42470:130::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42575:19:::1;42554:18;:40;;;;42470:130:::0;:::o;29160:328::-;29335:41;29354:12;:10;:12::i;:::-;29368:7;29335:18;:41::i;:::-;29327:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;29441:39;29455:4;29461:2;29465:7;29474:5;29441:13;:39::i;:::-;29160:328;;;;:::o;41881:494::-;41980:13;42021:17;42029:8;42021:7;:17::i;:::-;42005:98;;;;;;;;;;;;:::i;:::-;;;;;;;;;42128:5;42116:17;;:8;;;;;;;;;;;:17;;;42112:64;;;42151:17;42144:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42112:64;42184:28;42215:10;:8;:10::i;:::-;42184:41;;42270:1;42245:14;42239:28;:32;:130;;;;;;;;;;;;;;;;;42307:14;42323:19;:8;:17;:19::i;:::-;42344:9;42290:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;42239:130;42232:137;;;41881:494;;;;:::o;38068:32::-;;;;:::o;42381:81::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42450:6:::1;42439:8;;:17;;;;;;;;;;;;;;;;;;42381:81:::0;:::o;28263:164::-;28360:4;28384:18;:25;28403:5;28384:25;;;;;;;;;;;;;;;:35;28410:8;28384:35;;;;;;;;;;;;;;;;;;;;;;;;;28377:42;;28263:164;;;;:::o;41079:155::-;41165:11;39720:1;39706:11;:15;:52;;;;;39740:18;;39725:11;:33;;39706:52;39698:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;39832:9;;39817:11;39798:16;:6;:14;:16::i;:::-;:30;;;;:::i;:::-;:43;;39790:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;5808:12:::1;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41195:33:::2;41205:9;41216:11;41195:9;:33::i;:::-;41079:155:::0;;;:::o;6486:201::-;5808:12;:10;:12::i;:::-;5797:23;;:7;:5;:7::i;:::-;:23;;;5789:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6595:1:::1;6575:22;;:8;:22;;;;6567:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;6651:28;6670:8;6651:18;:28::i;:::-;6486:201:::0;:::o;1027:127::-;1134:1;1116:7;:14;;;:19;;;;;;;;;;;1027:127;:::o;905:114::-;970:7;997;:14;;;990:21;;905:114;;;:::o;7865:387::-;7925:4;8133:12;8200:7;8188:20;8180:28;;8243:1;8236:4;:8;8229:15;;;7865:387;;;:::o;18009:157::-;18094:4;18133:25;18118:40;;;:11;:40;;;;18111:47;;18009:157;;;:::o;30998:127::-;31063:4;31115:1;31087:30;;:7;:16;31095:7;31087:16;;;;;;;;;;;;;;;;;;;;;:30;;;;31080:37;;30998:127;;;:::o;4301:98::-;4354:7;4381:10;4374:17;;4301:98;:::o;34980:174::-;35082:2;35055:15;:24;35071:7;35055:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35138:7;35134:2;35100:46;;35109:23;35124:7;35109:14;:23::i;:::-;35100:46;;;;;;;;;;;;34980:174;;:::o;31292:348::-;31385:4;31410:16;31418:7;31410;:16::i;:::-;31402:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;31486:13;31502:23;31517:7;31502:14;:23::i;:::-;31486:39;;31555:5;31544:16;;:7;:16;;;:51;;;;31588:7;31564:31;;:20;31576:7;31564:11;:20::i;:::-;:31;;;31544:51;:87;;;;31599:32;31616:5;31623:7;31599:16;:32::i;:::-;31544:87;31536:96;;;31292:348;;;;:::o;34284:578::-;34443:4;34416:31;;:23;34431:7;34416:14;:23::i;:::-;:31;;;34408:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;34526:1;34512:16;;:2;:16;;;;34504:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;34582:39;34603:4;34609:2;34613:7;34582:20;:39::i;:::-;34686:29;34703:1;34707:7;34686:8;:29::i;:::-;34747:1;34728:9;:15;34738:4;34728:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;34776:1;34759:9;:13;34769:2;34759:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34807:2;34788:7;:16;34796:7;34788:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34846:7;34842:2;34827:27;;34836:4;34827:27;;;;;;;;;;;;34284:578;;;:::o;6847:191::-;6921:16;6940:6;;;;;;;;;;;6921:25;;6966:8;6957:6;;:17;;;;;;;;;;;;;;;;;;7021:8;6990:40;;7011:8;6990:40;;;;;;;;;;;;6910:128;6847:191;:::o;43099:204::-;43179:9;43174:124;43198:11;43194:1;:15;43174:124;;;43225:18;:6;:16;:18::i;:::-;43252:38;43262:9;43273:16;:6;:14;:16::i;:::-;43252:9;:38::i;:::-;43211:3;;;;;:::i;:::-;;;;43174:124;;;;43099:204;;:::o;35296:315::-;35451:8;35442:17;;:5;:17;;;;35434:55;;;;;;;;;;;;:::i;:::-;;;;;;;;;35538:8;35500:18;:25;35519:5;35500:25;;;;;;;;;;;;;;;:35;35526:8;35500:35;;;;;;;;;;;;;;;;:46;;;;;;;;;;;;;;;;;;35584:8;35562:41;;35577:5;35562:41;;;35594:8;35562:41;;;;;;:::i;:::-;;;;;;;;35296:315;;;:::o;30370:::-;30527:28;30537:4;30543:2;30547:7;30527:9;:28::i;:::-;30574:48;30597:4;30603:2;30607:7;30616:5;30574:22;:48::i;:::-;30566:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;30370:315;;;;:::o;43309:104::-;43369:13;43398:9;43391:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43309:104;:::o;1863:723::-;1919:13;2149:1;2140:5;:10;2136:53;;;2167:10;;;;;;;;;;;;;;;;;;;;;2136:53;2199:12;2214:5;2199:20;;2230:14;2255:78;2270:1;2262:4;:9;2255:78;;2288:8;;;;;:::i;:::-;;;;2319:2;2311:10;;;;;:::i;:::-;;;2255:78;;;2343:19;2375:6;2365:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2343:39;;2393:154;2409:1;2400:5;:10;2393:154;;2437:1;2427:11;;;;;:::i;:::-;;;2504:2;2496:5;:10;;;;:::i;:::-;2483:2;:24;;;;:::i;:::-;2470:39;;2453:6;2460;2453:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;2533:2;2524:11;;;;;:::i;:::-;;;2393:154;;;2571:6;2557:21;;;;;1863:723;;;;:::o;37547:126::-;;;;:::o;31982:110::-;32058:26;32068:2;32072:7;32058:26;;;;;;;;;;;;:9;:26::i;:::-;31982:110;;:::o;36176:799::-;36331:4;36352:15;:2;:13;;;:15::i;:::-;36348:620;;;36404:2;36388:36;;;36425:12;:10;:12::i;:::-;36439:4;36445:7;36454:5;36388:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36384:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36647:1;36630:6;:13;:18;36626:272;;;36673:60;;;;;;;;;;:::i;:::-;;;;;;;;36626:272;36848:6;36842:13;36833:6;36829:2;36825:15;36818:38;36384:529;36521:41;;;36511:51;;;:6;:51;;;;36504:58;;;;;36348:620;36952:4;36945:11;;36176:799;;;;;;;:::o;32319:321::-;32449:18;32455:2;32459:7;32449:5;:18::i;:::-;32500:54;32531:1;32535:2;32539:7;32548:5;32500:22;:54::i;:::-;32478:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;32319:321;;;:::o;32976:382::-;33070:1;33056:16;;:2;:16;;;;33048:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;33129:16;33137:7;33129;:16::i;:::-;33128:17;33120:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;33191:45;33220:1;33224:2;33228:7;33191:20;:45::i;:::-;33266:1;33249:9;:13;33259:2;33249:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33297:2;33278:7;:16;33286:7;33278:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33342:7;33338:2;33317:33;;33334:1;33317:33;;;;;;;;;;;;32976:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:323::-;5676:6;5725:2;5713:9;5704:7;5700:23;5696:32;5693:119;;;5731:79;;:::i;:::-;5693:119;5851:1;5876:50;5918:7;5909:6;5898:9;5894:22;5876:50;:::i;:::-;5866:60;;5822:114;5620:323;;;;:::o;5949:327::-;6007:6;6056:2;6044:9;6035:7;6031:23;6027:32;6024:119;;;6062:79;;:::i;:::-;6024:119;6182:1;6207:52;6251:7;6242:6;6231:9;6227:22;6207:52;:::i;:::-;6197:62;;6153:116;5949:327;;;;:::o;6282:349::-;6351:6;6400:2;6388:9;6379:7;6375:23;6371:32;6368:119;;;6406:79;;:::i;:::-;6368:119;6526:1;6551:63;6606:7;6597:6;6586:9;6582:22;6551:63;:::i;:::-;6541:73;;6497:127;6282:349;;;;:::o;6637:509::-;6706:6;6755:2;6743:9;6734:7;6730:23;6726:32;6723:119;;;6761:79;;:::i;:::-;6723:119;6909:1;6898:9;6894:17;6881:31;6939:18;6931:6;6928:30;6925:117;;;6961:79;;:::i;:::-;6925:117;7066:63;7121:7;7112:6;7101:9;7097:22;7066:63;:::i;:::-;7056:73;;6852:287;6637:509;;;;:::o;7152:654::-;7230:6;7238;7287:2;7275:9;7266:7;7262:23;7258:32;7255:119;;;7293:79;;:::i;:::-;7255:119;7441:1;7430:9;7426:17;7413:31;7471:18;7463:6;7460:30;7457:117;;;7493:79;;:::i;:::-;7457:117;7598:63;7653:7;7644:6;7633:9;7629:22;7598:63;:::i;:::-;7588:73;;7384:287;7710:2;7736:53;7781:7;7772:6;7761:9;7757:22;7736:53;:::i;:::-;7726:63;;7681:118;7152:654;;;;;:::o;7812:329::-;7871:6;7920:2;7908:9;7899:7;7895:23;7891:32;7888:119;;;7926:79;;:::i;:::-;7888:119;8046:1;8071:53;8116:7;8107:6;8096:9;8092:22;8071:53;:::i;:::-;8061:63;;8017:117;7812:329;;;;:::o;8147:474::-;8215:6;8223;8272:2;8260:9;8251:7;8247:23;8243:32;8240:119;;;8278:79;;:::i;:::-;8240:119;8398:1;8423:53;8468:7;8459:6;8448:9;8444:22;8423:53;:::i;:::-;8413:63;;8369:117;8525:2;8551:53;8596:7;8587:6;8576:9;8572:22;8551:53;:::i;:::-;8541:63;;8496:118;8147:474;;;;;:::o;8627:179::-;8696:10;8717:46;8759:3;8751:6;8717:46;:::i;:::-;8795:4;8790:3;8786:14;8772:28;;8627:179;;;;:::o;8812:118::-;8899:24;8917:5;8899:24;:::i;:::-;8894:3;8887:37;8812:118;;:::o;8966:732::-;9085:3;9114:54;9162:5;9114:54;:::i;:::-;9184:86;9263:6;9258:3;9184:86;:::i;:::-;9177:93;;9294:56;9344:5;9294:56;:::i;:::-;9373:7;9404:1;9389:284;9414:6;9411:1;9408:13;9389:284;;;9490:6;9484:13;9517:63;9576:3;9561:13;9517:63;:::i;:::-;9510:70;;9603:60;9656:6;9603:60;:::i;:::-;9593:70;;9449:224;9436:1;9433;9429:9;9424:14;;9389:284;;;9393:14;9689:3;9682:10;;9090:608;;;8966:732;;;;:::o;9704:109::-;9785:21;9800:5;9785:21;:::i;:::-;9780:3;9773:34;9704:109;;:::o;9819:360::-;9905:3;9933:38;9965:5;9933:38;:::i;:::-;9987:70;10050:6;10045:3;9987:70;:::i;:::-;9980:77;;10066:52;10111:6;10106:3;10099:4;10092:5;10088:16;10066:52;:::i;:::-;10143:29;10165:6;10143:29;:::i;:::-;10138:3;10134:39;10127:46;;9909:270;9819:360;;;;:::o;10185:364::-;10273:3;10301:39;10334:5;10301:39;:::i;:::-;10356:71;10420:6;10415:3;10356:71;:::i;:::-;10349:78;;10436:52;10481:6;10476:3;10469:4;10462:5;10458:16;10436:52;:::i;:::-;10513:29;10535:6;10513:29;:::i;:::-;10508:3;10504:39;10497:46;;10277:272;10185:364;;;;:::o;10555:377::-;10661:3;10689:39;10722:5;10689:39;:::i;:::-;10744:89;10826:6;10821:3;10744:89;:::i;:::-;10737:96;;10842:52;10887:6;10882:3;10875:4;10868:5;10864:16;10842:52;:::i;:::-;10919:6;10914:3;10910:16;10903:23;;10665:267;10555:377;;;;:::o;10962:845::-;11065:3;11102:5;11096:12;11131:36;11157:9;11131:36;:::i;:::-;11183:89;11265:6;11260:3;11183:89;:::i;:::-;11176:96;;11303:1;11292:9;11288:17;11319:1;11314:137;;;;11465:1;11460:341;;;;11281:520;;11314:137;11398:4;11394:9;11383;11379:25;11374:3;11367:38;11434:6;11429:3;11425:16;11418:23;;11314:137;;11460:341;11527:38;11559:5;11527:38;:::i;:::-;11587:1;11601:154;11615:6;11612:1;11609:13;11601:154;;;11689:7;11683:14;11679:1;11674:3;11670:11;11663:35;11739:1;11730:7;11726:15;11715:26;;11637:4;11634:1;11630:12;11625:17;;11601:154;;;11784:6;11779:3;11775:16;11768:23;;11467:334;;11281:520;;11069:738;;10962:845;;;;:::o;11813:366::-;11955:3;11976:67;12040:2;12035:3;11976:67;:::i;:::-;11969:74;;12052:93;12141:3;12052:93;:::i;:::-;12170:2;12165:3;12161:12;12154:19;;11813:366;;;:::o;12185:::-;12327:3;12348:67;12412:2;12407:3;12348:67;:::i;:::-;12341:74;;12424:93;12513:3;12424:93;:::i;:::-;12542:2;12537:3;12533:12;12526:19;;12185:366;;;:::o;12557:::-;12699:3;12720:67;12784:2;12779:3;12720:67;:::i;:::-;12713:74;;12796:93;12885:3;12796:93;:::i;:::-;12914:2;12909:3;12905:12;12898:19;;12557:366;;;:::o;12929:::-;13071:3;13092:67;13156:2;13151:3;13092:67;:::i;:::-;13085:74;;13168:93;13257:3;13168:93;:::i;:::-;13286:2;13281:3;13277:12;13270:19;;12929:366;;;:::o;13301:::-;13443:3;13464:67;13528:2;13523:3;13464:67;:::i;:::-;13457:74;;13540:93;13629:3;13540:93;:::i;:::-;13658:2;13653:3;13649:12;13642:19;;13301:366;;;:::o;13673:::-;13815:3;13836:67;13900:2;13895:3;13836:67;:::i;:::-;13829:74;;13912:93;14001:3;13912:93;:::i;:::-;14030:2;14025:3;14021:12;14014:19;;13673:366;;;:::o;14045:::-;14187:3;14208:67;14272:2;14267:3;14208:67;:::i;:::-;14201:74;;14284:93;14373:3;14284:93;:::i;:::-;14402:2;14397:3;14393:12;14386:19;;14045:366;;;:::o;14417:::-;14559:3;14580:67;14644:2;14639:3;14580:67;:::i;:::-;14573:74;;14656:93;14745:3;14656:93;:::i;:::-;14774:2;14769:3;14765:12;14758:19;;14417:366;;;:::o;14789:::-;14931:3;14952:67;15016:2;15011:3;14952:67;:::i;:::-;14945:74;;15028:93;15117:3;15028:93;:::i;:::-;15146:2;15141:3;15137:12;15130:19;;14789:366;;;:::o;15161:::-;15303:3;15324:67;15388:2;15383:3;15324:67;:::i;:::-;15317:74;;15400:93;15489:3;15400:93;:::i;:::-;15518:2;15513:3;15509:12;15502:19;;15161:366;;;:::o;15533:::-;15675:3;15696:67;15760:2;15755:3;15696:67;:::i;:::-;15689:74;;15772:93;15861:3;15772:93;:::i;:::-;15890:2;15885:3;15881:12;15874:19;;15533:366;;;:::o;15905:::-;16047:3;16068:67;16132:2;16127:3;16068:67;:::i;:::-;16061:74;;16144:93;16233:3;16144:93;:::i;:::-;16262:2;16257:3;16253:12;16246:19;;15905:366;;;:::o;16277:::-;16419:3;16440:67;16504:2;16499:3;16440:67;:::i;:::-;16433:74;;16516:93;16605:3;16516:93;:::i;:::-;16634:2;16629:3;16625:12;16618:19;;16277:366;;;:::o;16649:::-;16791:3;16812:67;16876:2;16871:3;16812:67;:::i;:::-;16805:74;;16888:93;16977:3;16888:93;:::i;:::-;17006:2;17001:3;16997:12;16990:19;;16649:366;;;:::o;17021:::-;17163:3;17184:67;17248:2;17243:3;17184:67;:::i;:::-;17177:74;;17260:93;17349:3;17260:93;:::i;:::-;17378:2;17373:3;17369:12;17362:19;;17021:366;;;:::o;17393:::-;17535:3;17556:67;17620:2;17615:3;17556:67;:::i;:::-;17549:74;;17632:93;17721:3;17632:93;:::i;:::-;17750:2;17745:3;17741:12;17734:19;;17393:366;;;:::o;17765:::-;17907:3;17928:67;17992:2;17987:3;17928:67;:::i;:::-;17921:74;;18004:93;18093:3;18004:93;:::i;:::-;18122:2;18117:3;18113:12;18106:19;;17765:366;;;:::o;18137:398::-;18296:3;18317:83;18398:1;18393:3;18317:83;:::i;:::-;18310:90;;18409:93;18498:3;18409:93;:::i;:::-;18527:1;18522:3;18518:11;18511:18;;18137:398;;;:::o;18541:366::-;18683:3;18704:67;18768:2;18763:3;18704:67;:::i;:::-;18697:74;;18780:93;18869:3;18780:93;:::i;:::-;18898:2;18893:3;18889:12;18882:19;;18541:366;;;:::o;18913:::-;19055:3;19076:67;19140:2;19135:3;19076:67;:::i;:::-;19069:74;;19152:93;19241:3;19152:93;:::i;:::-;19270:2;19265:3;19261:12;19254:19;;18913:366;;;:::o;19285:::-;19427:3;19448:67;19512:2;19507:3;19448:67;:::i;:::-;19441:74;;19524:93;19613:3;19524:93;:::i;:::-;19642:2;19637:3;19633:12;19626:19;;19285:366;;;:::o;19657:::-;19799:3;19820:67;19884:2;19879:3;19820:67;:::i;:::-;19813:74;;19896:93;19985:3;19896:93;:::i;:::-;20014:2;20009:3;20005:12;19998:19;;19657:366;;;:::o;20029:108::-;20106:24;20124:5;20106:24;:::i;:::-;20101:3;20094:37;20029:108;;:::o;20143:118::-;20230:24;20248:5;20230:24;:::i;:::-;20225:3;20218:37;20143:118;;:::o;20267:589::-;20492:3;20514:95;20605:3;20596:6;20514:95;:::i;:::-;20507:102;;20626:95;20717:3;20708:6;20626:95;:::i;:::-;20619:102;;20738:92;20826:3;20817:6;20738:92;:::i;:::-;20731:99;;20847:3;20840:10;;20267:589;;;;;;:::o;20862:379::-;21046:3;21068:147;21211:3;21068:147;:::i;:::-;21061:154;;21232:3;21225:10;;20862:379;;;:::o;21247:222::-;21340:4;21378:2;21367:9;21363:18;21355:26;;21391:71;21459:1;21448:9;21444:17;21435:6;21391:71;:::i;:::-;21247:222;;;;:::o;21475:640::-;21670:4;21708:3;21697:9;21693:19;21685:27;;21722:71;21790:1;21779:9;21775:17;21766:6;21722:71;:::i;:::-;21803:72;21871:2;21860:9;21856:18;21847:6;21803:72;:::i;:::-;21885;21953:2;21942:9;21938:18;21929:6;21885:72;:::i;:::-;22004:9;21998:4;21994:20;21989:2;21978:9;21974:18;21967:48;22032:76;22103:4;22094:6;22032:76;:::i;:::-;22024:84;;21475:640;;;;;;;:::o;22121:373::-;22264:4;22302:2;22291:9;22287:18;22279:26;;22351:9;22345:4;22341:20;22337:1;22326:9;22322:17;22315:47;22379:108;22482:4;22473:6;22379:108;:::i;:::-;22371:116;;22121:373;;;;:::o;22500:210::-;22587:4;22625:2;22614:9;22610:18;22602:26;;22638:65;22700:1;22689:9;22685:17;22676:6;22638:65;:::i;:::-;22500:210;;;;:::o;22716:313::-;22829:4;22867:2;22856:9;22852:18;22844:26;;22916:9;22910:4;22906:20;22902:1;22891:9;22887:17;22880:47;22944:78;23017:4;23008:6;22944:78;:::i;:::-;22936:86;;22716:313;;;;:::o;23035:419::-;23201:4;23239:2;23228:9;23224:18;23216:26;;23288:9;23282:4;23278:20;23274:1;23263:9;23259:17;23252:47;23316:131;23442:4;23316:131;:::i;:::-;23308:139;;23035:419;;;:::o;23460:::-;23626:4;23664:2;23653:9;23649:18;23641:26;;23713:9;23707:4;23703:20;23699:1;23688:9;23684:17;23677:47;23741:131;23867:4;23741:131;:::i;:::-;23733:139;;23460:419;;;:::o;23885:::-;24051:4;24089:2;24078:9;24074:18;24066:26;;24138:9;24132:4;24128:20;24124:1;24113:9;24109:17;24102:47;24166:131;24292:4;24166:131;:::i;:::-;24158:139;;23885:419;;;:::o;24310:::-;24476:4;24514:2;24503:9;24499:18;24491:26;;24563:9;24557:4;24553:20;24549:1;24538:9;24534:17;24527:47;24591:131;24717:4;24591:131;:::i;:::-;24583:139;;24310:419;;;:::o;24735:::-;24901:4;24939:2;24928:9;24924:18;24916:26;;24988:9;24982:4;24978:20;24974:1;24963:9;24959:17;24952:47;25016:131;25142:4;25016:131;:::i;:::-;25008:139;;24735:419;;;:::o;25160:::-;25326:4;25364:2;25353:9;25349:18;25341:26;;25413:9;25407:4;25403:20;25399:1;25388:9;25384:17;25377:47;25441:131;25567:4;25441:131;:::i;:::-;25433:139;;25160:419;;;:::o;25585:::-;25751:4;25789:2;25778:9;25774:18;25766:26;;25838:9;25832:4;25828:20;25824:1;25813:9;25809:17;25802:47;25866:131;25992:4;25866:131;:::i;:::-;25858:139;;25585:419;;;:::o;26010:::-;26176:4;26214:2;26203:9;26199:18;26191:26;;26263:9;26257:4;26253:20;26249:1;26238:9;26234:17;26227:47;26291:131;26417:4;26291:131;:::i;:::-;26283:139;;26010:419;;;:::o;26435:::-;26601:4;26639:2;26628:9;26624:18;26616:26;;26688:9;26682:4;26678:20;26674:1;26663:9;26659:17;26652:47;26716:131;26842:4;26716:131;:::i;:::-;26708:139;;26435:419;;;:::o;26860:::-;27026:4;27064:2;27053:9;27049:18;27041:26;;27113:9;27107:4;27103:20;27099:1;27088:9;27084:17;27077:47;27141:131;27267:4;27141:131;:::i;:::-;27133:139;;26860:419;;;:::o;27285:::-;27451:4;27489:2;27478:9;27474:18;27466:26;;27538:9;27532:4;27528:20;27524:1;27513:9;27509:17;27502:47;27566:131;27692:4;27566:131;:::i;:::-;27558:139;;27285:419;;;:::o;27710:::-;27876:4;27914:2;27903:9;27899:18;27891:26;;27963:9;27957:4;27953:20;27949:1;27938:9;27934:17;27927:47;27991:131;28117:4;27991:131;:::i;:::-;27983:139;;27710:419;;;:::o;28135:::-;28301:4;28339:2;28328:9;28324:18;28316:26;;28388:9;28382:4;28378:20;28374:1;28363:9;28359:17;28352:47;28416:131;28542:4;28416:131;:::i;:::-;28408:139;;28135:419;;;:::o;28560:::-;28726:4;28764:2;28753:9;28749:18;28741:26;;28813:9;28807:4;28803:20;28799:1;28788:9;28784:17;28777:47;28841:131;28967:4;28841:131;:::i;:::-;28833:139;;28560:419;;;:::o;28985:::-;29151:4;29189:2;29178:9;29174:18;29166:26;;29238:9;29232:4;29228:20;29224:1;29213:9;29209:17;29202:47;29266:131;29392:4;29266:131;:::i;:::-;29258:139;;28985:419;;;:::o;29410:::-;29576:4;29614:2;29603:9;29599:18;29591:26;;29663:9;29657:4;29653:20;29649:1;29638:9;29634:17;29627:47;29691:131;29817:4;29691:131;:::i;:::-;29683:139;;29410:419;;;:::o;29835:::-;30001:4;30039:2;30028:9;30024:18;30016:26;;30088:9;30082:4;30078:20;30074:1;30063:9;30059:17;30052:47;30116:131;30242:4;30116:131;:::i;:::-;30108:139;;29835:419;;;:::o;30260:::-;30426:4;30464:2;30453:9;30449:18;30441:26;;30513:9;30507:4;30503:20;30499:1;30488:9;30484:17;30477:47;30541:131;30667:4;30541:131;:::i;:::-;30533:139;;30260:419;;;:::o;30685:::-;30851:4;30889:2;30878:9;30874:18;30866:26;;30938:9;30932:4;30928:20;30924:1;30913:9;30909:17;30902:47;30966:131;31092:4;30966:131;:::i;:::-;30958:139;;30685:419;;;:::o;31110:::-;31276:4;31314:2;31303:9;31299:18;31291:26;;31363:9;31357:4;31353:20;31349:1;31338:9;31334:17;31327:47;31391:131;31517:4;31391:131;:::i;:::-;31383:139;;31110:419;;;:::o;31535:::-;31701:4;31739:2;31728:9;31724:18;31716:26;;31788:9;31782:4;31778:20;31774:1;31763:9;31759:17;31752:47;31816:131;31942:4;31816:131;:::i;:::-;31808:139;;31535:419;;;:::o;31960:222::-;32053:4;32091:2;32080:9;32076:18;32068:26;;32104:71;32172:1;32161:9;32157:17;32148:6;32104:71;:::i;:::-;31960:222;;;;:::o;32188:129::-;32222:6;32249:20;;:::i;:::-;32239:30;;32278:33;32306:4;32298:6;32278:33;:::i;:::-;32188:129;;;:::o;32323:75::-;32356:6;32389:2;32383:9;32373:19;;32323:75;:::o;32404:307::-;32465:4;32555:18;32547:6;32544:30;32541:56;;;32577:18;;:::i;:::-;32541:56;32615:29;32637:6;32615:29;:::i;:::-;32607:37;;32699:4;32693;32689:15;32681:23;;32404:307;;;:::o;32717:308::-;32779:4;32869:18;32861:6;32858:30;32855:56;;;32891:18;;:::i;:::-;32855:56;32929:29;32951:6;32929:29;:::i;:::-;32921:37;;33013:4;33007;33003:15;32995:23;;32717:308;;;:::o;33031:132::-;33098:4;33121:3;33113:11;;33151:4;33146:3;33142:14;33134:22;;33031:132;;;:::o;33169:141::-;33218:4;33241:3;33233:11;;33264:3;33261:1;33254:14;33298:4;33295:1;33285:18;33277:26;;33169:141;;;:::o;33316:114::-;33383:6;33417:5;33411:12;33401:22;;33316:114;;;:::o;33436:98::-;33487:6;33521:5;33515:12;33505:22;;33436:98;;;:::o;33540:99::-;33592:6;33626:5;33620:12;33610:22;;33540:99;;;:::o;33645:113::-;33715:4;33747;33742:3;33738:14;33730:22;;33645:113;;;:::o;33764:184::-;33863:11;33897:6;33892:3;33885:19;33937:4;33932:3;33928:14;33913:29;;33764:184;;;;:::o;33954:168::-;34037:11;34071:6;34066:3;34059:19;34111:4;34106:3;34102:14;34087:29;;33954:168;;;;:::o;34128:147::-;34229:11;34266:3;34251:18;;34128:147;;;;:::o;34281:169::-;34365:11;34399:6;34394:3;34387:19;34439:4;34434:3;34430:14;34415:29;;34281:169;;;;:::o;34456:148::-;34558:11;34595:3;34580:18;;34456:148;;;;:::o;34610:305::-;34650:3;34669:20;34687:1;34669:20;:::i;:::-;34664:25;;34703:20;34721:1;34703:20;:::i;:::-;34698:25;;34857:1;34789:66;34785:74;34782:1;34779:81;34776:107;;;34863:18;;:::i;:::-;34776:107;34907:1;34904;34900:9;34893:16;;34610:305;;;;:::o;34921:185::-;34961:1;34978:20;34996:1;34978:20;:::i;:::-;34973:25;;35012:20;35030:1;35012:20;:::i;:::-;35007:25;;35051:1;35041:35;;35056:18;;:::i;:::-;35041:35;35098:1;35095;35091:9;35086:14;;34921:185;;;;:::o;35112:348::-;35152:7;35175:20;35193:1;35175:20;:::i;:::-;35170:25;;35209:20;35227:1;35209:20;:::i;:::-;35204:25;;35397:1;35329:66;35325:74;35322:1;35319:81;35314:1;35307:9;35300:17;35296:105;35293:131;;;35404:18;;:::i;:::-;35293:131;35452:1;35449;35445:9;35434:20;;35112:348;;;;:::o;35466:191::-;35506:4;35526:20;35544:1;35526:20;:::i;:::-;35521:25;;35560:20;35578:1;35560:20;:::i;:::-;35555:25;;35599:1;35596;35593:8;35590:34;;;35604:18;;:::i;:::-;35590:34;35649:1;35646;35642:9;35634:17;;35466:191;;;;:::o;35663:96::-;35700:7;35729:24;35747:5;35729:24;:::i;:::-;35718:35;;35663:96;;;:::o;35765:90::-;35799:7;35842:5;35835:13;35828:21;35817:32;;35765:90;;;:::o;35861:149::-;35897:7;35937:66;35930:5;35926:78;35915:89;;35861:149;;;:::o;36016:126::-;36053:7;36093:42;36086:5;36082:54;36071:65;;36016:126;;;:::o;36148:77::-;36185:7;36214:5;36203:16;;36148:77;;;:::o;36231:154::-;36315:6;36310:3;36305;36292:30;36377:1;36368:6;36363:3;36359:16;36352:27;36231:154;;;:::o;36391:307::-;36459:1;36469:113;36483:6;36480:1;36477:13;36469:113;;;36568:1;36563:3;36559:11;36553:18;36549:1;36544:3;36540:11;36533:39;36505:2;36502:1;36498:10;36493:15;;36469:113;;;36600:6;36597:1;36594:13;36591:101;;;36680:1;36671:6;36666:3;36662:16;36655:27;36591:101;36440:258;36391:307;;;:::o;36704:320::-;36748:6;36785:1;36779:4;36775:12;36765:22;;36832:1;36826:4;36822:12;36853:18;36843:81;;36909:4;36901:6;36897:17;36887:27;;36843:81;36971:2;36963:6;36960:14;36940:18;36937:38;36934:84;;;36990:18;;:::i;:::-;36934:84;36755:269;36704:320;;;:::o;37030:281::-;37113:27;37135:4;37113:27;:::i;:::-;37105:6;37101:40;37243:6;37231:10;37228:22;37207:18;37195:10;37192:34;37189:62;37186:88;;;37254:18;;:::i;:::-;37186:88;37294:10;37290:2;37283:22;37073:238;37030:281;;:::o;37317:233::-;37356:3;37379:24;37397:5;37379:24;:::i;:::-;37370:33;;37425:66;37418:5;37415:77;37412:103;;;37495:18;;:::i;:::-;37412:103;37542:1;37535:5;37531:13;37524:20;;37317:233;;;:::o;37556:176::-;37588:1;37605:20;37623:1;37605:20;:::i;:::-;37600:25;;37639:20;37657:1;37639:20;:::i;:::-;37634:25;;37678:1;37668:35;;37683:18;;:::i;:::-;37668:35;37724:1;37721;37717:9;37712:14;;37556:176;;;;:::o;37738:180::-;37786:77;37783:1;37776:88;37883:4;37880:1;37873:15;37907:4;37904:1;37897:15;37924:180;37972:77;37969:1;37962:88;38069:4;38066:1;38059:15;38093:4;38090:1;38083:15;38110:180;38158:77;38155:1;38148:88;38255:4;38252:1;38245:15;38279:4;38276:1;38269:15;38296:180;38344:77;38341:1;38334:88;38441:4;38438:1;38431:15;38465:4;38462:1;38455:15;38482:180;38530:77;38527:1;38520:88;38627:4;38624:1;38617:15;38651:4;38648:1;38641:15;38668:117;38777:1;38774;38767:12;38791:117;38900:1;38897;38890:12;38914:117;39023:1;39020;39013:12;39037:117;39146:1;39143;39136:12;39160:102;39201:6;39252:2;39248:7;39243:2;39236:5;39232:14;39228:28;39218:38;;39160:102;;;:::o;39268:237::-;39408:34;39404:1;39396:6;39392:14;39385:58;39477:20;39472:2;39464:6;39460:15;39453:45;39268:237;:::o;39511:225::-;39651:34;39647:1;39639:6;39635:14;39628:58;39720:8;39715:2;39707:6;39703:15;39696:33;39511:225;:::o;39742:178::-;39882:30;39878:1;39870:6;39866:14;39859:54;39742:178;:::o;39926:170::-;40066:22;40062:1;40054:6;40050:14;40043:46;39926:170;:::o;40102:223::-;40242:34;40238:1;40230:6;40226:14;40219:58;40311:6;40306:2;40298:6;40294:15;40287:31;40102:223;:::o;40331:175::-;40471:27;40467:1;40459:6;40455:14;40448:51;40331:175;:::o;40512:178::-;40652:30;40648:1;40640:6;40636:14;40629:54;40512:178;:::o;40696:231::-;40836:34;40832:1;40824:6;40820:14;40813:58;40905:14;40900:2;40892:6;40888:15;40881:39;40696:231;:::o;40933:243::-;41073:34;41069:1;41061:6;41057:14;41050:58;41142:26;41137:2;41129:6;41125:15;41118:51;40933:243;:::o;41182:229::-;41322:34;41318:1;41310:6;41306:14;41299:58;41391:12;41386:2;41378:6;41374:15;41367:37;41182:229;:::o;41417:228::-;41557:34;41553:1;41545:6;41541:14;41534:58;41626:11;41621:2;41613:6;41609:15;41602:36;41417:228;:::o;41651:182::-;41791:34;41787:1;41779:6;41775:14;41768:58;41651:182;:::o;41839:231::-;41979:34;41975:1;41967:6;41963:14;41956:58;42048:14;42043:2;42035:6;42031:15;42024:39;41839:231;:::o;42076:182::-;42216:34;42212:1;42204:6;42200:14;42193:58;42076:182;:::o;42264:228::-;42404:34;42400:1;42392:6;42388:14;42381:58;42473:11;42468:2;42460:6;42456:15;42449:36;42264:228;:::o;42498:234::-;42638:34;42634:1;42626:6;42622:14;42615:58;42707:17;42702:2;42694:6;42690:15;42683:42;42498:234;:::o;42738:220::-;42878:34;42874:1;42866:6;42862:14;42855:58;42947:3;42942:2;42934:6;42930:15;42923:28;42738:220;:::o;42964:114::-;;:::o;43084:170::-;43224:22;43220:1;43212:6;43208:14;43201:46;43084:170;:::o;43260:181::-;43400:33;43396:1;43388:6;43384:14;43377:57;43260:181;:::o;43447:236::-;43587:34;43583:1;43575:6;43571:14;43564:58;43656:19;43651:2;43643:6;43639:15;43632:44;43447:236;:::o;43689:169::-;43829:21;43825:1;43817:6;43813:14;43806:45;43689:169;:::o;43864:122::-;43937:24;43955:5;43937:24;:::i;:::-;43930:5;43927:35;43917:63;;43976:1;43973;43966:12;43917:63;43864:122;:::o;43992:116::-;44062:21;44077:5;44062:21;:::i;:::-;44055:5;44052:32;44042:60;;44098:1;44095;44088:12;44042:60;43992:116;:::o;44114:120::-;44186:23;44203:5;44186:23;:::i;:::-;44179:5;44176:34;44166:62;;44224:1;44221;44214:12;44166:62;44114:120;:::o;44240:122::-;44313:24;44331:5;44313:24;:::i;:::-;44306:5;44303:35;44293:63;;44352:1;44349;44342:12;44293:63;44240:122;:::o

Swarm Source

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