ETH Price: $2,539.69 (+3.39%)

Token

CZPunks (CZP)
 

Overview

Max Total Supply

39 CZP

Holders

12

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
6529.eth
Balance
1 CZP
0xfd22004806a6846ea67ad883356be810f0428793
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:
CZPunks

Compiler Version
v0.8.0+commit.c7dfd78e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-09-11
*/

// SPDX-License-Identifier: MIT

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) {
        this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691
        return msg.data;
    }
}
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);
}

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;
}

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);
}

pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {

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

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

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

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);
}

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;
    }
}

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;
        // solhint-disable-next-line no-inline-assembly
        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");

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (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");

        // solhint-disable-next-line avoid-low-level-calls
        (bool success, bytes memory returndata) = target.delegatecall(data);
        return _verifyCallResult(success, returndata, errorMessage);
    }

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private 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

                // solhint-disable-next-line no-inline-assembly
                assembly {
                    let returndata_size := mload(returndata)
                    revert(add(32, returndata), returndata_size)
                }
            } else {
                revert(errorMessage);
            }
        }
    }
}


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 () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), 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 {
        emit OwnershipTransferred(_owner, address(0));
        _owner = 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");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

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

    uint256 private _status;

    constructor () {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

pragma solidity ^0.8.0;

/**
 * @title Counters
 * @author Matt Condon (@shrugs)
 * @dev Provides counters that can only be incremented or decremented by one. 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;
        }
    }
}

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant alphabet = "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] = alphabet[value & 0xf];
            value >>= 4;
        }
        require(value == 0, "Strings: hex length insufficient");
        return string(buffer);
    }

}


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}. 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 {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_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 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(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 { }
}
// <3

pragma solidity ^0.8.0;

/**
 * @dev This implements an optional extension of {ERC721} defined in the EIP that adds
 * enumerability of all the token ids in the contract as well as all token ids owned by each
 * account.
 */
abstract contract ERC721Enumerable is ERC721, IERC721Enumerable {
    // Mapping from owner to list of owned token IDs
    mapping(address => mapping(uint256 => uint256)) private _ownedTokens;

    // Mapping from token ID to index of the owner tokens list
    mapping(uint256 => uint256) private _ownedTokensIndex;

    // Array with all token ids, used for enumeration
    uint256[] private _allTokens;

    // Mapping from token id to position in the allTokens array
    mapping(uint256 => uint256) private _allTokensIndex;

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721.balanceOf(owner), "ERC721Enumerable: owner index out of bounds");
        return _ownedTokens[owner][index];
    }

    /**
     * @dev See {IERC721Enumerable-totalSupply}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _allTokens.length;
    }

    /**
     * @dev See {IERC721Enumerable-tokenByIndex}.
     */
    function tokenByIndex(uint256 index) public view virtual override returns (uint256) {
        require(index < ERC721Enumerable.totalSupply(), "ERC721Enumerable: global index out of bounds");
        return _allTokens[index];
    }

    /**
     * @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` cannot be the zero address.
     * - `to` cannot be the zero address.
     *
     * 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 override {
        super._beforeTokenTransfer(from, to, tokenId);

        if (from == address(0)) {
            _addTokenToAllTokensEnumeration(tokenId);
        } else if (from != to) {
            _removeTokenFromOwnerEnumeration(from, tokenId);
        }
        if (to == address(0)) {
            _removeTokenFromAllTokensEnumeration(tokenId);
        } else if (to != from) {
            _addTokenToOwnerEnumeration(to, tokenId);
        }
    }

    /**
     * @dev Private function to add a token to this extension's ownership-tracking data structures.
     * @param to address representing the new owner of the given token ID
     * @param tokenId uint256 ID of the token to be added to the tokens list of the given address
     */
    function _addTokenToOwnerEnumeration(address to, uint256 tokenId) private {
        uint256 length = ERC721.balanceOf(to);
        _ownedTokens[to][length] = tokenId;
        _ownedTokensIndex[tokenId] = length;
    }

    /**
     * @dev Private function to add a token to this extension's token tracking data structures.
     * @param tokenId uint256 ID of the token to be added to the tokens list
     */
    function _addTokenToAllTokensEnumeration(uint256 tokenId) private {
        _allTokensIndex[tokenId] = _allTokens.length;
        _allTokens.push(tokenId);
    }

    /**
     * @dev Private function to remove a token from this extension's ownership-tracking data structures. Note that
     * while the token is not assigned a new owner, the `_ownedTokensIndex` mapping is _not_ updated: this allows for
     * gas optimizations e.g. when performing a transfer operation (avoiding double writes).
     * This has O(1) time complexity, but alters the order of the _ownedTokens array.
     * @param from address representing the previous owner of the given token ID
     * @param tokenId uint256 ID of the token to be removed from the tokens list of the given address
     */
    function _removeTokenFromOwnerEnumeration(address from, uint256 tokenId) private {
        // To prevent a gap in from's tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = ERC721.balanceOf(from) - 1;
        uint256 tokenIndex = _ownedTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary
        if (tokenIndex != lastTokenIndex) {
            uint256 lastTokenId = _ownedTokens[from][lastTokenIndex];

            _ownedTokens[from][tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
            _ownedTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index
        }

        // This also deletes the contents at the last position of the array
        delete _ownedTokensIndex[tokenId];
        delete _ownedTokens[from][lastTokenIndex];
    }

    /**
     * @dev Private function to remove a token from this extension's token tracking data structures.
     * This has O(1) time complexity, but alters the order of the _allTokens array.
     * @param tokenId uint256 ID of the token to be removed from the tokens list
     */
    function _removeTokenFromAllTokensEnumeration(uint256 tokenId) private {
        // To prevent a gap in the tokens array, we store the last token in the index of the token to delete, and
        // then delete the last slot (swap and pop).

        uint256 lastTokenIndex = _allTokens.length - 1;
        uint256 tokenIndex = _allTokensIndex[tokenId];

        // When the token to delete is the last token, the swap operation is unnecessary. However, since this occurs so
        // rarely (when the last minted token is burnt) that we still do the swap here to avoid the gas cost of adding
        // an 'if' statement (like in _removeTokenFromOwnerEnumeration)
        uint256 lastTokenId = _allTokens[lastTokenIndex];

        _allTokens[tokenIndex] = lastTokenId; // Move the last token to the slot of the to-delete token
        _allTokensIndex[lastTokenId] = tokenIndex; // Update the moved token's index

        // This also deletes the contents at the last position of the array
        delete _allTokensIndex[tokenId];
        _allTokens.pop();
    }
}








// WELCOME TO CZPunks! It has been our utmost pleasure learning about NFT development with this project. 
// This is the love to CZ, thus the Opensea was so hyped, we decided to release our first collection on ETH network.
// All code was written by "The Great Weeboo" and constructed by his Gigan Magicstick

pragma solidity ^0.8.0;

contract CZPunks is Ownable, ERC721Enumerable, ReentrancyGuard {
  using Counters for Counters.Counter;
  using Strings for uint256;

  string public imageHash;

  bool public isSaleOn = false;

  bool public saleHasBeenStarted = false;

  uint256 public constant MAX_MINTABLE_AT_ONCE = 20;

  uint256 private _price = 0.07 ether; // 70000000000000000
  
  string public punkcontractURI;
  
  constructor() ERC721("CZPunks", "CZP") {}

  // wd
  address oaf = 0x7Cb231dAEd8b0B5960d51C6BD66371196983fDC9;
  address quack = 0x4c657390130b5f8BC780c0331112D6b11f4fad56;

  uint256[1200] private _availableTokens;
  uint256 private _numAvailableTokens = 1200;
  uint256 private _numFreeRollsGiven = 0;

  mapping(address => uint256) public freeRollPunks;

  uint256 private _lastTokenIdMintedInInitialSet = 1200;

  function numTotalPunks() public view virtual returns (uint256) {
    return 1200;
  }

  function freeRollMint() public nonReentrant() {
    require(freeRollPunks[msg.sender] > 0, "You don't have any free rolls!");
    uint256 toMint = freeRollPunks[msg.sender];
    freeRollPunks[msg.sender] = 0;
    uint256 remaining = numTotalPunks() - totalSupply();
    if (toMint > remaining) {
      toMint = remaining;
    }
    _mint(toMint);
  }

  function getNumFreeRollPunks(address owner) public view returns (uint256) {
    return freeRollPunks[owner];
  }

  function mint(uint256 _numToMint) public payable nonReentrant() {
    require(isSaleOn, "Sale hasn't started.");
    uint256 totalSupply = totalSupply();
    require(
      totalSupply + _numToMint <= numTotalPunks(),
      "There aren't this many punks left."
    );
    uint256 costForMintingPunks = _price * _numToMint;
    require(
      msg.value >= costForMintingPunks,
      "Too little sent, please send more eth."
    );
    if (msg.value > costForMintingPunks) {
      payable(msg.sender).transfer(msg.value - costForMintingPunks);
    }

    _mint(_numToMint);
  }

  // internal minting function
  function _mint(uint256 _numToMint) internal {
    require(_numToMint <= MAX_MINTABLE_AT_ONCE, "Minting too many at once.");

    uint256 updatedNumAvailableTokens = _numAvailableTokens;
    for (uint256 i = 0; i < _numToMint; i++) {
      uint256 newTokenId = useRandomAvailableToken(_numToMint, i);
      _safeMint(msg.sender, newTokenId);
      updatedNumAvailableTokens--;
    }
    _numAvailableTokens = updatedNumAvailableTokens;
  }

  function useRandomAvailableToken(uint256 _numToFetch, uint256 _i)
    internal
    returns (uint256)
  {
    uint256 randomNum =
      uint256(
        keccak256(
          abi.encode(
            msg.sender,
            tx.gasprice,
            block.number,
            block.timestamp,
            blockhash(block.number - 1),
            _numToFetch,
            _i
          )
        )
      );
    uint256 randomIndex = randomNum % _numAvailableTokens;
    return useAvailableTokenAtIndex(randomIndex);
  }

  function useAvailableTokenAtIndex(uint256 indexToUse)
    internal
    returns (uint256)
  {
    uint256 valAtIndex = _availableTokens[indexToUse];
    uint256 result;
    if (valAtIndex == 0) {
      // This means the index itself is still an available token
      result = indexToUse;
    } else {
      // This means the index itself is not an available token, but the val at that index is.
      result = valAtIndex;
    }

    uint256 lastIndex = _numAvailableTokens - 1;
    if (indexToUse != lastIndex) {
      // Replace the value at indexToUse, now that it's been used.
      // Replace it with the data from the last index in the array, since we are going to decrease the array size afterwards.
      uint256 lastValInArray = _availableTokens[lastIndex];
      if (lastValInArray == 0) {
        // This means the index itself is still an available token
        _availableTokens[indexToUse] = lastIndex;
      } else {
        // This means the index itself is not an available token, but the val at that index is.
        _availableTokens[indexToUse] = lastValInArray;
      }
    }

    _numAvailableTokens--;
    return result;
  }

  function getPrice() public view returns (uint256){
    return _price;
  }

  function contractURI() public view returns (string memory){
    return punkcontractURI;
  }


  function getCostForMintingPunks(uint256 _numToMint)
    public
    view
    returns (uint256)
  {
    require(
      totalSupply() + _numToMint <= numTotalPunks(),
      "There are not this many punks left."
    );
    require(
      _numToMint <= MAX_MINTABLE_AT_ONCE,
      "You cannot mint that many punks."
    );
    return _numToMint * _price;  
  }

  function getPunksBelongingToOwner(address _owner)
    external
    view
    returns (uint256[] memory)
  {
    uint256 numPunks = balanceOf(_owner);
    if (numPunks == 0) {
      return new uint256[](0);
    } else {
      uint256[] memory result = new uint256[](numPunks);
      for (uint256 i = 0; i < numPunks; i++) {
        result[i] = tokenOfOwnerByIndex(_owner, i);
      }
      return result;
    }
  }

  /*
   * Dev stuff.
   */

  // metadata URI
  string private _baseTokenURI;

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

  function tokenURI(uint256 _tokenId)
    public
    view
    override
    returns (string memory)
  {
    string memory base = _baseURI();
    string memory _tokenURI = Strings.toString(_tokenId);
    string memory ending = ".json";

    // If there is no base URI, return the token URI.
    if (bytes(base).length == 0) {
      return _tokenURI;
    }

    return string(abi.encodePacked(base, _tokenURI, ending));
  }
  

  /*
   * Owner stuff
   */

    // In case of catastrophic ETH movement

  function setPrice(uint256 _newPrice) public onlyOwner() {
    _price = _newPrice;
  }

  function startSale() public onlyOwner {
    isSaleOn = true;
    saleHasBeenStarted = true;
  }

  function endSale() public onlyOwner {
    isSaleOn = false;
  }

  function giveFreeRoll(address receiver, uint256 numRolls) public onlyOwner {
    // max number of free mints we can give to the community for promotions/marketing
    require(_numFreeRollsGiven < 1000, "Already given max number of free rolls");
    require(freeRollPunks[receiver] + numRolls < 21, "Cannot exceed 20 unused free rolls!");
    uint256 freeRolls = freeRollPunks[receiver];
    freeRollPunks[receiver] = freeRolls + numRolls;
    _numFreeRollsGiven = _numFreeRollsGiven + numRolls;
  }


  // URIs
  function setBaseURI(string memory baseURI) external onlyOwner {
    _baseTokenURI = baseURI;
  }

  function setContractURI(string memory _contractURI) external onlyOwner {
    punkcontractURI = _contractURI;
  }
  
    function setImageHash(string memory _imageHash) external onlyOwner {
    imageHash = _imageHash;
  }

    function withdrawTeam() public onlyOwner {
    //uint256 _each = address(this).balance / 4;
    // uint256 _sixp = .06;
    uint256 _balance = address(this).balance;
    uint256 _oaf = _balance / 100 * 6;
    uint256 _quack = _balance - _oaf;
    require(payable(oaf).send(_oaf));
    require(payable(quack).send(_quack));
  }
  
    function withdrawFailsafe() public onlyOwner {
    (bool success, ) = msg.sender.call{value: address(this).balance}("");
    require(success, "Transfer failed.");
  }

  function _beforeTokenTransfer(
    address from,
    address to,
    uint256 tokenId
  ) internal virtual override(ERC721Enumerable) {
    super._beforeTokenTransfer(from, to, tokenId);
  }

  function supportsInterface(bytes4 interfaceId)
    public
    view
    virtual
    override(ERC721Enumerable)
    returns (bool)
  {
    return super.supportsInterface(interfaceId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_MINTABLE_AT_ONCE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"endSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"freeRollMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"freeRollPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"}],"name":"getCostForMintingPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"getNumFreeRollPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getPrice","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"getPunksBelongingToOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"},{"internalType":"uint256","name":"numRolls","type":"uint256"}],"name":"giveFreeRoll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"imageHash","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":"isSaleOn","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_numToMint","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"numTotalPunks","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"punkcontractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"saleHasBeenStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"baseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_contractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_imageHash","type":"string"}],"name":"setImageHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPrice","type":"uint256"}],"name":"setPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"startSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"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":"withdrawFailsafe","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawTeam","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600d60006101000a81548160ff0219169083151502179055506000600d60016101000a81548160ff02191690831515021790555066f8b0a10e470000600e55737cb231daed8b0b5960d51c6bd66371196983fdc9601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550734c657390130b5f8bc780c0331112d6b11f4fad56601160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506104b06104c25560006104c3556104b06104c5553480156200011057600080fd5b506040518060400160405280600781526020017f435a50756e6b73000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f435a50000000000000000000000000000000000000000000000000000000000081525060006200018f6200026f60201b60201c565b9050806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600190805190602001906200024592919062000277565b5080600290805190602001906200025e92919062000277565b5050506001600b819055506200038c565b600033905090565b828054620002859062000327565b90600052602060002090601f016020900481019282620002a95760008555620002f5565b82601f10620002c457805160ff1916838001178555620002f5565b82800160010185558215620002f5579182015b82811115620002f4578251825591602001919060010190620002d7565b5b50905062000304919062000308565b5090565b5b808211156200032357600081600090555060010162000309565b5090565b600060028204905060018216806200034057607f821691505b602082108114156200035757620003566200035d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61534a806200039c6000396000f3fe6080604052600436106102505760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063d2d6a5471161007a578063d2d6a5471461086a578063e8a3d485146108a7578063e8e732a1146108d2578063e985e9c51461090f578063f2f5ec151461094c578063f2fde38b1461097557610250565b8063b88d4fde14610785578063bb51f32d146107ae578063bc4eda10146107c5578063c87b56dd14610802578063cbf775b21461083f57610250565b80639fd83a15116100fd5780639fd83a15146106c1578063a0712d68146106fe578063a1d898191461071a578063a22cb46514610745578063b66a0e5d1461076e57610250565b80638da5cb5b146105ee57806391b7f5ed14610619578063938e3d7b1461064257806395d89b411461066b57806398d5fdca1461069657610250565b8063380d831b116101d257806355f804b31161019657806355f804b3146104de5780635b5a493d146105075780636352211e1461053257806370a082311461056f578063715018a6146105ac578063779e170d146105c357610250565b8063380d831b1461041f5780633af03e8a1461043657806342842e0e1461044d5780634f6ccce71461047657806351605d80146104b357610250565b8063081812fc11610219578063081812fc14610328578063095ea7b31461036557806318160ddd1461038e57806323b872dd146103b95780632f745c59146103e257610250565b8062e6672c1461025557806301ffc9a71461026c57806304299b2a146102a957806306d120d5146102d257806306fdde03146102fd575b600080fd5b34801561026157600080fd5b5061026a61099e565b005b34801561027857600080fd5b50610293600480360381019061028e9190613d2c565b610b39565b6040516102a09190614a50565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613d7e565b610b4b565b005b3480156102de57600080fd5b506102e7610be1565b6040516102f49190614a6b565b60405180910390f35b34801561030957600080fd5b50610312610c6f565b60405161031f9190614a6b565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613dbf565b610d01565b60405161035c9190614958565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613cf0565b610d86565b005b34801561039a57600080fd5b506103a3610e9e565b6040516103b09190614e0d565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613bea565b610eab565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613cf0565b610f0b565b6040516104169190614e0d565b60405180910390f35b34801561042b57600080fd5b50610434610fb0565b005b34801561044257600080fd5b5061044b611049565b005b34801561045957600080fd5b50610474600480360381019061046f9190613bea565b611174565b005b34801561048257600080fd5b5061049d60048036038101906104989190613dbf565b611194565b6040516104aa9190614e0d565b60405180910390f35b3480156104bf57600080fd5b506104c861122b565b6040516104d59190614a6b565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613d7e565b6112b9565b005b34801561051357600080fd5b5061051c611350565b6040516105299190614e0d565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613dbf565b61135a565b6040516105669190614958565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613b85565b61140c565b6040516105a39190614e0d565b60405180910390f35b3480156105b857600080fd5b506105c16114c4565b005b3480156105cf57600080fd5b506105d86115fe565b6040516105e59190614a50565b60405180910390f35b3480156105fa57600080fd5b50610603611611565b6040516106109190614958565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613dbf565b61163a565b005b34801561064e57600080fd5b5061066960048036038101906106649190613d7e565b6116c0565b005b34801561067757600080fd5b50610680611756565b60405161068d9190614a6b565b60405180910390f35b3480156106a257600080fd5b506106ab6117e8565b6040516106b89190614e0d565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613b85565b6117f2565b6040516106f59190614e0d565b60405180910390f35b61071860048036038101906107139190613dbf565b61183c565b005b34801561072657600080fd5b5061072f611a00565b60405161073c9190614a50565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190613cb4565b611a13565b005b34801561077a57600080fd5b50610783611b94565b005b34801561079157600080fd5b506107ac60048036038101906107a79190613c39565b611c48565b005b3480156107ba57600080fd5b506107c3611caa565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613dbf565b611e1d565b6040516107f99190614e0d565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613dbf565b611ed4565b6040516108369190614a6b565b60405180910390f35b34801561084b57600080fd5b50610854611f6d565b6040516108619190614e0d565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613b85565b611f72565b60405161089e9190614e0d565b60405180910390f35b3480156108b357600080fd5b506108bc611f8b565b6040516108c99190614a6b565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613b85565b61201d565b6040516109069190614a2e565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613bae565b612199565b6040516109439190614a50565b60405180910390f35b34801561095857600080fd5b50610973600480360381019061096e9190613cf0565b61222d565b005b34801561098157600080fd5b5061099c60048036038101906109979190613b85565b61242e565b005b6002600b5414156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90614ded565b60405180910390fd5b6002600b8190555060006104c460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690614b8d565b60405180910390fd5b60006104c460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006104c460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610b04610e9e565b610b0c611350565b610b169190615021565b905080821115610b24578091505b610b2d826125d7565b50506001600b81905550565b6000610b4482612675565b9050919050565b610b536126ef565b73ffffffffffffffffffffffffffffffffffffffff16610b71611611565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90614c8d565b60405180910390fd5b80600c9080519060200190610bdd9291906139a9565b5050565b600f8054610bee9061513f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a9061513f565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b606060018054610c7e9061513f565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa9061513f565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b5050505050905090565b6000610d0c826126f7565b610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290614c6d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d918261135a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990614ced565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e216126ef565b73ffffffffffffffffffffffffffffffffffffffff161480610e505750610e4f81610e4a6126ef565b612199565b5b610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614bad565b60405180910390fd5b610e998383612763565b505050565b6000600980549050905090565b610ebc610eb66126ef565b8261281c565b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614d4d565b60405180910390fd5b610f068383836128fa565b505050565b6000610f168361140c565b8210610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90614aad565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fb86126ef565b73ffffffffffffffffffffffffffffffffffffffff16610fd6611611565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390614c8d565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b6110516126ef565b73ffffffffffffffffffffffffffffffffffffffff1661106f611611565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90614c8d565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110eb90614943565b60006040518083038185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b5050905080611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614d2d565b60405180910390fd5b50565b61118f83838360405180602001604052806000815250611c48565b505050565b600061119e610e9e565b82106111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690614d6d565b60405180910390fd5b60098281548110611219577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600c80546112389061513f565b80601f01602080910402602001604051908101604052809291908181526020018280546112649061513f565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b6112c16126ef565b73ffffffffffffffffffffffffffffffffffffffff166112df611611565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614c8d565b60405180910390fd5b806104c6908051906020019061134c9291906139a9565b5050565b60006104b0905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614bed565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614bcd565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114cc6126ef565b73ffffffffffffffffffffffffffffffffffffffff166114ea611611565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790614c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116426126ef565b73ffffffffffffffffffffffffffffffffffffffff16611660611611565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad90614c8d565b60405180910390fd5b80600e8190555050565b6116c86126ef565b73ffffffffffffffffffffffffffffffffffffffff166116e6611611565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390614c8d565b60405180910390fd5b80600f90805190602001906117529291906139a9565b5050565b6060600280546117659061513f565b80601f01602080910402602001604051908101604052809291908181526020018280546117919061513f565b80156117de5780601f106117b3576101008083540402835291602001916117de565b820191906000526020600020905b8154815290600101906020018083116117c157829003601f168201915b5050505050905090565b6000600e54905090565b60006104c460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6002600b541415611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614ded565b60405180910390fd5b6002600b81905550600d60009054906101000a900460ff166118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090614a8d565b60405180910390fd5b60006118e3610e9e565b90506118ed611350565b82826118f99190614f40565b111561193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190614dad565b60405180910390fd5b600082600e5461194a9190614fc7565b90508034101561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690614c0d565b60405180910390fd5b803411156119ea573373ffffffffffffffffffffffffffffffffffffffff166108fc82346119bd9190615021565b9081150290604051600060405180830381858888f193505050501580156119e8573d6000803e3d6000fd5b505b6119f3836125d7565b50506001600b8190555050565b600d60019054906101000a900460ff1681565b611a1b6126ef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614b4d565b60405180910390fd5b8060066000611a966126ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b436126ef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b889190614a50565b60405180910390a35050565b611b9c6126ef565b73ffffffffffffffffffffffffffffffffffffffff16611bba611611565b73ffffffffffffffffffffffffffffffffffffffff1614611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0790614c8d565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b611c59611c536126ef565b8361281c565b611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614d4d565b60405180910390fd5b611ca484848484612b56565b50505050565b611cb26126ef565b73ffffffffffffffffffffffffffffffffffffffff16611cd0611611565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90614c8d565b60405180910390fd5b600047905060006006606483611d3c9190614f96565b611d469190614fc7565b905060008183611d569190615021565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050611db857600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611e1857600080fd5b505050565b6000611e27611350565b82611e30610e9e565b611e3a9190614f40565b1115611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614d0d565b60405180910390fd5b6014821115611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614c4d565b60405180910390fd5b600e5482611ecd9190614fc7565b9050919050565b60606000611ee0612bb2565b90506000611eed84612c45565b905060006040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152509050600083511415611f3e57819350505050611f68565b828282604051602001611f5393929190614912565b60405160208183030381529060405293505050505b919050565b601481565b6104c46020528060005260406000206000915090505481565b6060600f8054611f9a9061513f565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc69061513f565b80156120135780601f10611fe857610100808354040283529160200191612013565b820191906000526020600020905b815481529060010190602001808311611ff657829003601f168201915b5050505050905090565b6060600061202a8361140c565b905060008114156120ad57600067ffffffffffffffff811115612076577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120a45781602001602082028036833780820191505090505b50915050612194565b60008167ffffffffffffffff8111156120ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561211d5781602001602082028036833780820191505090505b50905060005b8281101561218d576121358582610f0b565b82828151811061216e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061218590615171565b915050612123565b5080925050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122356126ef565b73ffffffffffffffffffffffffffffffffffffffff16612253611611565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090614c8d565b60405180910390fd5b6103e86104c354106122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e790614d8d565b60405180910390fd5b6015816104c460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461233e9190614f40565b1061237e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237590614dcd565b60405180910390fd5b60006104c460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081816123cf9190614f40565b6104c460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816104c3546124229190614f40565b6104c381905550505050565b6124366126ef565b73ffffffffffffffffffffffffffffffffffffffff16612454611611565b73ffffffffffffffffffffffffffffffffffffffff16146124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a190614c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561251a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251190614aed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601481111561261b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261290614ccd565b60405180910390fd5b60006104c254905060005b8281101561266857600061263a8483612df2565b90506126463382612e60565b828061265190615115565b93505050808061266090615171565b915050612626565b50806104c2819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126e857506126e782612e7e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127d68361135a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612827826126f7565b612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d90614b6d565b60405180910390fd5b60006128718361135a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128e057508373ffffffffffffffffffffffffffffffffffffffff166128c884610d01565b73ffffffffffffffffffffffffffffffffffffffff16145b806128f157506128f08185612199565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661291a8261135a565b73ffffffffffffffffffffffffffffffffffffffff1614612970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296790614cad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790614b2d565b60405180910390fd5b6129eb838383612f60565b6129f6600082612763565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a469190615021565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9d9190614f40565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b618484846128fa565b612b6d84848484612f70565b612bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba390614acd565b60405180910390fd5b50505050565b60606104c68054612bc29061513f565b80601f0160208091040260200160405190810160405280929190818152602001828054612bee9061513f565b8015612c3b5780601f10612c1057610100808354040283529160200191612c3b565b820191906000526020600020905b815481529060010190602001808311612c1e57829003601f168201915b5050505050905090565b60606000821415612c8d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ded565b600082905060005b60008214612cbf578080612ca890615171565b915050600a82612cb89190614f96565b9150612c95565b60008167ffffffffffffffff811115612d01577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d335781602001600182028036833780820191505090505b5090505b60008514612de657600182612d4c9190615021565b9150600a85612d5b91906151ba565b6030612d679190614f40565b60f81b818381518110612da3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ddf9190614f96565b9450612d37565b8093505050505b919050565b600080333a4342600143612e069190615021565b408888604051602001612e1f97969594939291906149bf565b6040516020818303038152906040528051906020012060001c905060006104c25482612e4b91906151ba565b9050612e5681613107565b9250505092915050565b612e7a828260405180602001604052806000815250613272565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f595750612f58826132cd565b5b9050919050565b612f6b838383613337565b505050565b6000612f918473ffffffffffffffffffffffffffffffffffffffff1661344b565b156130fa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fba6126ef565b8786866040518563ffffffff1660e01b8152600401612fdc9493929190614973565b602060405180830381600087803b158015612ff657600080fd5b505af192505050801561302757506040513d601f19601f820116820180604052508101906130249190613d55565b60015b6130aa573d8060008114613057576040519150601f19603f3d011682016040523d82523d6000602084013e61305c565b606091505b506000815114156130a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309990614acd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130ff565b600190505b949350505050565b6000806012836104b08110613145577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154905060008082141561315b5783905061315f565b8190505b600060016104c2546131719190615021565b905080851461324e5760006012826104b081106131b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050600081141561320a57816012876104b08110613200577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555061324c565b806012876104b08110613246577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505b505b6104c2600081548092919061326290615115565b9190505550819350505050919050565b61327c838361345e565b6132896000848484612f70565b6132c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bf90614acd565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61334283838361362c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133855761338081613631565b6133c4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133c3576133c2838261367a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561340757613402816137e7565b613446565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461344557613444828261392a565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c590614c2d565b60405180910390fd5b6134d7816126f7565b15613517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350e90614b0d565b60405180910390fd5b61352360008383612f60565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135739190614f40565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136878461140c565b6136919190615021565b9050600060086000848152602001908152602001600020549050818114613776576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506137fb9190615021565b90506000600a6000848152602001908152602001600020549050600060098381548110613851577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613899577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061390e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139358361140c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546139b59061513f565b90600052602060002090601f0160209004810192826139d75760008555613a1e565b82601f106139f057805160ff1916838001178555613a1e565b82800160010185558215613a1e579182015b82811115613a1d578251825591602001919060010190613a02565b5b509050613a2b9190613a2f565b5090565b5b80821115613a48576000816000905550600101613a30565b5090565b6000613a5f613a5a84614e59565b614e28565b905082815260208101848484011115613a7757600080fd5b613a828482856150d3565b509392505050565b6000613a9d613a9884614e89565b614e28565b905082815260208101848484011115613ab557600080fd5b613ac08482856150d3565b509392505050565b600081359050613ad7816152b8565b92915050565b600081359050613aec816152cf565b92915050565b600081359050613b01816152e6565b92915050565b600081519050613b16816152e6565b92915050565b600082601f830112613b2d57600080fd5b8135613b3d848260208601613a4c565b91505092915050565b600082601f830112613b5757600080fd5b8135613b67848260208601613a8a565b91505092915050565b600081359050613b7f816152fd565b92915050565b600060208284031215613b9757600080fd5b6000613ba584828501613ac8565b91505092915050565b60008060408385031215613bc157600080fd5b6000613bcf85828601613ac8565b9250506020613be085828601613ac8565b9150509250929050565b600080600060608486031215613bff57600080fd5b6000613c0d86828701613ac8565b9350506020613c1e86828701613ac8565b9250506040613c2f86828701613b70565b9150509250925092565b60008060008060808587031215613c4f57600080fd5b6000613c5d87828801613ac8565b9450506020613c6e87828801613ac8565b9350506040613c7f87828801613b70565b925050606085013567ffffffffffffffff811115613c9c57600080fd5b613ca887828801613b1c565b91505092959194509250565b60008060408385031215613cc757600080fd5b6000613cd585828601613ac8565b9250506020613ce685828601613add565b9150509250929050565b60008060408385031215613d0357600080fd5b6000613d1185828601613ac8565b9250506020613d2285828601613b70565b9150509250929050565b600060208284031215613d3e57600080fd5b6000613d4c84828501613af2565b91505092915050565b600060208284031215613d6757600080fd5b6000613d7584828501613b07565b91505092915050565b600060208284031215613d9057600080fd5b600082013567ffffffffffffffff811115613daa57600080fd5b613db684828501613b46565b91505092915050565b600060208284031215613dd157600080fd5b6000613ddf84828501613b70565b91505092915050565b6000613df483836148f4565b60208301905092915050565b613e0981615055565b82525050565b6000613e1a82614ec9565b613e248185614ef7565b9350613e2f83614eb9565b8060005b83811015613e60578151613e478882613de8565b9750613e5283614eea565b925050600181019050613e33565b5085935050505092915050565b613e7681615067565b82525050565b613e8581615073565b82525050565b6000613e9682614ed4565b613ea08185614f08565b9350613eb08185602086016150e2565b613eb9816152a7565b840191505092915050565b6000613ecf82614edf565b613ed98185614f24565b9350613ee98185602086016150e2565b613ef2816152a7565b840191505092915050565b6000613f0882614edf565b613f128185614f35565b9350613f228185602086016150e2565b80840191505092915050565b6000613f3b601483614f24565b91507f53616c65206861736e277420737461727465642e0000000000000000000000006000830152602082019050919050565b6000613f7b602b83614f24565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613fe1603283614f24565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614047602683614f24565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ad601c83614f24565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140ed602483614f24565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614153601983614f24565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614193602c83614f24565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006141f9601e83614f24565b91507f596f7520646f6e2774206861766520616e79206672656520726f6c6c732100006000830152602082019050919050565b6000614239603883614f24565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061429f602a83614f24565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614305602983614f24565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061436b602683614f24565b91507f546f6f206c6974746c652073656e742c20706c656173652073656e64206d6f7260008301527f65206574682e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143d1602083614f24565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614411602083614f24565b91507f596f752063616e6e6f74206d696e742074686174206d616e792070756e6b732e6000830152602082019050919050565b6000614451602c83614f24565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006144b7602083614f24565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006144f7602983614f24565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061455d601983614f24565b91507f4d696e74696e6720746f6f206d616e79206174206f6e63652e000000000000006000830152602082019050919050565b600061459d602183614f24565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614603602383614f24565b91507f546865726520617265206e6f742074686973206d616e792070756e6b73206c6560008301527f66742e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614669600083614f19565b9150600082019050919050565b6000614683601083614f24565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b60006146c3603183614f24565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614729602c83614f24565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061478f602683614f24565b91507f416c726561647920676976656e206d6178206e756d626572206f66206672656560008301527f20726f6c6c7300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147f5602283614f24565b91507f5468657265206172656e27742074686973206d616e792070756e6b73206c656660008301527f742e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061485b602383614f24565b91507f43616e6e6f742065786365656420323020756e75736564206672656520726f6c60008301527f6c732100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148c1601f83614f24565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6148fd816150c9565b82525050565b61490c816150c9565b82525050565b600061491e8286613efd565b915061492a8285613efd565b91506149368284613efd565b9150819050949350505050565b600061494e8261465c565b9150819050919050565b600060208201905061496d6000830184613e00565b92915050565b60006080820190506149886000830187613e00565b6149956020830186613e00565b6149a26040830185614903565b81810360608301526149b48184613e8b565b905095945050505050565b600060e0820190506149d4600083018a613e00565b6149e16020830189614903565b6149ee6040830188614903565b6149fb6060830187614903565b614a086080830186613e7c565b614a1560a0830185614903565b614a2260c0830184614903565b98975050505050505050565b60006020820190508181036000830152614a488184613e0f565b905092915050565b6000602082019050614a656000830184613e6d565b92915050565b60006020820190508181036000830152614a858184613ec4565b905092915050565b60006020820190508181036000830152614aa681613f2e565b9050919050565b60006020820190508181036000830152614ac681613f6e565b9050919050565b60006020820190508181036000830152614ae681613fd4565b9050919050565b60006020820190508181036000830152614b068161403a565b9050919050565b60006020820190508181036000830152614b26816140a0565b9050919050565b60006020820190508181036000830152614b46816140e0565b9050919050565b60006020820190508181036000830152614b6681614146565b9050919050565b60006020820190508181036000830152614b8681614186565b9050919050565b60006020820190508181036000830152614ba6816141ec565b9050919050565b60006020820190508181036000830152614bc68161422c565b9050919050565b60006020820190508181036000830152614be681614292565b9050919050565b60006020820190508181036000830152614c06816142f8565b9050919050565b60006020820190508181036000830152614c268161435e565b9050919050565b60006020820190508181036000830152614c46816143c4565b9050919050565b60006020820190508181036000830152614c6681614404565b9050919050565b60006020820190508181036000830152614c8681614444565b9050919050565b60006020820190508181036000830152614ca6816144aa565b9050919050565b60006020820190508181036000830152614cc6816144ea565b9050919050565b60006020820190508181036000830152614ce681614550565b9050919050565b60006020820190508181036000830152614d0681614590565b9050919050565b60006020820190508181036000830152614d26816145f6565b9050919050565b60006020820190508181036000830152614d4681614676565b9050919050565b60006020820190508181036000830152614d66816146b6565b9050919050565b60006020820190508181036000830152614d868161471c565b9050919050565b60006020820190508181036000830152614da681614782565b9050919050565b60006020820190508181036000830152614dc6816147e8565b9050919050565b60006020820190508181036000830152614de68161484e565b9050919050565b60006020820190508181036000830152614e06816148b4565b9050919050565b6000602082019050614e226000830184614903565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614e4f57614e4e615278565b5b8060405250919050565b600067ffffffffffffffff821115614e7457614e73615278565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614ea457614ea3615278565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f4b826150c9565b9150614f56836150c9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f8b57614f8a6151eb565b5b828201905092915050565b6000614fa1826150c9565b9150614fac836150c9565b925082614fbc57614fbb61521a565b5b828204905092915050565b6000614fd2826150c9565b9150614fdd836150c9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615016576150156151eb565b5b828202905092915050565b600061502c826150c9565b9150615037836150c9565b92508282101561504a576150496151eb565b5b828203905092915050565b6000615060826150a9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151005780820151818401526020810190506150e5565b8381111561510f576000848401525b50505050565b6000615120826150c9565b91506000821415615134576151336151eb565b5b600182039050919050565b6000600282049050600182168061515757607f821691505b6020821081141561516b5761516a615249565b5b50919050565b600061517c826150c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151af576151ae6151eb565b5b600182019050919050565b60006151c5826150c9565b91506151d0836150c9565b9250826151e0576151df61521a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6152c181615055565b81146152cc57600080fd5b50565b6152d881615067565b81146152e357600080fd5b50565b6152ef8161507d565b81146152fa57600080fd5b50565b615306816150c9565b811461531157600080fd5b5056fea264697066735822122017a8cd73158e2abea027631797c1003982e34243a1da8ac5990fd1e7df484a2364736f6c63430008000033

Deployed Bytecode

0x6080604052600436106102505760003560e01c80638da5cb5b11610139578063b88d4fde116100b6578063d2d6a5471161007a578063d2d6a5471461086a578063e8a3d485146108a7578063e8e732a1146108d2578063e985e9c51461090f578063f2f5ec151461094c578063f2fde38b1461097557610250565b8063b88d4fde14610785578063bb51f32d146107ae578063bc4eda10146107c5578063c87b56dd14610802578063cbf775b21461083f57610250565b80639fd83a15116100fd5780639fd83a15146106c1578063a0712d68146106fe578063a1d898191461071a578063a22cb46514610745578063b66a0e5d1461076e57610250565b80638da5cb5b146105ee57806391b7f5ed14610619578063938e3d7b1461064257806395d89b411461066b57806398d5fdca1461069657610250565b8063380d831b116101d257806355f804b31161019657806355f804b3146104de5780635b5a493d146105075780636352211e1461053257806370a082311461056f578063715018a6146105ac578063779e170d146105c357610250565b8063380d831b1461041f5780633af03e8a1461043657806342842e0e1461044d5780634f6ccce71461047657806351605d80146104b357610250565b8063081812fc11610219578063081812fc14610328578063095ea7b31461036557806318160ddd1461038e57806323b872dd146103b95780632f745c59146103e257610250565b8062e6672c1461025557806301ffc9a71461026c57806304299b2a146102a957806306d120d5146102d257806306fdde03146102fd575b600080fd5b34801561026157600080fd5b5061026a61099e565b005b34801561027857600080fd5b50610293600480360381019061028e9190613d2c565b610b39565b6040516102a09190614a50565b60405180910390f35b3480156102b557600080fd5b506102d060048036038101906102cb9190613d7e565b610b4b565b005b3480156102de57600080fd5b506102e7610be1565b6040516102f49190614a6b565b60405180910390f35b34801561030957600080fd5b50610312610c6f565b60405161031f9190614a6b565b60405180910390f35b34801561033457600080fd5b5061034f600480360381019061034a9190613dbf565b610d01565b60405161035c9190614958565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190613cf0565b610d86565b005b34801561039a57600080fd5b506103a3610e9e565b6040516103b09190614e0d565b60405180910390f35b3480156103c557600080fd5b506103e060048036038101906103db9190613bea565b610eab565b005b3480156103ee57600080fd5b5061040960048036038101906104049190613cf0565b610f0b565b6040516104169190614e0d565b60405180910390f35b34801561042b57600080fd5b50610434610fb0565b005b34801561044257600080fd5b5061044b611049565b005b34801561045957600080fd5b50610474600480360381019061046f9190613bea565b611174565b005b34801561048257600080fd5b5061049d60048036038101906104989190613dbf565b611194565b6040516104aa9190614e0d565b60405180910390f35b3480156104bf57600080fd5b506104c861122b565b6040516104d59190614a6b565b60405180910390f35b3480156104ea57600080fd5b5061050560048036038101906105009190613d7e565b6112b9565b005b34801561051357600080fd5b5061051c611350565b6040516105299190614e0d565b60405180910390f35b34801561053e57600080fd5b5061055960048036038101906105549190613dbf565b61135a565b6040516105669190614958565b60405180910390f35b34801561057b57600080fd5b5061059660048036038101906105919190613b85565b61140c565b6040516105a39190614e0d565b60405180910390f35b3480156105b857600080fd5b506105c16114c4565b005b3480156105cf57600080fd5b506105d86115fe565b6040516105e59190614a50565b60405180910390f35b3480156105fa57600080fd5b50610603611611565b6040516106109190614958565b60405180910390f35b34801561062557600080fd5b50610640600480360381019061063b9190613dbf565b61163a565b005b34801561064e57600080fd5b5061066960048036038101906106649190613d7e565b6116c0565b005b34801561067757600080fd5b50610680611756565b60405161068d9190614a6b565b60405180910390f35b3480156106a257600080fd5b506106ab6117e8565b6040516106b89190614e0d565b60405180910390f35b3480156106cd57600080fd5b506106e860048036038101906106e39190613b85565b6117f2565b6040516106f59190614e0d565b60405180910390f35b61071860048036038101906107139190613dbf565b61183c565b005b34801561072657600080fd5b5061072f611a00565b60405161073c9190614a50565b60405180910390f35b34801561075157600080fd5b5061076c60048036038101906107679190613cb4565b611a13565b005b34801561077a57600080fd5b50610783611b94565b005b34801561079157600080fd5b506107ac60048036038101906107a79190613c39565b611c48565b005b3480156107ba57600080fd5b506107c3611caa565b005b3480156107d157600080fd5b506107ec60048036038101906107e79190613dbf565b611e1d565b6040516107f99190614e0d565b60405180910390f35b34801561080e57600080fd5b5061082960048036038101906108249190613dbf565b611ed4565b6040516108369190614a6b565b60405180910390f35b34801561084b57600080fd5b50610854611f6d565b6040516108619190614e0d565b60405180910390f35b34801561087657600080fd5b50610891600480360381019061088c9190613b85565b611f72565b60405161089e9190614e0d565b60405180910390f35b3480156108b357600080fd5b506108bc611f8b565b6040516108c99190614a6b565b60405180910390f35b3480156108de57600080fd5b506108f960048036038101906108f49190613b85565b61201d565b6040516109069190614a2e565b60405180910390f35b34801561091b57600080fd5b5061093660048036038101906109319190613bae565b612199565b6040516109439190614a50565b60405180910390f35b34801561095857600080fd5b50610973600480360381019061096e9190613cf0565b61222d565b005b34801561098157600080fd5b5061099c60048036038101906109979190613b85565b61242e565b005b6002600b5414156109e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109db90614ded565b60405180910390fd5b6002600b8190555060006104c460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205411610a6f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a6690614b8d565b60405180910390fd5b60006104c460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905060006104c460003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055506000610b04610e9e565b610b0c611350565b610b169190615021565b905080821115610b24578091505b610b2d826125d7565b50506001600b81905550565b6000610b4482612675565b9050919050565b610b536126ef565b73ffffffffffffffffffffffffffffffffffffffff16610b71611611565b73ffffffffffffffffffffffffffffffffffffffff1614610bc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bbe90614c8d565b60405180910390fd5b80600c9080519060200190610bdd9291906139a9565b5050565b600f8054610bee9061513f565b80601f0160208091040260200160405190810160405280929190818152602001828054610c1a9061513f565b8015610c675780601f10610c3c57610100808354040283529160200191610c67565b820191906000526020600020905b815481529060010190602001808311610c4a57829003601f168201915b505050505081565b606060018054610c7e9061513f565b80601f0160208091040260200160405190810160405280929190818152602001828054610caa9061513f565b8015610cf75780601f10610ccc57610100808354040283529160200191610cf7565b820191906000526020600020905b815481529060010190602001808311610cda57829003601f168201915b5050505050905090565b6000610d0c826126f7565b610d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4290614c6d565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610d918261135a565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e02576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610df990614ced565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e216126ef565b73ffffffffffffffffffffffffffffffffffffffff161480610e505750610e4f81610e4a6126ef565b612199565b5b610e8f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8690614bad565b60405180910390fd5b610e998383612763565b505050565b6000600980549050905090565b610ebc610eb66126ef565b8261281c565b610efb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ef290614d4d565b60405180910390fd5b610f068383836128fa565b505050565b6000610f168361140c565b8210610f57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f4e90614aad565b60405180910390fd5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b610fb86126ef565b73ffffffffffffffffffffffffffffffffffffffff16610fd6611611565b73ffffffffffffffffffffffffffffffffffffffff161461102c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102390614c8d565b60405180910390fd5b6000600d60006101000a81548160ff021916908315150217905550565b6110516126ef565b73ffffffffffffffffffffffffffffffffffffffff1661106f611611565b73ffffffffffffffffffffffffffffffffffffffff16146110c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110bc90614c8d565b60405180910390fd5b60003373ffffffffffffffffffffffffffffffffffffffff16476040516110eb90614943565b60006040518083038185875af1925050503d8060008114611128576040519150601f19603f3d011682016040523d82523d6000602084013e61112d565b606091505b5050905080611171576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116890614d2d565b60405180910390fd5b50565b61118f83838360405180602001604052806000815250611c48565b505050565b600061119e610e9e565b82106111df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d690614d6d565b60405180910390fd5b60098281548110611219577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90600052602060002001549050919050565b600c80546112389061513f565b80601f01602080910402602001604051908101604052809291908181526020018280546112649061513f565b80156112b15780601f10611286576101008083540402835291602001916112b1565b820191906000526020600020905b81548152906001019060200180831161129457829003601f168201915b505050505081565b6112c16126ef565b73ffffffffffffffffffffffffffffffffffffffff166112df611611565b73ffffffffffffffffffffffffffffffffffffffff1614611335576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132c90614c8d565b60405180910390fd5b806104c6908051906020019061134c9291906139a9565b5050565b60006104b0905090565b6000806003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611403576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fa90614bed565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561147d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161147490614bcd565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6114cc6126ef565b73ffffffffffffffffffffffffffffffffffffffff166114ea611611565b73ffffffffffffffffffffffffffffffffffffffff1614611540576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153790614c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a360008060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b600d60009054906101000a900460ff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6116426126ef565b73ffffffffffffffffffffffffffffffffffffffff16611660611611565b73ffffffffffffffffffffffffffffffffffffffff16146116b6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ad90614c8d565b60405180910390fd5b80600e8190555050565b6116c86126ef565b73ffffffffffffffffffffffffffffffffffffffff166116e6611611565b73ffffffffffffffffffffffffffffffffffffffff161461173c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161173390614c8d565b60405180910390fd5b80600f90805190602001906117529291906139a9565b5050565b6060600280546117659061513f565b80601f01602080910402602001604051908101604052809291908181526020018280546117919061513f565b80156117de5780601f106117b3576101008083540402835291602001916117de565b820191906000526020600020905b8154815290600101906020018083116117c157829003601f168201915b5050505050905090565b6000600e54905090565b60006104c460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6002600b541415611882576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161187990614ded565b60405180910390fd5b6002600b81905550600d60009054906101000a900460ff166118d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118d090614a8d565b60405180910390fd5b60006118e3610e9e565b90506118ed611350565b82826118f99190614f40565b111561193a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193190614dad565b60405180910390fd5b600082600e5461194a9190614fc7565b90508034101561198f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161198690614c0d565b60405180910390fd5b803411156119ea573373ffffffffffffffffffffffffffffffffffffffff166108fc82346119bd9190615021565b9081150290604051600060405180830381858888f193505050501580156119e8573d6000803e3d6000fd5b505b6119f3836125d7565b50506001600b8190555050565b600d60019054906101000a900460ff1681565b611a1b6126ef565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611a89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a8090614b4d565b60405180910390fd5b8060066000611a966126ef565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611b436126ef565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611b889190614a50565b60405180910390a35050565b611b9c6126ef565b73ffffffffffffffffffffffffffffffffffffffff16611bba611611565b73ffffffffffffffffffffffffffffffffffffffff1614611c10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c0790614c8d565b60405180910390fd5b6001600d60006101000a81548160ff0219169083151502179055506001600d60016101000a81548160ff021916908315150217905550565b611c59611c536126ef565b8361281c565b611c98576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c8f90614d4d565b60405180910390fd5b611ca484848484612b56565b50505050565b611cb26126ef565b73ffffffffffffffffffffffffffffffffffffffff16611cd0611611565b73ffffffffffffffffffffffffffffffffffffffff1614611d26576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d1d90614c8d565b60405180910390fd5b600047905060006006606483611d3c9190614f96565b611d469190614fc7565b905060008183611d569190615021565b9050601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f19350505050611db857600080fd5b601160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050611e1857600080fd5b505050565b6000611e27611350565b82611e30610e9e565b611e3a9190614f40565b1115611e7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e7290614d0d565b60405180910390fd5b6014821115611ebf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611eb690614c4d565b60405180910390fd5b600e5482611ecd9190614fc7565b9050919050565b60606000611ee0612bb2565b90506000611eed84612c45565b905060006040518060400160405280600581526020017f2e6a736f6e0000000000000000000000000000000000000000000000000000008152509050600083511415611f3e57819350505050611f68565b828282604051602001611f5393929190614912565b60405160208183030381529060405293505050505b919050565b601481565b6104c46020528060005260406000206000915090505481565b6060600f8054611f9a9061513f565b80601f0160208091040260200160405190810160405280929190818152602001828054611fc69061513f565b80156120135780601f10611fe857610100808354040283529160200191612013565b820191906000526020600020905b815481529060010190602001808311611ff657829003601f168201915b5050505050905090565b6060600061202a8361140c565b905060008114156120ad57600067ffffffffffffffff811115612076577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156120a45781602001602082028036833780820191505090505b50915050612194565b60008167ffffffffffffffff8111156120ef577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b60405190808252806020026020018201604052801561211d5781602001602082028036833780820191505090505b50905060005b8281101561218d576121358582610f0b565b82828151811061216e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061218590615171565b915050612123565b5080925050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6122356126ef565b73ffffffffffffffffffffffffffffffffffffffff16612253611611565b73ffffffffffffffffffffffffffffffffffffffff16146122a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a090614c8d565b60405180910390fd5b6103e86104c354106122f0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122e790614d8d565b60405180910390fd5b6015816104c460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461233e9190614f40565b1061237e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161237590614dcd565b60405180910390fd5b60006104c460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081816123cf9190614f40565b6104c460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816104c3546124229190614f40565b6104c381905550505050565b6124366126ef565b73ffffffffffffffffffffffffffffffffffffffff16612454611611565b73ffffffffffffffffffffffffffffffffffffffff16146124aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124a190614c8d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561251a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161251190614aed565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660008054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b601481111561261b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161261290614ccd565b60405180910390fd5b60006104c254905060005b8281101561266857600061263a8483612df2565b90506126463382612e60565b828061265190615115565b93505050808061266090615171565b915050612626565b50806104c2819055505050565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806126e857506126e782612e7e565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166003600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816005600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166127d68361135a565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000612827826126f7565b612866576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161285d90614b6d565b60405180910390fd5b60006128718361135a565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806128e057508373ffffffffffffffffffffffffffffffffffffffff166128c884610d01565b73ffffffffffffffffffffffffffffffffffffffff16145b806128f157506128f08185612199565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661291a8261135a565b73ffffffffffffffffffffffffffffffffffffffff1614612970576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296790614cad565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156129e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129d790614b2d565b60405180910390fd5b6129eb838383612f60565b6129f6600082612763565b6001600460008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a469190615021565b925050819055506001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612a9d9190614f40565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b612b618484846128fa565b612b6d84848484612f70565b612bac576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ba390614acd565b60405180910390fd5b50505050565b60606104c68054612bc29061513f565b80601f0160208091040260200160405190810160405280929190818152602001828054612bee9061513f565b8015612c3b5780601f10612c1057610100808354040283529160200191612c3b565b820191906000526020600020905b815481529060010190602001808311612c1e57829003601f168201915b5050505050905090565b60606000821415612c8d576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612ded565b600082905060005b60008214612cbf578080612ca890615171565b915050600a82612cb89190614f96565b9150612c95565b60008167ffffffffffffffff811115612d01577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612d335781602001600182028036833780820191505090505b5090505b60008514612de657600182612d4c9190615021565b9150600a85612d5b91906151ba565b6030612d679190614f40565b60f81b818381518110612da3577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612ddf9190614f96565b9450612d37565b8093505050505b919050565b600080333a4342600143612e069190615021565b408888604051602001612e1f97969594939291906149bf565b6040516020818303038152906040528051906020012060001c905060006104c25482612e4b91906151ba565b9050612e5681613107565b9250505092915050565b612e7a828260405180602001604052806000815250613272565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480612f4957507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80612f595750612f58826132cd565b5b9050919050565b612f6b838383613337565b505050565b6000612f918473ffffffffffffffffffffffffffffffffffffffff1661344b565b156130fa578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612fba6126ef565b8786866040518563ffffffff1660e01b8152600401612fdc9493929190614973565b602060405180830381600087803b158015612ff657600080fd5b505af192505050801561302757506040513d601f19601f820116820180604052508101906130249190613d55565b60015b6130aa573d8060008114613057576040519150601f19603f3d011682016040523d82523d6000602084013e61305c565b606091505b506000815114156130a2576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161309990614acd565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149150506130ff565b600190505b949350505050565b6000806012836104b08110613145577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b0154905060008082141561315b5783905061315f565b8190505b600060016104c2546131719190615021565b905080851461324e5760006012826104b081106131b7577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01549050600081141561320a57816012876104b08110613200577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b018190555061324c565b806012876104b08110613246577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b01819055505b505b6104c2600081548092919061326290615115565b9190505550819350505050919050565b61327c838361345e565b6132896000848484612f70565b6132c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016132bf90614acd565b60405180910390fd5b505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b61334283838361362c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156133855761338081613631565b6133c4565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146133c3576133c2838261367a565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561340757613402816137e7565b613446565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161461344557613444828261392a565b5b5b505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156134ce576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016134c590614c2d565b60405180910390fd5b6134d7816126f7565b15613517576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161350e90614b0d565b60405180910390fd5b61352360008383612f60565b6001600460008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546135739190614f40565b92505081905550816003600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b505050565b600980549050600a600083815260200190815260200160002081905550600981908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016136878461140c565b6136919190615021565b9050600060086000848152602001908152602001600020549050818114613776576000600760008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600760008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816008600083815260200190815260200160002081905550505b6008600084815260200190815260200160002060009055600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016009805490506137fb9190615021565b90506000600a6000848152602001908152602001600020549050600060098381548110613851577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020015490508060098381548110613899577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b906000526020600020018190555081600a600083815260200190815260200160002081905550600a600085815260200190815260200160002060009055600980548061390e577f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b60006139358361140c565b905081600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806008600084815260200190815260200160002081905550505050565b8280546139b59061513f565b90600052602060002090601f0160209004810192826139d75760008555613a1e565b82601f106139f057805160ff1916838001178555613a1e565b82800160010185558215613a1e579182015b82811115613a1d578251825591602001919060010190613a02565b5b509050613a2b9190613a2f565b5090565b5b80821115613a48576000816000905550600101613a30565b5090565b6000613a5f613a5a84614e59565b614e28565b905082815260208101848484011115613a7757600080fd5b613a828482856150d3565b509392505050565b6000613a9d613a9884614e89565b614e28565b905082815260208101848484011115613ab557600080fd5b613ac08482856150d3565b509392505050565b600081359050613ad7816152b8565b92915050565b600081359050613aec816152cf565b92915050565b600081359050613b01816152e6565b92915050565b600081519050613b16816152e6565b92915050565b600082601f830112613b2d57600080fd5b8135613b3d848260208601613a4c565b91505092915050565b600082601f830112613b5757600080fd5b8135613b67848260208601613a8a565b91505092915050565b600081359050613b7f816152fd565b92915050565b600060208284031215613b9757600080fd5b6000613ba584828501613ac8565b91505092915050565b60008060408385031215613bc157600080fd5b6000613bcf85828601613ac8565b9250506020613be085828601613ac8565b9150509250929050565b600080600060608486031215613bff57600080fd5b6000613c0d86828701613ac8565b9350506020613c1e86828701613ac8565b9250506040613c2f86828701613b70565b9150509250925092565b60008060008060808587031215613c4f57600080fd5b6000613c5d87828801613ac8565b9450506020613c6e87828801613ac8565b9350506040613c7f87828801613b70565b925050606085013567ffffffffffffffff811115613c9c57600080fd5b613ca887828801613b1c565b91505092959194509250565b60008060408385031215613cc757600080fd5b6000613cd585828601613ac8565b9250506020613ce685828601613add565b9150509250929050565b60008060408385031215613d0357600080fd5b6000613d1185828601613ac8565b9250506020613d2285828601613b70565b9150509250929050565b600060208284031215613d3e57600080fd5b6000613d4c84828501613af2565b91505092915050565b600060208284031215613d6757600080fd5b6000613d7584828501613b07565b91505092915050565b600060208284031215613d9057600080fd5b600082013567ffffffffffffffff811115613daa57600080fd5b613db684828501613b46565b91505092915050565b600060208284031215613dd157600080fd5b6000613ddf84828501613b70565b91505092915050565b6000613df483836148f4565b60208301905092915050565b613e0981615055565b82525050565b6000613e1a82614ec9565b613e248185614ef7565b9350613e2f83614eb9565b8060005b83811015613e60578151613e478882613de8565b9750613e5283614eea565b925050600181019050613e33565b5085935050505092915050565b613e7681615067565b82525050565b613e8581615073565b82525050565b6000613e9682614ed4565b613ea08185614f08565b9350613eb08185602086016150e2565b613eb9816152a7565b840191505092915050565b6000613ecf82614edf565b613ed98185614f24565b9350613ee98185602086016150e2565b613ef2816152a7565b840191505092915050565b6000613f0882614edf565b613f128185614f35565b9350613f228185602086016150e2565b80840191505092915050565b6000613f3b601483614f24565b91507f53616c65206861736e277420737461727465642e0000000000000000000000006000830152602082019050919050565b6000613f7b602b83614f24565b91507f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008301527f74206f6620626f756e64730000000000000000000000000000000000000000006020830152604082019050919050565b6000613fe1603283614f24565b91507f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008301527f63656976657220696d706c656d656e74657200000000000000000000000000006020830152604082019050919050565b6000614047602683614f24565b91507f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008301527f64647265737300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006140ad601c83614f24565b91507f4552433732313a20746f6b656e20616c7265616479206d696e746564000000006000830152602082019050919050565b60006140ed602483614f24565b91507f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008301527f72657373000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614153601983614f24565b91507f4552433732313a20617070726f766520746f2063616c6c6572000000000000006000830152602082019050919050565b6000614193602c83614f24565b91507f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006141f9601e83614f24565b91507f596f7520646f6e2774206861766520616e79206672656520726f6c6c732100006000830152602082019050919050565b6000614239603883614f24565b91507f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008301527f6e6572206e6f7220617070726f76656420666f7220616c6c00000000000000006020830152604082019050919050565b600061429f602a83614f24565b91507f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008301527f726f2061646472657373000000000000000000000000000000000000000000006020830152604082019050919050565b6000614305602983614f24565b91507f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008301527f656e7420746f6b656e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061436b602683614f24565b91507f546f6f206c6974746c652073656e742c20706c656173652073656e64206d6f7260008301527f65206574682e00000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006143d1602083614f24565b91507f4552433732313a206d696e7420746f20746865207a65726f20616464726573736000830152602082019050919050565b6000614411602083614f24565b91507f596f752063616e6e6f74206d696e742074686174206d616e792070756e6b732e6000830152602082019050919050565b6000614451602c83614f24565b91507f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008301527f697374656e7420746f6b656e00000000000000000000000000000000000000006020830152604082019050919050565b60006144b7602083614f24565b91507f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726000830152602082019050919050565b60006144f7602983614f24565b91507f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008301527f73206e6f74206f776e00000000000000000000000000000000000000000000006020830152604082019050919050565b600061455d601983614f24565b91507f4d696e74696e6720746f6f206d616e79206174206f6e63652e000000000000006000830152602082019050919050565b600061459d602183614f24565b91507f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008301527f72000000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614603602383614f24565b91507f546865726520617265206e6f742074686973206d616e792070756e6b73206c6560008301527f66742e00000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b6000614669600083614f19565b9150600082019050919050565b6000614683601083614f24565b91507f5472616e73666572206661696c65642e000000000000000000000000000000006000830152602082019050919050565b60006146c3603183614f24565b91507f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008301527f776e6572206e6f7220617070726f7665640000000000000000000000000000006020830152604082019050919050565b6000614729602c83614f24565b91507f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008301527f7574206f6620626f756e647300000000000000000000000000000000000000006020830152604082019050919050565b600061478f602683614f24565b91507f416c726561647920676976656e206d6178206e756d626572206f66206672656560008301527f20726f6c6c7300000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006147f5602283614f24565b91507f5468657265206172656e27742074686973206d616e792070756e6b73206c656660008301527f742e0000000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b600061485b602383614f24565b91507f43616e6e6f742065786365656420323020756e75736564206672656520726f6c60008301527f6c732100000000000000000000000000000000000000000000000000000000006020830152604082019050919050565b60006148c1601f83614f24565b91507f5265656e7472616e637947756172643a207265656e7472616e742063616c6c006000830152602082019050919050565b6148fd816150c9565b82525050565b61490c816150c9565b82525050565b600061491e8286613efd565b915061492a8285613efd565b91506149368284613efd565b9150819050949350505050565b600061494e8261465c565b9150819050919050565b600060208201905061496d6000830184613e00565b92915050565b60006080820190506149886000830187613e00565b6149956020830186613e00565b6149a26040830185614903565b81810360608301526149b48184613e8b565b905095945050505050565b600060e0820190506149d4600083018a613e00565b6149e16020830189614903565b6149ee6040830188614903565b6149fb6060830187614903565b614a086080830186613e7c565b614a1560a0830185614903565b614a2260c0830184614903565b98975050505050505050565b60006020820190508181036000830152614a488184613e0f565b905092915050565b6000602082019050614a656000830184613e6d565b92915050565b60006020820190508181036000830152614a858184613ec4565b905092915050565b60006020820190508181036000830152614aa681613f2e565b9050919050565b60006020820190508181036000830152614ac681613f6e565b9050919050565b60006020820190508181036000830152614ae681613fd4565b9050919050565b60006020820190508181036000830152614b068161403a565b9050919050565b60006020820190508181036000830152614b26816140a0565b9050919050565b60006020820190508181036000830152614b46816140e0565b9050919050565b60006020820190508181036000830152614b6681614146565b9050919050565b60006020820190508181036000830152614b8681614186565b9050919050565b60006020820190508181036000830152614ba6816141ec565b9050919050565b60006020820190508181036000830152614bc68161422c565b9050919050565b60006020820190508181036000830152614be681614292565b9050919050565b60006020820190508181036000830152614c06816142f8565b9050919050565b60006020820190508181036000830152614c268161435e565b9050919050565b60006020820190508181036000830152614c46816143c4565b9050919050565b60006020820190508181036000830152614c6681614404565b9050919050565b60006020820190508181036000830152614c8681614444565b9050919050565b60006020820190508181036000830152614ca6816144aa565b9050919050565b60006020820190508181036000830152614cc6816144ea565b9050919050565b60006020820190508181036000830152614ce681614550565b9050919050565b60006020820190508181036000830152614d0681614590565b9050919050565b60006020820190508181036000830152614d26816145f6565b9050919050565b60006020820190508181036000830152614d4681614676565b9050919050565b60006020820190508181036000830152614d66816146b6565b9050919050565b60006020820190508181036000830152614d868161471c565b9050919050565b60006020820190508181036000830152614da681614782565b9050919050565b60006020820190508181036000830152614dc6816147e8565b9050919050565b60006020820190508181036000830152614de68161484e565b9050919050565b60006020820190508181036000830152614e06816148b4565b9050919050565b6000602082019050614e226000830184614903565b92915050565b6000604051905081810181811067ffffffffffffffff82111715614e4f57614e4e615278565b5b8060405250919050565b600067ffffffffffffffff821115614e7457614e73615278565b5b601f19601f8301169050602081019050919050565b600067ffffffffffffffff821115614ea457614ea3615278565b5b601f19601f8301169050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000614f4b826150c9565b9150614f56836150c9565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614f8b57614f8a6151eb565b5b828201905092915050565b6000614fa1826150c9565b9150614fac836150c9565b925082614fbc57614fbb61521a565b5b828204905092915050565b6000614fd2826150c9565b9150614fdd836150c9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615016576150156151eb565b5b828202905092915050565b600061502c826150c9565b9150615037836150c9565b92508282101561504a576150496151eb565b5b828203905092915050565b6000615060826150a9565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156151005780820151818401526020810190506150e5565b8381111561510f576000848401525b50505050565b6000615120826150c9565b91506000821415615134576151336151eb565b5b600182039050919050565b6000600282049050600182168061515757607f821691505b6020821081141561516b5761516a615249565b5b50919050565b600061517c826150c9565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156151af576151ae6151eb565b5b600182019050919050565b60006151c5826150c9565b91506151d0836150c9565b9250826151e0576151df61521a565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6152c181615055565b81146152cc57600080fd5b50565b6152d881615067565b81146152e357600080fd5b50565b6152ef8161507d565b81146152fa57600080fd5b50565b615306816150c9565b811461531157600080fd5b5056fea264697066735822122017a8cd73158e2abea027631797c1003982e34243a1da8ac5990fd1e7df484a2364736f6c63430008000033

Deployed Bytecode Sourcemap

46146:7983:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47080:359;;;;;;;;;;;;;:::i;:::-;;53933:193;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53103:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46517:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27946:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29406:221;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;28943:397;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40317:113;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30296:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39985:256;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52280:65;;;;;;;;;;;;;:::i;:::-;;53557:169;;;;;;;;;;;;;:::i;:::-;;30672:151;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40507:233;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46286:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52875:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46987:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27640:239;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27370:208;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19311:148;;;;;;;;;;;;;:::i;:::-;;46316:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;18660:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52083;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52979:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28115:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50369:75;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47445:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47565:592;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46351:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29699:295;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52176:98;;;;;;;;;;;;;:::i;:::-;;30894:285;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53213:334;;;;;;;;;;;;;:::i;:::-;;50551:369;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;51559:434;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46396:49;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46872:48;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50450:93;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;50926:427;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30065:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;52351:505;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;19614:244;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47080:359;21543:1;22140:7;;:19;;22132:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21543:1;22273:7;:18;;;;47169:1:::1;47141:13;:25;47155:10;47141:25;;;;;;;;;;;;;;;;:29;47133:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;47212:14;47229:13;:25;47243:10;47229:25;;;;;;;;;;;;;;;;47212:42;;47289:1;47261:13;:25;47275:10;47261:25;;;;;;;;;;;;;;;:29;;;;47297:17;47335:13;:11;:13::i;:::-;47317:15;:13;:15::i;:::-;:31;;;;:::i;:::-;47297:51;;47368:9;47359:6;:18;47355:59;;;47397:9;47388:18;;47355:59;47420:13;47426:6;47420:5;:13::i;:::-;22304:1;;21499::::0;22452:7;:22;;;;47080:359::o;53933:193::-;54061:4;54084:36;54108:11;54084:23;:36::i;:::-;54077:43;;53933:193;;;:::o;53103:102::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53189:10:::1;53177:9;:22;;;;;;;;;;;;:::i;:::-;;53103:102:::0;:::o;46517:29::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;27946:100::-;28000:13;28033:5;28026:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27946:100;:::o;29406:221::-;29482:7;29510:16;29518:7;29510;:16::i;:::-;29502:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;29595:15;:24;29611:7;29595:24;;;;;;;;;;;;;;;;;;;;;29588:31;;29406:221;;;:::o;28943:397::-;29024:13;29040:23;29055:7;29040:14;:23::i;:::-;29024:39;;29088:5;29082:11;;:2;:11;;;;29074:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;29168:5;29152:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;29177:37;29194:5;29201:12;:10;:12::i;:::-;29177:16;:37::i;:::-;29152:62;29144:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;29311:21;29320:2;29324:7;29311:8;:21::i;:::-;28943:397;;;:::o;40317:113::-;40378:7;40405:10;:17;;;;40398:24;;40317:113;:::o;30296:305::-;30457:41;30476:12;:10;:12::i;:::-;30490:7;30457:18;:41::i;:::-;30449:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;30565:28;30575:4;30581:2;30585:7;30565:9;:28::i;:::-;30296:305;;;:::o;39985:256::-;40082:7;40118:23;40135:5;40118:16;:23::i;:::-;40110:5;:31;40102:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;40207:12;:19;40220:5;40207:19;;;;;;;;;;;;;;;:26;40227:5;40207:26;;;;;;;;;;;;40200:33;;39985:256;;;;:::o;52280:65::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52334:5:::1;52323:8;;:16;;;;;;;;;;;;;;;;;;52280:65::o:0;53557:169::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53610:12:::1;53628:10;:15;;53651:21;53628:49;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53609:68;;;53692:7;53684:36;;;;;;;;;;;;:::i;:::-;;;;;;;;;18951:1;53557:169::o:0;30672:151::-;30776:39;30793:4;30799:2;30803:7;30776:39;;;;;;;;;;;;:16;:39::i;:::-;30672:151;;;:::o;40507:233::-;40582:7;40618:30;:28;:30::i;:::-;40610:5;:38;40602:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;40715:10;40726:5;40715:17;;;;;;;;;;;;;;;;;;;;;;;;40708:24;;40507:233;;;:::o;46286:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;52875:98::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52960:7:::1;52944:13;:23;;;;;;;;;;;;:::i;:::-;;52875:98:::0;:::o;46987:87::-;47041:7;47064:4;47057:11;;46987:87;:::o;27640:239::-;27712:7;27732:13;27748:7;:16;27756:7;27748:16;;;;;;;;;;;;;;;;;;;;;27732:32;;27800:1;27783:19;;:5;:19;;;;27775:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;27866:5;27859:12;;;27640:239;;;:::o;27370:208::-;27442:7;27487:1;27470:19;;:5;:19;;;;27462:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;27554:9;:16;27564:5;27554:16;;;;;;;;;;;;;;;;27547:23;;27370:208;;;:::o;19311:148::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19418:1:::1;19381:40;;19402:6;::::0;::::1;;;;;;;;19381:40;;;;;;;;;;;;19449:1;19432:6:::0;::::1;:19;;;;;;;;;;;;;;;;;;19311:148::o:0;46316:28::-;;;;;;;;;;;;;:::o;18660:87::-;18706:7;18733:6;;;;;;;;;;;18726:13;;18660:87;:::o;52083:::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52155:9:::1;52146:6;:18;;;;52083:87:::0;:::o;52979:114::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53075:12:::1;53057:15;:30;;;;;;;;;;;;:::i;:::-;;52979:114:::0;:::o;28115:104::-;28171:13;28204:7;28197:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;28115:104;:::o;50369:75::-;50410:7;50432:6;;50425:13;;50369:75;:::o;47445:114::-;47510:7;47533:13;:20;47547:5;47533:20;;;;;;;;;;;;;;;;47526:27;;47445:114;;;:::o;47565:592::-;21543:1;22140:7;;:19;;22132:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;21543:1;22273:7;:18;;;;47644:8:::1;;;;;;;;;;;47636:41;;;;;;;;;;;;:::i;:::-;;;;;;;;;47684:19;47706:13;:11;:13::i;:::-;47684:35;;47770:15;:13;:15::i;:::-;47756:10;47742:11;:24;;;;:::i;:::-;:43;;47726:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;47844:27;47883:10;47874:6;;:19;;;;:::i;:::-;47844:49;;47929:19;47916:9;:32;;47900:104;;;;;;;;;;;;:::i;:::-;;;;;;;;;48027:19;48015:9;:31;48011:115;;;48065:10;48057:28;;:61;48098:19;48086:9;:31;;;;:::i;:::-;48057:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;::::0;::::1;;;;;;48011:115;48134:17;48140:10;48134:5;:17::i;:::-;22304:1;;21499::::0;22452:7;:22;;;;47565:592;:::o;46351:38::-;;;;;;;;;;;;;:::o;29699:295::-;29814:12;:10;:12::i;:::-;29802:24;;:8;:24;;;;29794:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;29914:8;29869:18;:32;29888:12;:10;:12::i;:::-;29869:32;;;;;;;;;;;;;;;:42;29902:8;29869:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29967:8;29938:48;;29953:12;:10;:12::i;:::-;29938:48;;;29977:8;29938:48;;;;;;:::i;:::-;;;;;;;;29699:295;;:::o;52176:98::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52232:4:::1;52221:8;;:15;;;;;;;;;;;;;;;;;;52264:4;52243:18;;:25;;;;;;;;;;;;;;;;;;52176:98::o:0;30894:285::-;31026:41;31045:12;:10;:12::i;:::-;31059:7;31026:18;:41::i;:::-;31018:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;31132:39;31146:4;31152:2;31156:7;31165:5;31132:13;:39::i;:::-;30894:285;;;;:::o;53213:334::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;53340:16:::1;53359:21;53340:40;;53387:12;53419:1;53413:3;53402:8;:14;;;;:::i;:::-;:18;;;;:::i;:::-;53387:33;;53427:14;53455:4;53444:8;:15;;;;:::i;:::-;53427:32;;53482:3;;;;;;;;;;;53474:17;;:23;53492:4;53474:23;;;;;;;;;;;;;;;;;;;;;;;53466:32;;;::::0;::::1;;53521:5;;;;;;;;;;;53513:19;;:27;53533:6;53513:27;;;;;;;;;;;;;;;;;;;;;;;53505:36;;;::::0;::::1;;18951:1;;;53213:334::o:0;50551:369::-;50639:7;50704:15;:13;:15::i;:::-;50690:10;50674:13;:11;:13::i;:::-;:26;;;;:::i;:::-;:45;;50658:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;46443:2;50795:10;:34;;50779:100;;;;;;;;;;;;:::i;:::-;;;;;;;;;50906:6;;50893:10;:19;;;;:::i;:::-;50886:26;;50551:369;;;:::o;51559:434::-;51645:13;51670:18;51691:10;:8;:10::i;:::-;51670:31;;51708:23;51734:26;51751:8;51734:16;:26::i;:::-;51708:52;;51767:20;:30;;;;;;;;;;;;;;;;;;;51887:1;51871:4;51865:18;:23;51861:62;;;51906:9;51899:16;;;;;;;51861:62;51962:4;51968:9;51979:6;51945:41;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51931:56;;;;;51559:434;;;;:::o;46396:49::-;46443:2;46396:49;:::o;46872:48::-;;;;;;;;;;;;;;;;;:::o;50450:93::-;50494:13;50522:15;50515:22;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50450:93;:::o;50926:427::-;51014:16;51042;51061:17;51071:6;51061:9;:17::i;:::-;51042:36;;51101:1;51089:8;:13;51085:263;;;51134:1;51120:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51113:23;;;;;51085:263;51159:23;51199:8;51185:23;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51159:49;;51222:9;51217:102;51241:8;51237:1;:12;51217:102;;;51279:30;51299:6;51307:1;51279:19;:30::i;:::-;51267:6;51274:1;51267:9;;;;;;;;;;;;;;;;;;;;;:42;;;;;51251:3;;;;;:::i;:::-;;;;51217:102;;;;51334:6;51327:13;;;;50926:427;;;;:::o;30065:164::-;30162:4;30186:18;:25;30205:5;30186:25;;;;;;;;;;;;;;;:35;30212:8;30186:35;;;;;;;;;;;;;;;;;;;;;;;;;30179:42;;30065:164;;;;:::o;52351:505::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;52549:4:::1;52528:18;;:25;52520:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;52648:2;52637:8;52611:13;:23;52625:8;52611:23;;;;;;;;;;;;;;;;:34;;;;:::i;:::-;:39;52603:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;52697:17;52717:13;:23;52731:8;52717:23;;;;;;;;;;;;;;;;52697:43;;52785:8;52773:9;:20;;;;:::i;:::-;52747:13;:23;52761:8;52747:23;;;;;;;;;;;;;;;:46;;;;52842:8;52821:18;;:29;;;;:::i;:::-;52800:18;:50;;;;18951:1;52351:505:::0;;:::o;19614:244::-;18891:12;:10;:12::i;:::-;18880:23;;:7;:5;:7::i;:::-;:23;;;18872:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;19723:1:::1;19703:22;;:8;:22;;;;19695:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;19813:8;19784:38;;19805:6;::::0;::::1;;;;;;;;19784:38;;;;;;;;;;;;19842:8;19833:6;::::0;:17:::1;;;;;;;;;;;;;;;;;;19614:244:::0;:::o;48195:448::-;46443:2;48254:10;:34;;48246:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;48327:33;48363:19;;48327:55;;48394:9;48389:195;48413:10;48409:1;:14;48389:195;;;48439:18;48460:38;48484:10;48496:1;48460:23;:38::i;:::-;48439:59;;48507:33;48517:10;48529;48507:9;:33::i;:::-;48549:27;;;;;:::i;:::-;;;;48389:195;48425:3;;;;;:::i;:::-;;;;48389:195;;;;48612:25;48590:19;:47;;;;48195:448;;:::o;39664:237::-;39766:4;39805:35;39790:50;;;:11;:50;;;;:103;;;;39857:36;39881:11;39857:23;:36::i;:::-;39790:103;39783:110;;39664:237;;;:::o;601:98::-;654:7;681:10;674:17;;601:98;:::o;32646:127::-;32711:4;32763:1;32735:30;;:7;:16;32743:7;32735:16;;;;;;;;;;;;;;;;;;;;;:30;;;;32728:37;;32646:127;;;:::o;36523:174::-;36625:2;36598:15;:24;36614:7;36598:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;36681:7;36677:2;36643:46;;36652:23;36667:7;36652:14;:23::i;:::-;36643:46;;;;;;;;;;;;36523:174;;:::o;32940:348::-;33033:4;33058:16;33066:7;33058;:16::i;:::-;33050:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;33134:13;33150:23;33165:7;33150:14;:23::i;:::-;33134:39;;33203:5;33192:16;;:7;:16;;;:51;;;;33236:7;33212:31;;:20;33224:7;33212:11;:20::i;:::-;:31;;;33192:51;:87;;;;33247:32;33264:5;33271:7;33247:16;:32::i;:::-;33192:87;33184:96;;;32940:348;;;;:::o;35861:544::-;35986:4;35959:31;;:23;35974:7;35959:14;:23::i;:::-;:31;;;35951:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;36069:1;36055:16;;:2;:16;;;;36047:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;36125:39;36146:4;36152:2;36156:7;36125:20;:39::i;:::-;36229:29;36246:1;36250:7;36229:8;:29::i;:::-;36290:1;36271:9;:15;36281:4;36271:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;36319:1;36302:9;:13;36312:2;36302:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;36350:2;36331:7;:16;36339:7;36331:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;36389:7;36385:2;36370:27;;36379:4;36370:27;;;;;;;;;;;;35861:544;;;:::o;32061:272::-;32175:28;32185:4;32191:2;32195:7;32175:9;:28::i;:::-;32222:48;32245:4;32251:2;32255:7;32264:5;32222:22;:48::i;:::-;32214:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;32061:272;;;;:::o;51445:108::-;51505:13;51534;51527:20;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51445:108;:::o;23995:723::-;24051:13;24281:1;24272:5;:10;24268:53;;;24299:10;;;;;;;;;;;;;;;;;;;;;24268:53;24331:12;24346:5;24331:20;;24362:14;24387:78;24402:1;24394:4;:9;24387:78;;24420:8;;;;;:::i;:::-;;;;24451:2;24443:10;;;;;:::i;:::-;;;24387:78;;;24475:19;24507:6;24497:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24475:39;;24525:154;24541:1;24532:5;:10;24525:154;;24569:1;24559:11;;;;;:::i;:::-;;;24636:2;24628:5;:10;;;;:::i;:::-;24615:2;:24;;;;:::i;:::-;24602:39;;24585:6;24592;24585:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;24665:2;24656:11;;;;;:::i;:::-;;;24525:154;;;24703:6;24689:21;;;;;23995:723;;;;:::o;48649:533::-;48743:7;48762:17;48854:10;48879:11;48905:12;48932:15;48987:1;48972:12;:16;;;;:::i;:::-;48962:27;49004:11;49030:2;48829:216;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;48807:249;;;;;;48789:276;;48762:303;;49072:19;49106;;49094:9;:31;;;;:::i;:::-;49072:53;;49139:37;49164:11;49139:24;:37::i;:::-;49132:44;;;;48649:533;;;;:::o;33630:110::-;33706:26;33716:2;33720:7;33706:26;;;;;;;;;;;;:9;:26::i;:::-;33630:110;;:::o;27014:292::-;27116:4;27155:25;27140:40;;;:11;:40;;;;:105;;;;27212:33;27197:48;;;:11;:48;;;;27140:105;:158;;;;27262:36;27286:11;27262:23;:36::i;:::-;27140:158;27133:165;;27014:292;;;:::o;53732:195::-;53876:45;53903:4;53909:2;53913:7;53876:26;:45::i;:::-;53732:195;;;:::o;37262:843::-;37383:4;37409:15;:2;:13;;;:15::i;:::-;37405:693;;;37461:2;37445:36;;;37482:12;:10;:12::i;:::-;37496:4;37502:7;37511:5;37445:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;37441:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37708:1;37691:6;:13;:18;37687:341;;;37734:60;;;;;;;;;;:::i;:::-;;;;;;;;37687:341;37978:6;37972:13;37963:6;37959:2;37955:15;37948:38;37441:602;37578:45;;;37568:55;;;:6;:55;;;;37561:62;;;;;37405:693;38082:4;38075:11;;37262:843;;;;;;;:::o;49188:1175::-;49270:7;49289:18;49310:16;49327:10;49310:28;;;;;;;;;;;;;;;;;49289:49;;49345:14;49384:1;49370:10;:15;49366:260;;;49471:10;49462:19;;49366:260;;;49608:10;49599:19;;49366:260;49634:17;49676:1;49654:19;;:23;;;;:::i;:::-;49634:43;;49702:9;49688:10;:23;49684:624;;49917:22;49942:16;49959:9;49942:27;;;;;;;;;;;;;;;;;49917:52;;50000:1;49982:14;:19;49978:323;;;50113:9;50082:16;50099:10;50082:28;;;;;;;;;;;;;;;;:40;;;;49978:323;;;50277:14;50246:16;50263:10;50246:28;;;;;;;;;;;;;;;;:45;;;;49978:323;49684:624;;50316:19;;:21;;;;;;;;;:::i;:::-;;;;;;50351:6;50344:13;;;;;49188:1175;;;:::o;33967:250::-;34063:18;34069:2;34073:7;34063:5;:18::i;:::-;34100:54;34131:1;34135:2;34139:7;34148:5;34100:22;:54::i;:::-;34092:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;33967:250;;;:::o;9492:157::-;9577:4;9616:25;9601:40;;;:11;:40;;;;9594:47;;9492:157;;;:::o;41353:555::-;41463:45;41490:4;41496:2;41500:7;41463:26;:45::i;:::-;41541:1;41525:18;;:4;:18;;;41521:187;;;41560:40;41592:7;41560:31;:40::i;:::-;41521:187;;;41630:2;41622:10;;:4;:10;;;41618:90;;41649:47;41682:4;41688:7;41649:32;:47::i;:::-;41618:90;41521:187;41736:1;41722:16;;:2;:16;;;41718:183;;;41755:45;41792:7;41755:36;:45::i;:::-;41718:183;;;41828:4;41822:10;;:2;:10;;;41818:83;;41849:40;41877:2;41881:7;41849:27;:40::i;:::-;41818:83;41718:183;41353:555;;;:::o;10364:422::-;10424:4;10632:12;10743:7;10731:20;10723:28;;10777:1;10770:4;:8;10763:15;;;10364:422;;;:::o;34553:382::-;34647:1;34633:16;;:2;:16;;;;34625:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;34706:16;34714:7;34706;:16::i;:::-;34705:17;34697:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;34768:45;34797:1;34801:2;34805:7;34768:20;:45::i;:::-;34843:1;34826:9;:13;34836:2;34826:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;34874:2;34855:7;:16;34863:7;34855:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;34919:7;34915:2;34894:33;;34911:1;34894:33;;;;;;;;;;;;34553:382;;:::o;38716:93::-;;;;:::o;42631:164::-;42735:10;:17;;;;42708:15;:24;42724:7;42708:24;;;;;;;;;;;:44;;;;42763:10;42779:7;42763:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42631:164;:::o;43422:988::-;43688:22;43738:1;43713:22;43730:4;43713:16;:22::i;:::-;:26;;;;:::i;:::-;43688:51;;43750:18;43771:17;:26;43789:7;43771:26;;;;;;;;;;;;43750:47;;43918:14;43904:10;:28;43900:328;;43949:19;43971:12;:18;43984:4;43971:18;;;;;;;;;;;;;;;:34;43990:14;43971:34;;;;;;;;;;;;43949:56;;44055:11;44022:12;:18;44035:4;44022:18;;;;;;;;;;;;;;;:30;44041:10;44022:30;;;;;;;;;;;:44;;;;44172:10;44139:17;:30;44157:11;44139:30;;;;;;;;;;;:43;;;;43900:328;;44324:17;:26;44342:7;44324:26;;;;;;;;;;;44317:33;;;44368:12;:18;44381:4;44368:18;;;;;;;;;;;;;;;:34;44387:14;44368:34;;;;;;;;;;;44361:41;;;43422:988;;;;:::o;44705:1079::-;44958:22;45003:1;44983:10;:17;;;;:21;;;;:::i;:::-;44958:46;;45015:18;45036:15;:24;45052:7;45036:24;;;;;;;;;;;;45015:45;;45387:19;45409:10;45420:14;45409:26;;;;;;;;;;;;;;;;;;;;;;;;45387:48;;45473:11;45448:10;45459;45448:22;;;;;;;;;;;;;;;;;;;;;;;:36;;;;45584:10;45553:15;:28;45569:11;45553:28;;;;;;;;;;;:41;;;;45725:15;:24;45741:7;45725:24;;;;;;;;;;;45718:31;;;45760:10;:16;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44705:1079;;;;:::o;42209:221::-;42294:14;42311:20;42328:2;42311:16;:20::i;:::-;42294:37;;42369:7;42342:12;:16;42355:2;42342:16;;;;;;;;;;;;;;;:24;42359:6;42342:24;;;;;;;;;;;:34;;;;42416:6;42387:17;:26;42405:7;42387:26;;;;;;;;;;;:35;;;;42209:221;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:342:1:-;;109:64;124:48;165:6;124:48;:::i;:::-;109:64;:::i;:::-;100:73;;196:6;189:5;182:21;234:4;227:5;223:16;272:3;263:6;258:3;254:16;251:25;248:2;;;289:1;286;279:12;248:2;302:41;336:6;331:3;326;302:41;:::i;:::-;90:259;;;;;;:::o;355:344::-;;458:65;473:49;515:6;473:49;:::i;:::-;458:65;:::i;:::-;449:74;;546:6;539:5;532:21;584:4;577:5;573:16;622:3;613:6;608:3;604:16;601:25;598:2;;;639:1;636;629:12;598:2;652:41;686:6;681:3;676;652:41;:::i;:::-;439:260;;;;;;:::o;705:139::-;;789:6;776:20;767:29;;805:33;832:5;805:33;:::i;:::-;757:87;;;;:::o;850:133::-;;931:6;918:20;909:29;;947:30;971:5;947:30;:::i;:::-;899:84;;;;:::o;989:137::-;;1072:6;1059:20;1050:29;;1088:32;1114:5;1088:32;:::i;:::-;1040:86;;;;:::o;1132:141::-;;1219:6;1213:13;1204:22;;1235:32;1261:5;1235:32;:::i;:::-;1194:79;;;;:::o;1292:271::-;;1396:3;1389:4;1381:6;1377:17;1373:27;1363:2;;1414:1;1411;1404:12;1363:2;1454:6;1441:20;1479:78;1553:3;1545:6;1538:4;1530:6;1526:17;1479:78;:::i;:::-;1470:87;;1353:210;;;;;:::o;1583:273::-;;1688:3;1681:4;1673:6;1669:17;1665:27;1655:2;;1706:1;1703;1696:12;1655:2;1746:6;1733:20;1771:79;1846:3;1838:6;1831:4;1823:6;1819:17;1771:79;:::i;:::-;1762:88;;1645:211;;;;;:::o;1862:139::-;;1946:6;1933:20;1924:29;;1962:33;1989:5;1962:33;:::i;:::-;1914:87;;;;:::o;2007:262::-;;2115:2;2103:9;2094:7;2090:23;2086:32;2083:2;;;2131:1;2128;2121:12;2083:2;2174:1;2199:53;2244:7;2235:6;2224:9;2220:22;2199:53;:::i;:::-;2189:63;;2145:117;2073:196;;;;:::o;2275:407::-;;;2400:2;2388:9;2379:7;2375:23;2371:32;2368:2;;;2416:1;2413;2406:12;2368:2;2459:1;2484:53;2529:7;2520:6;2509:9;2505:22;2484:53;:::i;:::-;2474:63;;2430:117;2586:2;2612:53;2657:7;2648:6;2637:9;2633:22;2612:53;:::i;:::-;2602:63;;2557:118;2358:324;;;;;:::o;2688:552::-;;;;2830:2;2818:9;2809:7;2805:23;2801:32;2798:2;;;2846:1;2843;2836:12;2798:2;2889:1;2914:53;2959:7;2950:6;2939:9;2935:22;2914:53;:::i;:::-;2904:63;;2860:117;3016:2;3042:53;3087:7;3078:6;3067:9;3063:22;3042:53;:::i;:::-;3032:63;;2987:118;3144:2;3170:53;3215:7;3206:6;3195:9;3191:22;3170:53;:::i;:::-;3160:63;;3115:118;2788:452;;;;;:::o;3246:809::-;;;;;3414:3;3402:9;3393:7;3389:23;3385:33;3382:2;;;3431:1;3428;3421:12;3382:2;3474:1;3499:53;3544:7;3535:6;3524:9;3520:22;3499:53;:::i;:::-;3489:63;;3445:117;3601:2;3627:53;3672:7;3663:6;3652:9;3648:22;3627:53;:::i;:::-;3617:63;;3572:118;3729:2;3755:53;3800:7;3791:6;3780:9;3776:22;3755:53;:::i;:::-;3745:63;;3700:118;3885:2;3874:9;3870:18;3857:32;3916:18;3908:6;3905:30;3902:2;;;3948:1;3945;3938:12;3902:2;3976:62;4030:7;4021:6;4010:9;4006:22;3976:62;:::i;:::-;3966:72;;3828:220;3372:683;;;;;;;:::o;4061:401::-;;;4183:2;4171:9;4162:7;4158:23;4154:32;4151:2;;;4199:1;4196;4189:12;4151:2;4242:1;4267:53;4312:7;4303:6;4292:9;4288:22;4267:53;:::i;:::-;4257:63;;4213:117;4369:2;4395:50;4437:7;4428:6;4417:9;4413:22;4395:50;:::i;:::-;4385:60;;4340:115;4141:321;;;;;:::o;4468:407::-;;;4593:2;4581:9;4572:7;4568:23;4564:32;4561:2;;;4609:1;4606;4599:12;4561:2;4652:1;4677:53;4722:7;4713:6;4702:9;4698:22;4677:53;:::i;:::-;4667:63;;4623:117;4779:2;4805:53;4850:7;4841:6;4830:9;4826:22;4805:53;:::i;:::-;4795:63;;4750:118;4551:324;;;;;:::o;4881:260::-;;4988:2;4976:9;4967:7;4963:23;4959:32;4956:2;;;5004:1;5001;4994:12;4956:2;5047:1;5072:52;5116:7;5107:6;5096:9;5092:22;5072:52;:::i;:::-;5062:62;;5018:116;4946:195;;;;:::o;5147:282::-;;5265:2;5253:9;5244:7;5240:23;5236:32;5233:2;;;5281:1;5278;5271:12;5233:2;5324:1;5349:63;5404:7;5395:6;5384:9;5380:22;5349:63;:::i;:::-;5339:73;;5295:127;5223:206;;;;:::o;5435:375::-;;5553:2;5541:9;5532:7;5528:23;5524:32;5521:2;;;5569:1;5566;5559:12;5521:2;5640:1;5629:9;5625:17;5612:31;5670:18;5662:6;5659:30;5656:2;;;5702:1;5699;5692:12;5656:2;5730:63;5785:7;5776:6;5765:9;5761:22;5730:63;:::i;:::-;5720:73;;5583:220;5511:299;;;;:::o;5816:262::-;;5924:2;5912:9;5903:7;5899:23;5895:32;5892:2;;;5940:1;5937;5930:12;5892:2;5983:1;6008:53;6053:7;6044:6;6033:9;6029:22;6008:53;:::i;:::-;5998:63;;5954:117;5882:196;;;;:::o;6084:179::-;;6174:46;6216:3;6208:6;6174:46;:::i;:::-;6252:4;6247:3;6243:14;6229:28;;6164:99;;;;:::o;6269:118::-;6356:24;6374:5;6356:24;:::i;:::-;6351:3;6344:37;6334:53;;:::o;6423:732::-;;6571:54;6619:5;6571:54;:::i;:::-;6641:86;6720:6;6715:3;6641:86;:::i;:::-;6634:93;;6751:56;6801:5;6751:56;:::i;:::-;6830:7;6861:1;6846:284;6871:6;6868:1;6865:13;6846:284;;;6947:6;6941:13;6974:63;7033:3;7018:13;6974:63;:::i;:::-;6967:70;;7060:60;7113:6;7060:60;:::i;:::-;7050:70;;6906:224;6893:1;6890;6886:9;6881:14;;6846:284;;;6850:14;7146:3;7139:10;;6547:608;;;;;;;:::o;7161:109::-;7242:21;7257:5;7242:21;:::i;:::-;7237:3;7230:34;7220:50;;:::o;7276:118::-;7363:24;7381:5;7363:24;:::i;:::-;7358:3;7351:37;7341:53;;:::o;7400:360::-;;7514:38;7546:5;7514:38;:::i;:::-;7568:70;7631:6;7626:3;7568:70;:::i;:::-;7561:77;;7647:52;7692:6;7687:3;7680:4;7673:5;7669:16;7647:52;:::i;:::-;7724:29;7746:6;7724:29;:::i;:::-;7719:3;7715:39;7708:46;;7490:270;;;;;:::o;7766:364::-;;7882:39;7915:5;7882:39;:::i;:::-;7937:71;8001:6;7996:3;7937:71;:::i;:::-;7930:78;;8017:52;8062:6;8057:3;8050:4;8043:5;8039:16;8017:52;:::i;:::-;8094:29;8116:6;8094:29;:::i;:::-;8089:3;8085:39;8078:46;;7858:272;;;;;:::o;8136:377::-;;8270:39;8303:5;8270:39;:::i;:::-;8325:89;8407:6;8402:3;8325:89;:::i;:::-;8318:96;;8423:52;8468:6;8463:3;8456:4;8449:5;8445:16;8423:52;:::i;:::-;8500:6;8495:3;8491:16;8484:23;;8246:267;;;;;:::o;8519:318::-;;8682:67;8746:2;8741:3;8682:67;:::i;:::-;8675:74;;8779:22;8775:1;8770:3;8766:11;8759:43;8828:2;8823:3;8819:12;8812:19;;8665:172;;;:::o;8843:375::-;;9006:67;9070:2;9065:3;9006:67;:::i;:::-;8999:74;;9103:34;9099:1;9094:3;9090:11;9083:55;9169:13;9164:2;9159:3;9155:12;9148:35;9209:2;9204:3;9200:12;9193:19;;8989:229;;;:::o;9224:382::-;;9387:67;9451:2;9446:3;9387:67;:::i;:::-;9380:74;;9484:34;9480:1;9475:3;9471:11;9464:55;9550:20;9545:2;9540:3;9536:12;9529:42;9597:2;9592:3;9588:12;9581:19;;9370:236;;;:::o;9612:370::-;;9775:67;9839:2;9834:3;9775:67;:::i;:::-;9768:74;;9872:34;9868:1;9863:3;9859:11;9852:55;9938:8;9933:2;9928:3;9924:12;9917:30;9973:2;9968:3;9964:12;9957:19;;9758:224;;;:::o;9988:326::-;;10151:67;10215:2;10210:3;10151:67;:::i;:::-;10144:74;;10248:30;10244:1;10239:3;10235:11;10228:51;10305:2;10300:3;10296:12;10289:19;;10134:180;;;:::o;10320:368::-;;10483:67;10547:2;10542:3;10483:67;:::i;:::-;10476:74;;10580:34;10576:1;10571:3;10567:11;10560:55;10646:6;10641:2;10636:3;10632:12;10625:28;10679:2;10674:3;10670:12;10663:19;;10466:222;;;:::o;10694:323::-;;10857:67;10921:2;10916:3;10857:67;:::i;:::-;10850:74;;10954:27;10950:1;10945:3;10941:11;10934:48;11008:2;11003:3;10999:12;10992:19;;10840:177;;;:::o;11023:376::-;;11186:67;11250:2;11245:3;11186:67;:::i;:::-;11179:74;;11283:34;11279:1;11274:3;11270:11;11263:55;11349:14;11344:2;11339:3;11335:12;11328:36;11390:2;11385:3;11381:12;11374:19;;11169:230;;;:::o;11405:328::-;;11568:67;11632:2;11627:3;11568:67;:::i;:::-;11561:74;;11665:32;11661:1;11656:3;11652:11;11645:53;11724:2;11719:3;11715:12;11708:19;;11551:182;;;:::o;11739:388::-;;11902:67;11966:2;11961:3;11902:67;:::i;:::-;11895:74;;11999:34;11995:1;11990:3;11986:11;11979:55;12065:26;12060:2;12055:3;12051:12;12044:48;12118:2;12113:3;12109:12;12102:19;;11885:242;;;:::o;12133:374::-;;12296:67;12360:2;12355:3;12296:67;:::i;:::-;12289:74;;12393:34;12389:1;12384:3;12380:11;12373:55;12459:12;12454:2;12449:3;12445:12;12438:34;12498:2;12493:3;12489:12;12482:19;;12279:228;;;:::o;12513:373::-;;12676:67;12740:2;12735:3;12676:67;:::i;:::-;12669:74;;12773:34;12769:1;12764:3;12760:11;12753:55;12839:11;12834:2;12829:3;12825:12;12818:33;12877:2;12872:3;12868:12;12861:19;;12659:227;;;:::o;12892:370::-;;13055:67;13119:2;13114:3;13055:67;:::i;:::-;13048:74;;13152:34;13148:1;13143:3;13139:11;13132:55;13218:8;13213:2;13208:3;13204:12;13197:30;13253:2;13248:3;13244:12;13237:19;;13038:224;;;:::o;13268:330::-;;13431:67;13495:2;13490:3;13431:67;:::i;:::-;13424:74;;13528:34;13524:1;13519:3;13515:11;13508:55;13589:2;13584:3;13580:12;13573:19;;13414:184;;;:::o;13604:330::-;;13767:67;13831:2;13826:3;13767:67;:::i;:::-;13760:74;;13864:34;13860:1;13855:3;13851:11;13844:55;13925:2;13920:3;13916:12;13909:19;;13750:184;;;:::o;13940:376::-;;14103:67;14167:2;14162:3;14103:67;:::i;:::-;14096:74;;14200:34;14196:1;14191:3;14187:11;14180:55;14266:14;14261:2;14256:3;14252:12;14245:36;14307:2;14302:3;14298:12;14291:19;;14086:230;;;:::o;14322:330::-;;14485:67;14549:2;14544:3;14485:67;:::i;:::-;14478:74;;14582:34;14578:1;14573:3;14569:11;14562:55;14643:2;14638:3;14634:12;14627:19;;14468:184;;;:::o;14658:373::-;;14821:67;14885:2;14880:3;14821:67;:::i;:::-;14814:74;;14918:34;14914:1;14909:3;14905:11;14898:55;14984:11;14979:2;14974:3;14970:12;14963:33;15022:2;15017:3;15013:12;15006:19;;14804:227;;;:::o;15037:323::-;;15200:67;15264:2;15259:3;15200:67;:::i;:::-;15193:74;;15297:27;15293:1;15288:3;15284:11;15277:48;15351:2;15346:3;15342:12;15335:19;;15183:177;;;:::o;15366:365::-;;15529:67;15593:2;15588:3;15529:67;:::i;:::-;15522:74;;15626:34;15622:1;15617:3;15613:11;15606:55;15692:3;15687:2;15682:3;15678:12;15671:25;15722:2;15717:3;15713:12;15706:19;;15512:219;;;:::o;15737:367::-;;15900:67;15964:2;15959:3;15900:67;:::i;:::-;15893:74;;15997:34;15993:1;15988:3;15984:11;15977:55;16063:5;16058:2;16053:3;16049:12;16042:27;16095:2;16090:3;16086:12;16079:19;;15883:221;;;:::o;16110:297::-;;16290:83;16371:1;16366:3;16290:83;:::i;:::-;16283:90;;16399:1;16394:3;16390:11;16383:18;;16273:134;;;:::o;16413:314::-;;16576:67;16640:2;16635:3;16576:67;:::i;:::-;16569:74;;16673:18;16669:1;16664:3;16660:11;16653:39;16718:2;16713:3;16709:12;16702:19;;16559:168;;;:::o;16733:381::-;;16896:67;16960:2;16955:3;16896:67;:::i;:::-;16889:74;;16993:34;16989:1;16984:3;16980:11;16973:55;17059:19;17054:2;17049:3;17045:12;17038:41;17105:2;17100:3;17096:12;17089:19;;16879:235;;;:::o;17120:376::-;;17283:67;17347:2;17342:3;17283:67;:::i;:::-;17276:74;;17380:34;17376:1;17371:3;17367:11;17360:55;17446:14;17441:2;17436:3;17432:12;17425:36;17487:2;17482:3;17478:12;17471:19;;17266:230;;;:::o;17502:370::-;;17665:67;17729:2;17724:3;17665:67;:::i;:::-;17658:74;;17762:34;17758:1;17753:3;17749:11;17742:55;17828:8;17823:2;17818:3;17814:12;17807:30;17863:2;17858:3;17854:12;17847:19;;17648:224;;;:::o;17878:366::-;;18041:67;18105:2;18100:3;18041:67;:::i;:::-;18034:74;;18138:34;18134:1;18129:3;18125:11;18118:55;18204:4;18199:2;18194:3;18190:12;18183:26;18235:2;18230:3;18226:12;18219:19;;18024:220;;;:::o;18250:367::-;;18413:67;18477:2;18472:3;18413:67;:::i;:::-;18406:74;;18510:34;18506:1;18501:3;18497:11;18490:55;18576:5;18571:2;18566:3;18562:12;18555:27;18608:2;18603:3;18599:12;18592:19;;18396:221;;;:::o;18623:329::-;;18786:67;18850:2;18845:3;18786:67;:::i;:::-;18779:74;;18883:33;18879:1;18874:3;18870:11;18863:54;18943:2;18938:3;18934:12;18927:19;;18769:183;;;:::o;18958:108::-;19035:24;19053:5;19035:24;:::i;:::-;19030:3;19023:37;19013:53;;:::o;19072:118::-;19159:24;19177:5;19159:24;:::i;:::-;19154:3;19147:37;19137:53;;:::o;19196:595::-;;19446:95;19537:3;19528:6;19446:95;:::i;:::-;19439:102;;19558:95;19649:3;19640:6;19558:95;:::i;:::-;19551:102;;19670:95;19761:3;19752:6;19670:95;:::i;:::-;19663:102;;19782:3;19775:10;;19428:363;;;;;;:::o;19797:379::-;;20003:147;20146:3;20003:147;:::i;:::-;19996:154;;20167:3;20160:10;;19985:191;;;:::o;20182:222::-;;20313:2;20302:9;20298:18;20290:26;;20326:71;20394:1;20383:9;20379:17;20370:6;20326:71;:::i;:::-;20280:124;;;;:::o;20410:640::-;;20643:3;20632:9;20628:19;20620:27;;20657:71;20725:1;20714:9;20710:17;20701:6;20657:71;:::i;:::-;20738:72;20806:2;20795:9;20791:18;20782:6;20738:72;:::i;:::-;20820;20888:2;20877:9;20873:18;20864:6;20820:72;:::i;:::-;20939:9;20933:4;20929:20;20924:2;20913:9;20909:18;20902:48;20967:76;21038:4;21029:6;20967:76;:::i;:::-;20959:84;;20610:440;;;;;;;:::o;21056:886::-;;21355:3;21344:9;21340:19;21332:27;;21369:71;21437:1;21426:9;21422:17;21413:6;21369:71;:::i;:::-;21450:72;21518:2;21507:9;21503:18;21494:6;21450:72;:::i;:::-;21532;21600:2;21589:9;21585:18;21576:6;21532:72;:::i;:::-;21614;21682:2;21671:9;21667:18;21658:6;21614:72;:::i;:::-;21696:73;21764:3;21753:9;21749:19;21740:6;21696:73;:::i;:::-;21779;21847:3;21836:9;21832:19;21823:6;21779:73;:::i;:::-;21862;21930:3;21919:9;21915:19;21906:6;21862:73;:::i;:::-;21322:620;;;;;;;;;;:::o;21948:373::-;;22129:2;22118:9;22114:18;22106:26;;22178:9;22172:4;22168:20;22164:1;22153:9;22149:17;22142:47;22206:108;22309:4;22300:6;22206:108;:::i;:::-;22198:116;;22096:225;;;;:::o;22327:210::-;;22452:2;22441:9;22437:18;22429:26;;22465:65;22527:1;22516:9;22512:17;22503:6;22465:65;:::i;:::-;22419:118;;;;:::o;22543:313::-;;22694:2;22683:9;22679:18;22671:26;;22743:9;22737:4;22733:20;22729:1;22718:9;22714:17;22707:47;22771:78;22844:4;22835:6;22771:78;:::i;:::-;22763:86;;22661:195;;;;:::o;22862:419::-;;23066:2;23055:9;23051:18;23043:26;;23115:9;23109:4;23105:20;23101:1;23090:9;23086:17;23079:47;23143:131;23269:4;23143:131;:::i;:::-;23135:139;;23033:248;;;:::o;23287:419::-;;23491:2;23480:9;23476:18;23468:26;;23540:9;23534:4;23530:20;23526:1;23515:9;23511:17;23504:47;23568:131;23694:4;23568:131;:::i;:::-;23560:139;;23458:248;;;:::o;23712:419::-;;23916:2;23905:9;23901:18;23893:26;;23965:9;23959:4;23955:20;23951:1;23940:9;23936:17;23929:47;23993:131;24119:4;23993:131;:::i;:::-;23985:139;;23883:248;;;:::o;24137:419::-;;24341:2;24330:9;24326:18;24318:26;;24390:9;24384:4;24380:20;24376:1;24365:9;24361:17;24354:47;24418:131;24544:4;24418:131;:::i;:::-;24410:139;;24308:248;;;:::o;24562:419::-;;24766:2;24755:9;24751:18;24743:26;;24815:9;24809:4;24805:20;24801:1;24790:9;24786:17;24779:47;24843:131;24969:4;24843:131;:::i;:::-;24835:139;;24733:248;;;:::o;24987:419::-;;25191:2;25180:9;25176:18;25168:26;;25240:9;25234:4;25230:20;25226:1;25215:9;25211:17;25204:47;25268:131;25394:4;25268:131;:::i;:::-;25260:139;;25158:248;;;:::o;25412:419::-;;25616:2;25605:9;25601:18;25593:26;;25665:9;25659:4;25655:20;25651:1;25640:9;25636:17;25629:47;25693:131;25819:4;25693:131;:::i;:::-;25685:139;;25583:248;;;:::o;25837:419::-;;26041:2;26030:9;26026:18;26018:26;;26090:9;26084:4;26080:20;26076:1;26065:9;26061:17;26054:47;26118:131;26244:4;26118:131;:::i;:::-;26110:139;;26008:248;;;:::o;26262:419::-;;26466:2;26455:9;26451:18;26443:26;;26515:9;26509:4;26505:20;26501:1;26490:9;26486:17;26479:47;26543:131;26669:4;26543:131;:::i;:::-;26535:139;;26433:248;;;:::o;26687:419::-;;26891:2;26880:9;26876:18;26868:26;;26940:9;26934:4;26930:20;26926:1;26915:9;26911:17;26904:47;26968:131;27094:4;26968:131;:::i;:::-;26960:139;;26858:248;;;:::o;27112:419::-;;27316:2;27305:9;27301:18;27293:26;;27365:9;27359:4;27355:20;27351:1;27340:9;27336:17;27329:47;27393:131;27519:4;27393:131;:::i;:::-;27385:139;;27283:248;;;:::o;27537:419::-;;27741:2;27730:9;27726:18;27718:26;;27790:9;27784:4;27780:20;27776:1;27765:9;27761:17;27754:47;27818:131;27944:4;27818:131;:::i;:::-;27810:139;;27708:248;;;:::o;27962:419::-;;28166:2;28155:9;28151:18;28143:26;;28215:9;28209:4;28205:20;28201:1;28190:9;28186:17;28179:47;28243:131;28369:4;28243:131;:::i;:::-;28235:139;;28133:248;;;:::o;28387:419::-;;28591:2;28580:9;28576:18;28568:26;;28640:9;28634:4;28630:20;28626:1;28615:9;28611:17;28604:47;28668:131;28794:4;28668:131;:::i;:::-;28660:139;;28558:248;;;:::o;28812:419::-;;29016:2;29005:9;29001:18;28993:26;;29065:9;29059:4;29055:20;29051:1;29040:9;29036:17;29029:47;29093:131;29219:4;29093:131;:::i;:::-;29085:139;;28983:248;;;:::o;29237:419::-;;29441:2;29430:9;29426:18;29418:26;;29490:9;29484:4;29480:20;29476:1;29465:9;29461:17;29454:47;29518:131;29644:4;29518:131;:::i;:::-;29510:139;;29408:248;;;:::o;29662:419::-;;29866:2;29855:9;29851:18;29843:26;;29915:9;29909:4;29905:20;29901:1;29890:9;29886:17;29879:47;29943:131;30069:4;29943:131;:::i;:::-;29935:139;;29833:248;;;:::o;30087:419::-;;30291:2;30280:9;30276:18;30268:26;;30340:9;30334:4;30330:20;30326:1;30315:9;30311:17;30304:47;30368:131;30494:4;30368:131;:::i;:::-;30360:139;;30258:248;;;:::o;30512:419::-;;30716:2;30705:9;30701:18;30693:26;;30765:9;30759:4;30755:20;30751:1;30740:9;30736:17;30729:47;30793:131;30919:4;30793:131;:::i;:::-;30785:139;;30683:248;;;:::o;30937:419::-;;31141:2;31130:9;31126:18;31118:26;;31190:9;31184:4;31180:20;31176:1;31165:9;31161:17;31154:47;31218:131;31344:4;31218:131;:::i;:::-;31210:139;;31108:248;;;:::o;31362:419::-;;31566:2;31555:9;31551:18;31543:26;;31615:9;31609:4;31605:20;31601:1;31590:9;31586:17;31579:47;31643:131;31769:4;31643:131;:::i;:::-;31635:139;;31533:248;;;:::o;31787:419::-;;31991:2;31980:9;31976:18;31968:26;;32040:9;32034:4;32030:20;32026:1;32015:9;32011:17;32004:47;32068:131;32194:4;32068:131;:::i;:::-;32060:139;;31958:248;;;:::o;32212:419::-;;32416:2;32405:9;32401:18;32393:26;;32465:9;32459:4;32455:20;32451:1;32440:9;32436:17;32429:47;32493:131;32619:4;32493:131;:::i;:::-;32485:139;;32383:248;;;:::o;32637:419::-;;32841:2;32830:9;32826:18;32818:26;;32890:9;32884:4;32880:20;32876:1;32865:9;32861:17;32854:47;32918:131;33044:4;32918:131;:::i;:::-;32910:139;;32808:248;;;:::o;33062:419::-;;33266:2;33255:9;33251:18;33243:26;;33315:9;33309:4;33305:20;33301:1;33290:9;33286:17;33279:47;33343:131;33469:4;33343:131;:::i;:::-;33335:139;;33233:248;;;:::o;33487:419::-;;33691:2;33680:9;33676:18;33668:26;;33740:9;33734:4;33730:20;33726:1;33715:9;33711:17;33704:47;33768:131;33894:4;33768:131;:::i;:::-;33760:139;;33658:248;;;:::o;33912:419::-;;34116:2;34105:9;34101:18;34093:26;;34165:9;34159:4;34155:20;34151:1;34140:9;34136:17;34129:47;34193:131;34319:4;34193:131;:::i;:::-;34185:139;;34083:248;;;:::o;34337:419::-;;34541:2;34530:9;34526:18;34518:26;;34590:9;34584:4;34580:20;34576:1;34565:9;34561:17;34554:47;34618:131;34744:4;34618:131;:::i;:::-;34610:139;;34508:248;;;:::o;34762:222::-;;34893:2;34882:9;34878:18;34870:26;;34906:71;34974:1;34963:9;34959:17;34950:6;34906:71;:::i;:::-;34860:124;;;;:::o;34990:283::-;;35056:2;35050:9;35040:19;;35098:4;35090:6;35086:17;35205:6;35193:10;35190:22;35169:18;35157:10;35154:34;35151:62;35148:2;;;35216:18;;:::i;:::-;35148:2;35256:10;35252:2;35245:22;35030:243;;;;:::o;35279:331::-;;35430:18;35422:6;35419:30;35416:2;;;35452:18;;:::i;:::-;35416:2;35537:4;35533:9;35526:4;35518:6;35514:17;35510:33;35502:41;;35598:4;35592;35588:15;35580:23;;35345:265;;;:::o;35616:332::-;;35768:18;35760:6;35757:30;35754:2;;;35790:18;;:::i;:::-;35754:2;35875:4;35871:9;35864:4;35856:6;35852:17;35848:33;35840:41;;35936:4;35930;35926:15;35918:23;;35683:265;;;:::o;35954:132::-;;36044:3;36036:11;;36074:4;36069:3;36065:14;36057:22;;36026:60;;;:::o;36092:114::-;;36193:5;36187:12;36177:22;;36166:40;;;:::o;36212:98::-;;36297:5;36291:12;36281:22;;36270:40;;;:::o;36316:99::-;;36402:5;36396:12;36386:22;;36375:40;;;:::o;36421:113::-;;36523:4;36518:3;36514:14;36506:22;;36496:38;;;:::o;36540:184::-;;36673:6;36668:3;36661:19;36713:4;36708:3;36704:14;36689:29;;36651:73;;;;:::o;36730:168::-;;36847:6;36842:3;36835:19;36887:4;36882:3;36878:14;36863:29;;36825:73;;;;:::o;36904:147::-;;37042:3;37027:18;;37017:34;;;;:::o;37057:169::-;;37175:6;37170:3;37163:19;37215:4;37210:3;37206:14;37191:29;;37153:73;;;;:::o;37232:148::-;;37371:3;37356:18;;37346:34;;;;:::o;37386:305::-;;37445:20;37463:1;37445:20;:::i;:::-;37440:25;;37479:20;37497:1;37479:20;:::i;:::-;37474:25;;37633:1;37565:66;37561:74;37558:1;37555:81;37552:2;;;37639:18;;:::i;:::-;37552:2;37683:1;37680;37676:9;37669:16;;37430:261;;;;:::o;37697:185::-;;37754:20;37772:1;37754:20;:::i;:::-;37749:25;;37788:20;37806:1;37788:20;:::i;:::-;37783:25;;37827:1;37817:2;;37832:18;;:::i;:::-;37817:2;37874:1;37871;37867:9;37862:14;;37739:143;;;;:::o;37888:348::-;;37951:20;37969:1;37951:20;:::i;:::-;37946:25;;37985:20;38003:1;37985:20;:::i;:::-;37980:25;;38173:1;38105:66;38101:74;38098:1;38095:81;38090:1;38083:9;38076:17;38072:105;38069:2;;;38180:18;;:::i;:::-;38069:2;38228:1;38225;38221:9;38210:20;;37936:300;;;;:::o;38242:191::-;;38302:20;38320:1;38302:20;:::i;:::-;38297:25;;38336:20;38354:1;38336:20;:::i;:::-;38331:25;;38375:1;38372;38369:8;38366:2;;;38380:18;;:::i;:::-;38366:2;38425:1;38422;38418:9;38410:17;;38287:146;;;;:::o;38439:96::-;;38505:24;38523:5;38505:24;:::i;:::-;38494:35;;38484:51;;;:::o;38541:90::-;;38618:5;38611:13;38604:21;38593:32;;38583:48;;;:::o;38637:77::-;;38703:5;38692:16;;38682:32;;;:::o;38720:149::-;;38796:66;38789:5;38785:78;38774:89;;38764:105;;;:::o;38875:126::-;;38952:42;38945:5;38941:54;38930:65;;38920:81;;;:::o;39007:77::-;;39073:5;39062:16;;39052:32;;;:::o;39090:154::-;39174:6;39169:3;39164;39151:30;39236:1;39227:6;39222:3;39218:16;39211:27;39141:103;;;:::o;39250:307::-;39318:1;39328:113;39342:6;39339:1;39336:13;39328:113;;;39427:1;39422:3;39418:11;39412:18;39408:1;39403:3;39399:11;39392:39;39364:2;39361:1;39357:10;39352:15;;39328:113;;;39459:6;39456:1;39453:13;39450:2;;;39539:1;39530:6;39525:3;39521:16;39514:27;39450:2;39299:258;;;;:::o;39563:171::-;;39625:24;39643:5;39625:24;:::i;:::-;39616:33;;39671:4;39664:5;39661:15;39658:2;;;39679:18;;:::i;:::-;39658:2;39726:1;39719:5;39715:13;39708:20;;39606:128;;;:::o;39740:320::-;;39821:1;39815:4;39811:12;39801:22;;39868:1;39862:4;39858:12;39889:18;39879:2;;39945:4;39937:6;39933:17;39923:27;;39879:2;40007;39999:6;39996:14;39976:18;39973:38;39970:2;;;40026:18;;:::i;:::-;39970:2;39791:269;;;;:::o;40066:233::-;;40128:24;40146:5;40128:24;:::i;:::-;40119:33;;40174:66;40167:5;40164:77;40161:2;;;40244:18;;:::i;:::-;40161:2;40291:1;40284:5;40280:13;40273:20;;40109:190;;;:::o;40305:176::-;;40354:20;40372:1;40354:20;:::i;:::-;40349:25;;40388:20;40406:1;40388:20;:::i;:::-;40383:25;;40427:1;40417:2;;40432:18;;:::i;:::-;40417:2;40473:1;40470;40466:9;40461:14;;40339:142;;;;:::o;40487:180::-;40535:77;40532:1;40525:88;40632:4;40629:1;40622:15;40656:4;40653:1;40646:15;40673:180;40721:77;40718:1;40711:88;40818:4;40815:1;40808:15;40842:4;40839:1;40832:15;40859:180;40907:77;40904:1;40897:88;41004:4;41001:1;40994:15;41028:4;41025:1;41018:15;41045:180;41093:77;41090:1;41083:88;41190:4;41187:1;41180:15;41214:4;41211:1;41204:15;41231:102;;41323:2;41319:7;41314:2;41307:5;41303:14;41299:28;41289:38;;41279:54;;;:::o;41339:122::-;41412:24;41430:5;41412:24;:::i;:::-;41405:5;41402:35;41392:2;;41451:1;41448;41441:12;41392:2;41382:79;:::o;41467:116::-;41537:21;41552:5;41537:21;:::i;:::-;41530:5;41527:32;41517:2;;41573:1;41570;41563:12;41517:2;41507:76;:::o;41589:120::-;41661:23;41678:5;41661:23;:::i;:::-;41654:5;41651:34;41641:2;;41699:1;41696;41689:12;41641:2;41631:78;:::o;41715:122::-;41788:24;41806:5;41788:24;:::i;:::-;41781:5;41778:35;41768:2;;41827:1;41824;41817:12;41768:2;41758:79;:::o

Swarm Source

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