ETH Price: $2,422.39 (+1.08%)

Token

Jail Turtles (#FreeTheTurtles)
 

Overview

Max Total Supply

2,498 #FreeTheTurtles

Holders

1,115

Total Transfers

-

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Jail Turtles are the official second collection of DAO Turtles. DAO Turtle holders can claim for free their Jail Turtles. One DAO Turtle = One Jail Turtle of the same mint number.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
JailTurtles

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2021-10-07
*/

/**
 *Submitted for verification at Etherscan.io on 2021-10-03
*/

//SPDX-License-Identifier: MIT

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

pragma solidity ^0.8.0;

/**
 * @dev Interface of the ERC165 standard, as defined in the
 * https://eips.ethereum.org/EIPS/eip-165[EIP].
 *
 * Implementers can declare support of contract interfaces, which can then be
 * queried by others ({ERC165Checker}).
 *
 * For an implementation, see {ERC165}.
 */
interface IERC165 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}
// File: @openzeppelin/contracts/utils/Context.sol

pragma solidity ^0.8.0;

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

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}
// File: @openzeppelin/contracts/token/ERC721/IERC721.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

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

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

pragma solidity ^0.8.0;

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

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}
// File: @openzeppelin/contracts/token/ERC721/extensions/IERC721Metadata.sol

pragma solidity ^0.8.0;

/**
 * @title ERC-721 Non-Fungible Token Standard, optional metadata extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Metadata is IERC721 {
    /**
     * @dev Returns the token collection name.
     */
    function name() external view returns (string memory);

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

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

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

pragma solidity ^0.8.0;

/**
 * @dev String operations.
 */
library Strings {
    bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef";

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

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

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

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

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

pragma solidity ^0.8.0;

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view virtual override returns (address) {
        address owner = _owners[tokenId];
        require(owner != address(0), "ERC721: owner query for nonexistent token");
        return owner;
    }

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId) public view virtual override returns (string memory) {
        require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token");

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721.ownerOf(tokenId);
        require(to != owner, "ERC721: approval to current owner");

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        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.onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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

// File: contracts/JailTurtles.sol
pragma solidity ^0.8.9;

contract JailTurtles is ERC721, ERC721Enumerable, Ownable {
    uint256 public constant MAX_PER_TXN = 20;

    string private URI = "https://gateway.pinata.cloud/ipfs/QmUoFRDKdh7NxQ96hejoRhuiBeWLsnytFEy7BEkLH7HuGy/";
    
    // DAO Turtles contract
    IERC721Enumerable IBaseContract = IERC721Enumerable(0xc92d06C74A26AeAf4d1A1273FAC171f3B09FAC79);
    
    mapping (uint256 => bool) public claimedTurtles;

    constructor() ERC721("Jail Turtles", "#FreeTheTurtles") {}

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

    function setURI(string memory _URI) external onlyOwner {
        URI = _URI;
    }
    
    function freeMint(uint256 tokenId) public {
        require(!claimedTurtles[tokenId], "Jail Turtle already claimed");
        require(IBaseContract.ownerOf(tokenId) == msg.sender, "DAO Turtle not owned");
        _safeMint(msg.sender, tokenId);
        claimedTurtles[tokenId] = true;
    }
    
    function freeMintMultiple(uint256 amount, uint256[] calldata tokenIds) external {
        require(amount <= MAX_PER_TXN, "20 max. per. txn");
        for (uint256 i=0; i<amount; i++) {
            freeMint(tokenIds[i]);
        }
    }


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

    function supportsInterface(bytes4 interfaceId)
        public
        view
        override(ERC721, 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_PER_TXN","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":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"claimedTurtles","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"freeMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256[]","name":"tokenIds","type":"uint256[]"}],"name":"freeMintMultiple","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_URI","type":"string"}],"name":"setURI","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"}]

608060405260405180608001604052806051815260200162003e0960519139600b9080519060200190620000359291906200022d565b5073c92d06c74a26aeaf4d1a1273fac171f3b09fac79600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200009857600080fd5b506040518060400160405280600c81526020017f4a61696c20547572746c657300000000000000000000000000000000000000008152506040518060400160405280600f81526020017f2346726565546865547572746c6573000000000000000000000000000000000081525081600090805190602001906200011d9291906200022d565b508060019080519060200190620001369291906200022d565b505050620001596200014d6200015f60201b60201c565b6200016760201b60201c565b62000342565b600033905090565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b8280546200023b906200030c565b90600052602060002090601f0160209004810192826200025f5760008555620002ab565b82601f106200027a57805160ff1916838001178555620002ab565b82800160010185558215620002ab579182015b82811115620002aa5782518255916020019190600101906200028d565b5b509050620002ba9190620002be565b5090565b5b80821115620002d9576000816000905550600101620002bf565b5090565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200032557607f821691505b602082108114156200033c576200033b620002dd565b5b50919050565b613ab780620003526000396000f3fe608060405234801561001057600080fd5b50600436106101585760003560e01c80635dd62b57116100c357806395d89b411161007c57806395d89b41146103d7578063a22cb465146103f5578063b88d4fde14610411578063c87b56dd1461042d578063e985e9c51461045d578063f2fde38b1461048d57610158565b80635dd62b57146103175780636352211e1461033357806370a0823114610363578063715018a6146103935780637c928fe91461039d5780638da5cb5b146103b957610158565b806323b872dd1161011557806323b872dd146102315780632f745c591461024d57806342842e0e1461027d5780634f6ccce71461029957806351b96d92146102c957806359f57d08146102e757610158565b806301ffc9a71461015d57806302fe53051461018d57806306fdde03146101a9578063081812fc146101c7578063095ea7b3146101f757806318160ddd14610213575b600080fd5b610177600480360381019061017291906124b9565b6104a9565b6040516101849190612501565b60405180910390f35b6101a760048036038101906101a29190612662565b6104bb565b005b6101b1610551565b6040516101be9190612733565b60405180910390f35b6101e160048036038101906101dc919061278b565b6105e3565b6040516101ee91906127f9565b60405180910390f35b610211600480360381019061020c9190612840565b610668565b005b61021b610780565b604051610228919061288f565b60405180910390f35b61024b600480360381019061024691906128aa565b61078d565b005b61026760048036038101906102629190612840565b6107ed565b604051610274919061288f565b60405180910390f35b610297600480360381019061029291906128aa565b610892565b005b6102b360048036038101906102ae919061278b565b6108b2565b6040516102c0919061288f565b60405180910390f35b6102d1610923565b6040516102de919061288f565b60405180910390f35b61030160048036038101906102fc919061278b565b610928565b60405161030e9190612501565b60405180910390f35b610331600480360381019061032c919061295d565b610948565b005b61034d6004803603810190610348919061278b565b6109d2565b60405161035a91906127f9565b60405180910390f35b61037d600480360381019061037891906129bd565b610a84565b60405161038a919061288f565b60405180910390f35b61039b610b3c565b005b6103b760048036038101906103b2919061278b565b610bc4565b005b6103c1610d76565b6040516103ce91906127f9565b60405180910390f35b6103df610da0565b6040516103ec9190612733565b60405180910390f35b61040f600480360381019061040a9190612a16565b610e32565b005b61042b60048036038101906104269190612af7565b610fb3565b005b6104476004803603810190610442919061278b565b611015565b6040516104549190612733565b60405180910390f35b61047760048036038101906104729190612b7a565b6110bc565b6040516104849190612501565b60405180910390f35b6104a760048036038101906104a291906129bd565b611150565b005b60006104b482611248565b9050919050565b6104c36112c2565b73ffffffffffffffffffffffffffffffffffffffff166104e1610d76565b73ffffffffffffffffffffffffffffffffffffffff1614610537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052e90612c06565b60405180910390fd5b80600b908051906020019061054d9291906123aa565b5050565b60606000805461056090612c55565b80601f016020809104026020016040519081016040528092919081815260200182805461058c90612c55565b80156105d95780601f106105ae576101008083540402835291602001916105d9565b820191906000526020600020905b8154815290600101906020018083116105bc57829003601f168201915b5050505050905090565b60006105ee826112ca565b61062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490612cf9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610673826109d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90612d8b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107036112c2565b73ffffffffffffffffffffffffffffffffffffffff16148061073257506107318161072c6112c2565b6110bc565b5b610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076890612e1d565b60405180910390fd5b61077b8383611336565b505050565b6000600880549050905090565b61079e6107986112c2565b826113ef565b6107dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d490612eaf565b60405180910390fd5b6107e88383836114cd565b505050565b60006107f883610a84565b8210610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090612f41565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108ad83838360405180602001604052806000815250610fb3565b505050565b60006108bc610780565b82106108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490612fd3565b60405180910390fd5b6008828154811061091157610910612ff3565b5b90600052602060002001549050919050565b601481565b600d6020528060005260406000206000915054906101000a900460ff1681565b601483111561098c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109839061306e565b60405180910390fd5b60005b838110156109cc576109b98383838181106109ad576109ac612ff3565b5b90506020020135610bc4565b80806109c4906130bd565b91505061098f565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290613178565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec9061320a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b446112c2565b73ffffffffffffffffffffffffffffffffffffffff16610b62610d76565b73ffffffffffffffffffffffffffffffffffffffff1614610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90612c06565b60405180910390fd5b610bc26000611729565b565b600d600082815260200190815260200160002060009054906101000a900460ff1615610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90613276565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610c97919061288f565b60206040518083038186803b158015610caf57600080fd5b505afa158015610cc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce791906132ab565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490613324565b60405180910390fd5b610d4733826117ef565b6001600d600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610daf90612c55565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb90612c55565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b5050505050905090565b610e3a6112c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90613390565b60405180910390fd5b8060056000610eb56112c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f626112c2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fa79190612501565b60405180910390a35050565b610fc4610fbe6112c2565b836113ef565b611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90612eaf565b60405180910390fd5b61100f8484848461180d565b50505050565b6060611020826112ca565b61105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613422565b60405180910390fd5b6000611069611869565b9050600081511161108957604051806020016040528060008152506110b4565b80611093846118fb565b6040516020016110a492919061347e565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111586112c2565b73ffffffffffffffffffffffffffffffffffffffff16611176610d76565b73ffffffffffffffffffffffffffffffffffffffff16146111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390612c06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613514565b60405180910390fd5b61124581611729565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112bb57506112ba82611a5c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113a9836109d2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113fa826112ca565b611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906135a6565b60405180910390fd5b6000611444836109d2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114b357508373ffffffffffffffffffffffffffffffffffffffff1661149b846105e3565b73ffffffffffffffffffffffffffffffffffffffff16145b806114c457506114c381856110bc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114ed826109d2565b73ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90613638565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa906136ca565b60405180910390fd5b6115be838383611b3e565b6115c9600082611336565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161991906136ea565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611670919061371e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611809828260405180602001604052806000815250611b4e565b5050565b6118188484846114cd565b61182484848484611ba9565b611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a906137e6565b60405180910390fd5b50505050565b6060600b805461187890612c55565b80601f01602080910402602001604051908101604052809291908181526020018280546118a490612c55565b80156118f15780601f106118c6576101008083540402835291602001916118f1565b820191906000526020600020905b8154815290600101906020018083116118d457829003601f168201915b5050505050905090565b60606000821415611943576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a57565b600082905060005b6000821461197557808061195e906130bd565b915050600a8261196e9190613835565b915061194b565b60008167ffffffffffffffff81111561199157611990612537565b5b6040519080825280601f01601f1916602001820160405280156119c35781602001600182028036833780820191505090505b5090505b60008514611a50576001826119dc91906136ea565b9150600a856119eb9190613866565b60306119f7919061371e565b60f81b818381518110611a0d57611a0c612ff3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a499190613835565b94506119c7565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b375750611b3682611d40565b5b9050919050565b611b49838383611daa565b505050565b611b588383611ebe565b611b656000848484611ba9565b611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b906137e6565b60405180910390fd5b505050565b6000611bca8473ffffffffffffffffffffffffffffffffffffffff1661208c565b15611d33578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bf36112c2565b8786866040518563ffffffff1660e01b8152600401611c1594939291906138ec565b602060405180830381600087803b158015611c2f57600080fd5b505af1925050508015611c6057506040513d601f19601f82011682018060405250810190611c5d919061394d565b60015b611ce3573d8060008114611c90576040519150601f19603f3d011682016040523d82523d6000602084013e611c95565b606091505b50600081511415611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd2906137e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d38565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611db583838361209f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611df857611df3816120a4565b611e37565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e3657611e3583826120ed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7a57611e758161225a565b611eb9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611eb857611eb7828261232b565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906139c6565b60405180910390fd5b611f37816112ca565b15611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e90613a32565b60405180910390fd5b611f8360008383611b3e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd3919061371e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016120fa84610a84565b61210491906136ea565b90506000600760008481526020019081526020016000205490508181146121e9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061226e91906136ea565b905060006009600084815260200190815260200160002054905060006008838154811061229e5761229d612ff3565b5b9060005260206000200154905080600883815481106122c0576122bf612ff3565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061230f5761230e613a52565b5b6001900381819060005260206000200160009055905550505050565b600061233683610a84565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546123b690612c55565b90600052602060002090601f0160209004810192826123d8576000855561241f565b82601f106123f157805160ff191683800117855561241f565b8280016001018555821561241f579182015b8281111561241e578251825591602001919060010190612403565b5b50905061242c9190612430565b5090565b5b80821115612449576000816000905550600101612431565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61249681612461565b81146124a157600080fd5b50565b6000813590506124b38161248d565b92915050565b6000602082840312156124cf576124ce612457565b5b60006124dd848285016124a4565b91505092915050565b60008115159050919050565b6124fb816124e6565b82525050565b600060208201905061251660008301846124f2565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61256f82612526565b810181811067ffffffffffffffff8211171561258e5761258d612537565b5b80604052505050565b60006125a161244d565b90506125ad8282612566565b919050565b600067ffffffffffffffff8211156125cd576125cc612537565b5b6125d682612526565b9050602081019050919050565b82818337600083830152505050565b6000612605612600846125b2565b612597565b90508281526020810184848401111561262157612620612521565b5b61262c8482856125e3565b509392505050565b600082601f8301126126495761264861251c565b5b81356126598482602086016125f2565b91505092915050565b60006020828403121561267857612677612457565b5b600082013567ffffffffffffffff8111156126965761269561245c565b5b6126a284828501612634565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126e55780820151818401526020810190506126ca565b838111156126f4576000848401525b50505050565b6000612705826126ab565b61270f81856126b6565b935061271f8185602086016126c7565b61272881612526565b840191505092915050565b6000602082019050818103600083015261274d81846126fa565b905092915050565b6000819050919050565b61276881612755565b811461277357600080fd5b50565b6000813590506127858161275f565b92915050565b6000602082840312156127a1576127a0612457565b5b60006127af84828501612776565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127e3826127b8565b9050919050565b6127f3816127d8565b82525050565b600060208201905061280e60008301846127ea565b92915050565b61281d816127d8565b811461282857600080fd5b50565b60008135905061283a81612814565b92915050565b6000806040838503121561285757612856612457565b5b60006128658582860161282b565b925050602061287685828601612776565b9150509250929050565b61288981612755565b82525050565b60006020820190506128a46000830184612880565b92915050565b6000806000606084860312156128c3576128c2612457565b5b60006128d18682870161282b565b93505060206128e28682870161282b565b92505060406128f386828701612776565b9150509250925092565b600080fd5b600080fd5b60008083601f84011261291d5761291c61251c565b5b8235905067ffffffffffffffff81111561293a576129396128fd565b5b60208301915083602082028301111561295657612955612902565b5b9250929050565b60008060006040848603121561297657612975612457565b5b600061298486828701612776565b935050602084013567ffffffffffffffff8111156129a5576129a461245c565b5b6129b186828701612907565b92509250509250925092565b6000602082840312156129d3576129d2612457565b5b60006129e18482850161282b565b91505092915050565b6129f3816124e6565b81146129fe57600080fd5b50565b600081359050612a10816129ea565b92915050565b60008060408385031215612a2d57612a2c612457565b5b6000612a3b8582860161282b565b9250506020612a4c85828601612a01565b9150509250929050565b600067ffffffffffffffff821115612a7157612a70612537565b5b612a7a82612526565b9050602081019050919050565b6000612a9a612a9584612a56565b612597565b905082815260208101848484011115612ab657612ab5612521565b5b612ac18482856125e3565b509392505050565b600082601f830112612ade57612add61251c565b5b8135612aee848260208601612a87565b91505092915050565b60008060008060808587031215612b1157612b10612457565b5b6000612b1f8782880161282b565b9450506020612b308782880161282b565b9350506040612b4187828801612776565b925050606085013567ffffffffffffffff811115612b6257612b6161245c565b5b612b6e87828801612ac9565b91505092959194509250565b60008060408385031215612b9157612b90612457565b5b6000612b9f8582860161282b565b9250506020612bb08582860161282b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bf06020836126b6565b9150612bfb82612bba565b602082019050919050565b60006020820190508181036000830152612c1f81612be3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c6d57607f821691505b60208210811415612c8157612c80612c26565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612ce3602c836126b6565b9150612cee82612c87565b604082019050919050565b60006020820190508181036000830152612d1281612cd6565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d756021836126b6565b9150612d8082612d19565b604082019050919050565b60006020820190508181036000830152612da481612d68565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612e076038836126b6565b9150612e1282612dab565b604082019050919050565b60006020820190508181036000830152612e3681612dfa565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612e996031836126b6565b9150612ea482612e3d565b604082019050919050565b60006020820190508181036000830152612ec881612e8c565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612f2b602b836126b6565b9150612f3682612ecf565b604082019050919050565b60006020820190508181036000830152612f5a81612f1e565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612fbd602c836126b6565b9150612fc882612f61565b604082019050919050565b60006020820190508181036000830152612fec81612fb0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f3230206d61782e207065722e2074786e00000000000000000000000000000000600082015250565b60006130586010836126b6565b915061306382613022565b602082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130c882612755565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130fb576130fa61308e565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006131626029836126b6565b915061316d82613106565b604082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006131f4602a836126b6565b91506131ff82613198565b604082019050919050565b60006020820190508181036000830152613223816131e7565b9050919050565b7f4a61696c20547572746c6520616c726561647920636c61696d65640000000000600082015250565b6000613260601b836126b6565b915061326b8261322a565b602082019050919050565b6000602082019050818103600083015261328f81613253565b9050919050565b6000815190506132a581612814565b92915050565b6000602082840312156132c1576132c0612457565b5b60006132cf84828501613296565b91505092915050565b7f44414f20547572746c65206e6f74206f776e6564000000000000000000000000600082015250565b600061330e6014836126b6565b9150613319826132d8565b602082019050919050565b6000602082019050818103600083015261333d81613301565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061337a6019836126b6565b915061338582613344565b602082019050919050565b600060208201905081810360008301526133a98161336d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061340c602f836126b6565b9150613417826133b0565b604082019050919050565b6000602082019050818103600083015261343b816133ff565b9050919050565b600081905092915050565b6000613458826126ab565b6134628185613442565b93506134728185602086016126c7565b80840191505092915050565b600061348a828561344d565b9150613496828461344d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134fe6026836126b6565b9150613509826134a2565b604082019050919050565b6000602082019050818103600083015261352d816134f1565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613590602c836126b6565b915061359b82613534565b604082019050919050565b600060208201905081810360008301526135bf81613583565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006136226029836126b6565b915061362d826135c6565b604082019050919050565b6000602082019050818103600083015261365181613615565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136b46024836126b6565b91506136bf82613658565b604082019050919050565b600060208201905081810360008301526136e3816136a7565b9050919050565b60006136f582612755565b915061370083612755565b9250828210156137135761371261308e565b5b828203905092915050565b600061372982612755565b915061373483612755565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137695761376861308e565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137d06032836126b6565b91506137db82613774565b604082019050919050565b600060208201905081810360008301526137ff816137c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061384082612755565b915061384b83612755565b92508261385b5761385a613806565b5b828204905092915050565b600061387182612755565b915061387c83612755565b92508261388c5761388b613806565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006138be82613897565b6138c881856138a2565b93506138d88185602086016126c7565b6138e181612526565b840191505092915050565b600060808201905061390160008301876127ea565b61390e60208301866127ea565b61391b6040830185612880565b818103606083015261392d81846138b3565b905095945050505050565b6000815190506139478161248d565b92915050565b60006020828403121561396357613962612457565b5b600061397184828501613938565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006139b06020836126b6565b91506139bb8261397a565b602082019050919050565b600060208201905081810360008301526139df816139a3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613a1c601c836126b6565b9150613a27826139e6565b602082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220d4d9932e73ee6b46efd3c3fec009a0c5d6c01c3b8987f3cf03ce870dde52c3cc64736f6c6343000809003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d556f4652444b6468374e7851393668656a6f526875694265574c736e79744645793742456b4c4837487547792f

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101585760003560e01c80635dd62b57116100c357806395d89b411161007c57806395d89b41146103d7578063a22cb465146103f5578063b88d4fde14610411578063c87b56dd1461042d578063e985e9c51461045d578063f2fde38b1461048d57610158565b80635dd62b57146103175780636352211e1461033357806370a0823114610363578063715018a6146103935780637c928fe91461039d5780638da5cb5b146103b957610158565b806323b872dd1161011557806323b872dd146102315780632f745c591461024d57806342842e0e1461027d5780634f6ccce71461029957806351b96d92146102c957806359f57d08146102e757610158565b806301ffc9a71461015d57806302fe53051461018d57806306fdde03146101a9578063081812fc146101c7578063095ea7b3146101f757806318160ddd14610213575b600080fd5b610177600480360381019061017291906124b9565b6104a9565b6040516101849190612501565b60405180910390f35b6101a760048036038101906101a29190612662565b6104bb565b005b6101b1610551565b6040516101be9190612733565b60405180910390f35b6101e160048036038101906101dc919061278b565b6105e3565b6040516101ee91906127f9565b60405180910390f35b610211600480360381019061020c9190612840565b610668565b005b61021b610780565b604051610228919061288f565b60405180910390f35b61024b600480360381019061024691906128aa565b61078d565b005b61026760048036038101906102629190612840565b6107ed565b604051610274919061288f565b60405180910390f35b610297600480360381019061029291906128aa565b610892565b005b6102b360048036038101906102ae919061278b565b6108b2565b6040516102c0919061288f565b60405180910390f35b6102d1610923565b6040516102de919061288f565b60405180910390f35b61030160048036038101906102fc919061278b565b610928565b60405161030e9190612501565b60405180910390f35b610331600480360381019061032c919061295d565b610948565b005b61034d6004803603810190610348919061278b565b6109d2565b60405161035a91906127f9565b60405180910390f35b61037d600480360381019061037891906129bd565b610a84565b60405161038a919061288f565b60405180910390f35b61039b610b3c565b005b6103b760048036038101906103b2919061278b565b610bc4565b005b6103c1610d76565b6040516103ce91906127f9565b60405180910390f35b6103df610da0565b6040516103ec9190612733565b60405180910390f35b61040f600480360381019061040a9190612a16565b610e32565b005b61042b60048036038101906104269190612af7565b610fb3565b005b6104476004803603810190610442919061278b565b611015565b6040516104549190612733565b60405180910390f35b61047760048036038101906104729190612b7a565b6110bc565b6040516104849190612501565b60405180910390f35b6104a760048036038101906104a291906129bd565b611150565b005b60006104b482611248565b9050919050565b6104c36112c2565b73ffffffffffffffffffffffffffffffffffffffff166104e1610d76565b73ffffffffffffffffffffffffffffffffffffffff1614610537576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161052e90612c06565b60405180910390fd5b80600b908051906020019061054d9291906123aa565b5050565b60606000805461056090612c55565b80601f016020809104026020016040519081016040528092919081815260200182805461058c90612c55565b80156105d95780601f106105ae576101008083540402835291602001916105d9565b820191906000526020600020905b8154815290600101906020018083116105bc57829003601f168201915b5050505050905090565b60006105ee826112ca565b61062d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161062490612cf9565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610673826109d2565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106db90612d8b565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166107036112c2565b73ffffffffffffffffffffffffffffffffffffffff16148061073257506107318161072c6112c2565b6110bc565b5b610771576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076890612e1d565b60405180910390fd5b61077b8383611336565b505050565b6000600880549050905090565b61079e6107986112c2565b826113ef565b6107dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107d490612eaf565b60405180910390fd5b6107e88383836114cd565b505050565b60006107f883610a84565b8210610839576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083090612f41565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6108ad83838360405180602001604052806000815250610fb3565b505050565b60006108bc610780565b82106108fd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108f490612fd3565b60405180910390fd5b6008828154811061091157610910612ff3565b5b90600052602060002001549050919050565b601481565b600d6020528060005260406000206000915054906101000a900460ff1681565b601483111561098c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109839061306e565b60405180910390fd5b60005b838110156109cc576109b98383838181106109ad576109ac612ff3565b5b90506020020135610bc4565b80806109c4906130bd565b91505061098f565b50505050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610a7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a7290613178565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610af5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aec9061320a565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610b446112c2565b73ffffffffffffffffffffffffffffffffffffffff16610b62610d76565b73ffffffffffffffffffffffffffffffffffffffff1614610bb8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610baf90612c06565b60405180910390fd5b610bc26000611729565b565b600d600082815260200190815260200160002060009054906101000a900460ff1615610c25576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1c90613276565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b8152600401610c97919061288f565b60206040518083038186803b158015610caf57600080fd5b505afa158015610cc3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce791906132ab565b73ffffffffffffffffffffffffffffffffffffffff1614610d3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d3490613324565b60405180910390fd5b610d4733826117ef565b6001600d600083815260200190815260200160002060006101000a81548160ff02191690831515021790555050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610daf90612c55565b80601f0160208091040260200160405190810160405280929190818152602001828054610ddb90612c55565b8015610e285780601f10610dfd57610100808354040283529160200191610e28565b820191906000526020600020905b815481529060010190602001808311610e0b57829003601f168201915b5050505050905090565b610e3a6112c2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610ea8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e9f90613390565b60405180910390fd5b8060056000610eb56112c2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f626112c2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610fa79190612501565b60405180910390a35050565b610fc4610fbe6112c2565b836113ef565b611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90612eaf565b60405180910390fd5b61100f8484848461180d565b50505050565b6060611020826112ca565b61105f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161105690613422565b60405180910390fd5b6000611069611869565b9050600081511161108957604051806020016040528060008152506110b4565b80611093846118fb565b6040516020016110a492919061347e565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6111586112c2565b73ffffffffffffffffffffffffffffffffffffffff16611176610d76565b73ffffffffffffffffffffffffffffffffffffffff16146111cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c390612c06565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561123c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123390613514565b60405180910390fd5b61124581611729565b50565b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806112bb57506112ba82611a5c565b5b9050919050565b600033905090565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166113a9836109d2565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b60006113fa826112ca565b611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906135a6565b60405180910390fd5b6000611444836109d2565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806114b357508373ffffffffffffffffffffffffffffffffffffffff1661149b846105e3565b73ffffffffffffffffffffffffffffffffffffffff16145b806114c457506114c381856110bc565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff166114ed826109d2565b73ffffffffffffffffffffffffffffffffffffffff1614611543576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153a90613638565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115b3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115aa906136ca565b60405180910390fd5b6115be838383611b3e565b6115c9600082611336565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461161991906136ea565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611670919061371e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b611809828260405180602001604052806000815250611b4e565b5050565b6118188484846114cd565b61182484848484611ba9565b611863576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185a906137e6565b60405180910390fd5b50505050565b6060600b805461187890612c55565b80601f01602080910402602001604051908101604052809291908181526020018280546118a490612c55565b80156118f15780601f106118c6576101008083540402835291602001916118f1565b820191906000526020600020905b8154815290600101906020018083116118d457829003601f168201915b5050505050905090565b60606000821415611943576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611a57565b600082905060005b6000821461197557808061195e906130bd565b915050600a8261196e9190613835565b915061194b565b60008167ffffffffffffffff81111561199157611990612537565b5b6040519080825280601f01601f1916602001820160405280156119c35781602001600182028036833780820191505090505b5090505b60008514611a50576001826119dc91906136ea565b9150600a856119eb9190613866565b60306119f7919061371e565b60f81b818381518110611a0d57611a0c612ff3565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611a499190613835565b94506119c7565b8093505050505b919050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480611b2757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80611b375750611b3682611d40565b5b9050919050565b611b49838383611daa565b505050565b611b588383611ebe565b611b656000848484611ba9565b611ba4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b9b906137e6565b60405180910390fd5b505050565b6000611bca8473ffffffffffffffffffffffffffffffffffffffff1661208c565b15611d33578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611bf36112c2565b8786866040518563ffffffff1660e01b8152600401611c1594939291906138ec565b602060405180830381600087803b158015611c2f57600080fd5b505af1925050508015611c6057506040513d601f19601f82011682018060405250810190611c5d919061394d565b60015b611ce3573d8060008114611c90576040519150601f19603f3d011682016040523d82523d6000602084013e611c95565b606091505b50600081511415611cdb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cd2906137e6565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611d38565b600190505b949350505050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611db583838361209f565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611df857611df3816120a4565b611e37565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611e3657611e3583826120ed565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611e7a57611e758161225a565b611eb9565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611eb857611eb7828261232b565b5b5b505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f25906139c6565b60405180910390fd5b611f37816112ca565b15611f77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6e90613a32565b60405180910390fd5b611f8360008383611b3e565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611fd3919061371e565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b600080823b905060008111915050919050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b600060016120fa84610a84565b61210491906136ea565b90506000600760008481526020019081526020016000205490508181146121e9576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b6000600160088054905061226e91906136ea565b905060006009600084815260200190815260200160002054905060006008838154811061229e5761229d612ff3565b5b9060005260206000200154905080600883815481106122c0576122bf612ff3565b5b90600052602060002001819055508160096000838152602001908152602001600020819055506009600085815260200190815260200160002060009055600880548061230f5761230e613a52565b5b6001900381819060005260206000200160009055905550505050565b600061233683610a84565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b8280546123b690612c55565b90600052602060002090601f0160209004810192826123d8576000855561241f565b82601f106123f157805160ff191683800117855561241f565b8280016001018555821561241f579182015b8281111561241e578251825591602001919060010190612403565b5b50905061242c9190612430565b5090565b5b80821115612449576000816000905550600101612431565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b61249681612461565b81146124a157600080fd5b50565b6000813590506124b38161248d565b92915050565b6000602082840312156124cf576124ce612457565b5b60006124dd848285016124a4565b91505092915050565b60008115159050919050565b6124fb816124e6565b82525050565b600060208201905061251660008301846124f2565b92915050565b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b61256f82612526565b810181811067ffffffffffffffff8211171561258e5761258d612537565b5b80604052505050565b60006125a161244d565b90506125ad8282612566565b919050565b600067ffffffffffffffff8211156125cd576125cc612537565b5b6125d682612526565b9050602081019050919050565b82818337600083830152505050565b6000612605612600846125b2565b612597565b90508281526020810184848401111561262157612620612521565b5b61262c8482856125e3565b509392505050565b600082601f8301126126495761264861251c565b5b81356126598482602086016125f2565b91505092915050565b60006020828403121561267857612677612457565b5b600082013567ffffffffffffffff8111156126965761269561245c565b5b6126a284828501612634565b91505092915050565b600081519050919050565b600082825260208201905092915050565b60005b838110156126e55780820151818401526020810190506126ca565b838111156126f4576000848401525b50505050565b6000612705826126ab565b61270f81856126b6565b935061271f8185602086016126c7565b61272881612526565b840191505092915050565b6000602082019050818103600083015261274d81846126fa565b905092915050565b6000819050919050565b61276881612755565b811461277357600080fd5b50565b6000813590506127858161275f565b92915050565b6000602082840312156127a1576127a0612457565b5b60006127af84828501612776565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006127e3826127b8565b9050919050565b6127f3816127d8565b82525050565b600060208201905061280e60008301846127ea565b92915050565b61281d816127d8565b811461282857600080fd5b50565b60008135905061283a81612814565b92915050565b6000806040838503121561285757612856612457565b5b60006128658582860161282b565b925050602061287685828601612776565b9150509250929050565b61288981612755565b82525050565b60006020820190506128a46000830184612880565b92915050565b6000806000606084860312156128c3576128c2612457565b5b60006128d18682870161282b565b93505060206128e28682870161282b565b92505060406128f386828701612776565b9150509250925092565b600080fd5b600080fd5b60008083601f84011261291d5761291c61251c565b5b8235905067ffffffffffffffff81111561293a576129396128fd565b5b60208301915083602082028301111561295657612955612902565b5b9250929050565b60008060006040848603121561297657612975612457565b5b600061298486828701612776565b935050602084013567ffffffffffffffff8111156129a5576129a461245c565b5b6129b186828701612907565b92509250509250925092565b6000602082840312156129d3576129d2612457565b5b60006129e18482850161282b565b91505092915050565b6129f3816124e6565b81146129fe57600080fd5b50565b600081359050612a10816129ea565b92915050565b60008060408385031215612a2d57612a2c612457565b5b6000612a3b8582860161282b565b9250506020612a4c85828601612a01565b9150509250929050565b600067ffffffffffffffff821115612a7157612a70612537565b5b612a7a82612526565b9050602081019050919050565b6000612a9a612a9584612a56565b612597565b905082815260208101848484011115612ab657612ab5612521565b5b612ac18482856125e3565b509392505050565b600082601f830112612ade57612add61251c565b5b8135612aee848260208601612a87565b91505092915050565b60008060008060808587031215612b1157612b10612457565b5b6000612b1f8782880161282b565b9450506020612b308782880161282b565b9350506040612b4187828801612776565b925050606085013567ffffffffffffffff811115612b6257612b6161245c565b5b612b6e87828801612ac9565b91505092959194509250565b60008060408385031215612b9157612b90612457565b5b6000612b9f8582860161282b565b9250506020612bb08582860161282b565b9150509250929050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bf06020836126b6565b9150612bfb82612bba565b602082019050919050565b60006020820190508181036000830152612c1f81612be3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612c6d57607f821691505b60208210811415612c8157612c80612c26565b5b50919050565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000612ce3602c836126b6565b9150612cee82612c87565b604082019050919050565b60006020820190508181036000830152612d1281612cd6565b9050919050565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b6000612d756021836126b6565b9150612d8082612d19565b604082019050919050565b60006020820190508181036000830152612da481612d68565b9050919050565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b6000612e076038836126b6565b9150612e1282612dab565b604082019050919050565b60006020820190508181036000830152612e3681612dfa565b9050919050565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b6000612e996031836126b6565b9150612ea482612e3d565b604082019050919050565b60006020820190508181036000830152612ec881612e8c565b9050919050565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b6000612f2b602b836126b6565b9150612f3682612ecf565b604082019050919050565b60006020820190508181036000830152612f5a81612f1e565b9050919050565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b6000612fbd602c836126b6565b9150612fc882612f61565b604082019050919050565b60006020820190508181036000830152612fec81612fb0565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f3230206d61782e207065722e2074786e00000000000000000000000000000000600082015250565b60006130586010836126b6565b915061306382613022565b602082019050919050565b600060208201905081810360008301526130878161304b565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006130c882612755565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156130fb576130fa61308e565b5b600182019050919050565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b60006131626029836126b6565b915061316d82613106565b604082019050919050565b6000602082019050818103600083015261319181613155565b9050919050565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b60006131f4602a836126b6565b91506131ff82613198565b604082019050919050565b60006020820190508181036000830152613223816131e7565b9050919050565b7f4a61696c20547572746c6520616c726561647920636c61696d65640000000000600082015250565b6000613260601b836126b6565b915061326b8261322a565b602082019050919050565b6000602082019050818103600083015261328f81613253565b9050919050565b6000815190506132a581612814565b92915050565b6000602082840312156132c1576132c0612457565b5b60006132cf84828501613296565b91505092915050565b7f44414f20547572746c65206e6f74206f776e6564000000000000000000000000600082015250565b600061330e6014836126b6565b9150613319826132d8565b602082019050919050565b6000602082019050818103600083015261333d81613301565b9050919050565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b600061337a6019836126b6565b915061338582613344565b602082019050919050565b600060208201905081810360008301526133a98161336d565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b600061340c602f836126b6565b9150613417826133b0565b604082019050919050565b6000602082019050818103600083015261343b816133ff565b9050919050565b600081905092915050565b6000613458826126ab565b6134628185613442565b93506134728185602086016126c7565b80840191505092915050565b600061348a828561344d565b9150613496828461344d565b91508190509392505050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006134fe6026836126b6565b9150613509826134a2565b604082019050919050565b6000602082019050818103600083015261352d816134f1565b9050919050565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b6000613590602c836126b6565b915061359b82613534565b604082019050919050565b600060208201905081810360008301526135bf81613583565b9050919050565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b60006136226029836126b6565b915061362d826135c6565b604082019050919050565b6000602082019050818103600083015261365181613615565b9050919050565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006136b46024836126b6565b91506136bf82613658565b604082019050919050565b600060208201905081810360008301526136e3816136a7565b9050919050565b60006136f582612755565b915061370083612755565b9250828210156137135761371261308e565b5b828203905092915050565b600061372982612755565b915061373483612755565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156137695761376861308e565b5b828201905092915050565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b60006137d06032836126b6565b91506137db82613774565b604082019050919050565b600060208201905081810360008301526137ff816137c3565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061384082612755565b915061384b83612755565b92508261385b5761385a613806565b5b828204905092915050565b600061387182612755565b915061387c83612755565b92508261388c5761388b613806565b5b828206905092915050565b600081519050919050565b600082825260208201905092915050565b60006138be82613897565b6138c881856138a2565b93506138d88185602086016126c7565b6138e181612526565b840191505092915050565b600060808201905061390160008301876127ea565b61390e60208301866127ea565b61391b6040830185612880565b818103606083015261392d81846138b3565b905095945050505050565b6000815190506139478161248d565b92915050565b60006020828403121561396357613962612457565b5b600061397184828501613938565b91505092915050565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b60006139b06020836126b6565b91506139bb8261397a565b602082019050919050565b600060208201905081810360008301526139df816139a3565b9050919050565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b6000613a1c601c836126b6565b9150613a27826139e6565b602082019050919050565b60006020820190508181036000830152613a4b81613a0f565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fdfea2646970667358221220d4d9932e73ee6b46efd3c3fec009a0c5d6c01c3b8987f3cf03ce870dde52c3cc64736f6c63430008090033

Deployed Bytecode Sourcemap

43101:1685:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44571:212;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43695:84;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24864:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26386:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25946:374;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37530:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27276:339;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37198:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27686:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37720:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43166:40;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43469:47;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44098:240;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24558:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24288:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11118:94;;;:::i;:::-;;43791:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10467:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25033:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;26679:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27942:328;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;25208:334;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27045:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11367:192;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44571:212;44710:4;44739:36;44763:11;44739:23;:36::i;:::-;44732:43;;44571:212;;;:::o;43695:84::-;10698:12;:10;:12::i;:::-;10687:23;;:7;:5;:7::i;:::-;:23;;;10679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43767:4:::1;43761:3;:10;;;;;;;;;;;;:::i;:::-;;43695:84:::0;:::o;24864:100::-;24918:13;24951:5;24944:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24864:100;:::o;26386:221::-;26462:7;26490:16;26498:7;26490;:16::i;:::-;26482:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26575:15;:24;26591:7;26575:24;;;;;;;;;;;;;;;;;;;;;26568:31;;26386:221;;;:::o;25946:374::-;26027:13;26043:23;26058:7;26043:14;:23::i;:::-;26027:39;;26091:5;26085:11;;:2;:11;;;;26077:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;26171:5;26155:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;26180:37;26197:5;26204:12;:10;:12::i;:::-;26180:16;:37::i;:::-;26155:62;26147:131;;;;;;;;;;;;:::i;:::-;;;;;;;;;26291:21;26300:2;26304:7;26291:8;:21::i;:::-;26016:304;25946:374;;:::o;37530:113::-;37591:7;37618:10;:17;;;;37611:24;;37530:113;:::o;27276:339::-;27471:41;27490:12;:10;:12::i;:::-;27504:7;27471:18;:41::i;:::-;27463:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;27579:28;27589:4;27595:2;27599:7;27579:9;:28::i;:::-;27276:339;;;:::o;37198:256::-;37295:7;37331:23;37348:5;37331:16;:23::i;:::-;37323:5;:31;37315:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;37420:12;:19;37433:5;37420:19;;;;;;;;;;;;;;;:26;37440:5;37420:26;;;;;;;;;;;;37413:33;;37198:256;;;;:::o;27686:185::-;27824:39;27841:4;27847:2;27851:7;27824:39;;;;;;;;;;;;:16;:39::i;:::-;27686:185;;;:::o;37720:233::-;37795:7;37831:30;:28;:30::i;:::-;37823:5;:38;37815:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;37928:10;37939:5;37928:17;;;;;;;;:::i;:::-;;;;;;;;;;37921:24;;37720:233;;;:::o;43166:40::-;43204:2;43166:40;:::o;43469:47::-;;;;;;;;;;;;;;;;;;;;;;:::o;44098:240::-;43204:2;44197:6;:21;;44189:50;;;;;;;;;;;;:::i;:::-;;;;;;;;;44255:9;44250:81;44270:6;44268:1;:8;44250:81;;;44298:21;44307:8;;44316:1;44307:11;;;;;;;:::i;:::-;;;;;;;;44298:8;:21::i;:::-;44278:3;;;;;:::i;:::-;;;;44250:81;;;;44098:240;;;:::o;24558:239::-;24630:7;24650:13;24666:7;:16;24674:7;24666:16;;;;;;;;;;;;;;;;;;;;;24650:32;;24718:1;24701:19;;:5;:19;;;;24693:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;24784:5;24777:12;;;24558:239;;;:::o;24288:208::-;24360:7;24405:1;24388:19;;:5;:19;;;;24380:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;24472:9;:16;24482:5;24472:16;;;;;;;;;;;;;;;;24465:23;;24288:208;;;:::o;11118:94::-;10698:12;:10;:12::i;:::-;10687:23;;:7;:5;:7::i;:::-;:23;;;10679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11183:21:::1;11201:1;11183:9;:21::i;:::-;11118:94::o:0;43791:295::-;43853:14;:23;43868:7;43853:23;;;;;;;;;;;;;;;;;;;;;43852:24;43844:64;;;;;;;;;;;;:::i;:::-;;;;;;;;;43961:10;43927:44;;:13;;;;;;;;;;;:21;;;43949:7;43927:30;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:44;;;43919:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;44007:30;44017:10;44029:7;44007:9;:30::i;:::-;44074:4;44048:14;:23;44063:7;44048:23;;;;;;;;;;;;:30;;;;;;;;;;;;;;;;;;43791:295;:::o;10467:87::-;10513:7;10540:6;;;;;;;;;;;10533:13;;10467:87;:::o;25033:104::-;25089:13;25122:7;25115:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;25033:104;:::o;26679:295::-;26794:12;:10;:12::i;:::-;26782:24;;:8;:24;;;;26774:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;26894:8;26849:18;:32;26868:12;:10;:12::i;:::-;26849:32;;;;;;;;;;;;;;;:42;26882:8;26849:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;26947:8;26918:48;;26933:12;:10;:12::i;:::-;26918:48;;;26957:8;26918:48;;;;;;:::i;:::-;;;;;;;;26679:295;;:::o;27942:328::-;28117:41;28136:12;:10;:12::i;:::-;28150:7;28117:18;:41::i;:::-;28109:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;28223:39;28237:4;28243:2;28247:7;28256:5;28223:13;:39::i;:::-;27942:328;;;;:::o;25208:334::-;25281:13;25315:16;25323:7;25315;:16::i;:::-;25307:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;25396:21;25420:10;:8;:10::i;:::-;25396:34;;25472:1;25454:7;25448:21;:25;:86;;;;;;;;;;;;;;;;;25500:7;25509:18;:7;:16;:18::i;:::-;25483:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;25448:86;25441:93;;;25208:334;;;:::o;27045:164::-;27142:4;27166:18;:25;27185:5;27166:25;;;;;;;;;;;;;;;:35;27192:8;27166:35;;;;;;;;;;;;;;;;;;;;;;;;;27159:42;;27045:164;;;;:::o;11367:192::-;10698:12;:10;:12::i;:::-;10687:23;;:7;:5;:7::i;:::-;:23;;;10679:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;11476:1:::1;11456:22;;:8;:22;;;;11448:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;11532:19;11542:8;11532:9;:19::i;:::-;11367:192:::0;:::o;36890:224::-;36992:4;37031:35;37016:50;;;:11;:50;;;;:90;;;;37070:36;37094:11;37070:23;:36::i;:::-;37016:90;37009:97;;36890:224;;;:::o;1569:98::-;1622:7;1649:10;1642:17;;1569:98;:::o;29780:127::-;29845:4;29897:1;29869:30;;:7;:16;29877:7;29869:16;;;;;;;;;;;;;;;;;;;;;:30;;;;29862:37;;29780:127;;;:::o;33725:174::-;33827:2;33800:15;:24;33816:7;33800:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;33883:7;33879:2;33845:46;;33854:23;33869:7;33854:14;:23::i;:::-;33845:46;;;;;;;;;;;;33725:174;;:::o;30074:348::-;30167:4;30192:16;30200:7;30192;:16::i;:::-;30184:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;30268:13;30284:23;30299:7;30284:14;:23::i;:::-;30268:39;;30337:5;30326:16;;:7;:16;;;:51;;;;30370:7;30346:31;;:20;30358:7;30346:11;:20::i;:::-;:31;;;30326:51;:87;;;;30381:32;30398:5;30405:7;30381:16;:32::i;:::-;30326:87;30318:96;;;30074:348;;;;:::o;33029:578::-;33188:4;33161:31;;:23;33176:7;33161:14;:23::i;:::-;:31;;;33153:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;33271:1;33257:16;;:2;:16;;;;33249:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;33327:39;33348:4;33354:2;33358:7;33327:20;:39::i;:::-;33431:29;33448:1;33452:7;33431:8;:29::i;:::-;33492:1;33473:9;:15;33483:4;33473:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;33521:1;33504:9;:13;33514:2;33504:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;33552:2;33533:7;:16;33541:7;33533:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;33591:7;33587:2;33572:27;;33581:4;33572:27;;;;;;;;;;;;33029:578;;;:::o;11567:173::-;11623:16;11642:6;;;;;;;;;;;11623:25;;11668:8;11659:6;;:17;;;;;;;;;;;;;;;;;;11723:8;11692:40;;11713:8;11692:40;;;;;;;;;;;;11612:128;11567:173;:::o;30764:110::-;30840:26;30850:2;30854:7;30840:26;;;;;;;;;;;;:9;:26::i;:::-;30764:110;;:::o;29152:315::-;29309:28;29319:4;29325:2;29329:7;29309:9;:28::i;:::-;29356:48;29379:4;29385:2;29389:7;29398:5;29356:22;:48::i;:::-;29348:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;29152:315;;;;:::o;43591:96::-;43643:13;43676:3;43669:10;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43591:96;:::o;20872:723::-;20928:13;21158:1;21149:5;:10;21145:53;;;21176:10;;;;;;;;;;;;;;;;;;;;;21145:53;21208:12;21223:5;21208:20;;21239:14;21264:78;21279:1;21271:4;:9;21264:78;;21297:8;;;;;:::i;:::-;;;;21328:2;21320:10;;;;;:::i;:::-;;;21264:78;;;21352:19;21384:6;21374:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21352:39;;21402:154;21418:1;21409:5;:10;21402:154;;21446:1;21436:11;;;;;:::i;:::-;;;21513:2;21505:5;:10;;;;:::i;:::-;21492:2;:24;;;;:::i;:::-;21479:39;;21462:6;21469;21462:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;21542:2;21533:11;;;;;:::i;:::-;;;21402:154;;;21580:6;21566:21;;;;;20872:723;;;;:::o;23945:279::-;24047:4;24099:25;24084:40;;;:11;:40;;;;:92;;;;24143:33;24128:48;;;:11;:48;;;;24084:92;:132;;;;24180:36;24204:11;24180:23;:36::i;:::-;24084:132;24064:152;;23945:279;;;:::o;44348:215::-;44510:45;44537:4;44543:2;44547:7;44510:26;:45::i;:::-;44348:215;;;:::o;31101:284::-;31231:18;31237:2;31241:7;31231:5;:18::i;:::-;31268:54;31299:1;31303:2;31307:7;31316:5;31268:22;:54::i;:::-;31260:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;31101:284;;;:::o;34464:799::-;34619:4;34640:15;:2;:13;;;:15::i;:::-;34636:620;;;34692:2;34676:36;;;34713:12;:10;:12::i;:::-;34727:4;34733:7;34742:5;34676:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;34672:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34935:1;34918:6;:13;:18;34914:272;;;34961:60;;;;;;;;;;:::i;:::-;;;;;;;;34914:272;35136:6;35130:13;35121:6;35117:2;35113:15;35106:38;34672:529;34809:41;;;34799:51;;;:6;:51;;;;34792:58;;;;;34636:620;35240:4;35233:11;;34464:799;;;;;;;:::o;8326:157::-;8411:4;8450:25;8435:40;;;:11;:40;;;;8428:47;;8326:157;;;:::o;38566:589::-;38710:45;38737:4;38743:2;38747:7;38710:26;:45::i;:::-;38788:1;38772:18;;:4;:18;;;38768:187;;;38807:40;38839:7;38807:31;:40::i;:::-;38768:187;;;38877:2;38869:10;;:4;:10;;;38865:90;;38896:47;38929:4;38935:7;38896:32;:47::i;:::-;38865:90;38768:187;38983:1;38969:16;;:2;:16;;;38965:183;;;39002:45;39039:7;39002:36;:45::i;:::-;38965:183;;;39075:4;39069:10;;:2;:10;;;39065:83;;39096:40;39124:2;39128:7;39096:27;:40::i;:::-;39065:83;38965:183;38566:589;;;:::o;31721:382::-;31815:1;31801:16;;:2;:16;;;;31793:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;31874:16;31882:7;31874;:16::i;:::-;31873:17;31865:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;31936:45;31965:1;31969:2;31973:7;31936:20;:45::i;:::-;32011:1;31994:9;:13;32004:2;31994:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;32042:2;32023:7;:16;32031:7;32023:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;32087:7;32083:2;32062:33;;32079:1;32062:33;;;;;;;;;;;;31721:382;;:::o;13234:387::-;13294:4;13502:12;13569:7;13557:20;13549:28;;13612:1;13605:4;:8;13598:15;;;13234:387;;;:::o;35835:126::-;;;;:::o;39878:164::-;39982:10;:17;;;;39955:15;:24;39971:7;39955:24;;;;;;;;;;;:44;;;;40010:10;40026:7;40010:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39878:164;:::o;40669:988::-;40935:22;40985:1;40960:22;40977:4;40960:16;:22::i;:::-;:26;;;;:::i;:::-;40935:51;;40997:18;41018:17;:26;41036:7;41018:26;;;;;;;;;;;;40997:47;;41165:14;41151:10;:28;41147:328;;41196:19;41218:12;:18;41231:4;41218:18;;;;;;;;;;;;;;;:34;41237:14;41218:34;;;;;;;;;;;;41196:56;;41302:11;41269:12;:18;41282:4;41269:18;;;;;;;;;;;;;;;:30;41288:10;41269:30;;;;;;;;;;;:44;;;;41419:10;41386:17;:30;41404:11;41386:30;;;;;;;;;;;:43;;;;41181:294;41147:328;41571:17;:26;41589:7;41571:26;;;;;;;;;;;41564:33;;;41615:12;:18;41628:4;41615:18;;;;;;;;;;;;;;;:34;41634:14;41615:34;;;;;;;;;;;41608:41;;;40750:907;;40669:988;;:::o;41952:1079::-;42205:22;42250:1;42230:10;:17;;;;:21;;;;:::i;:::-;42205:46;;42262:18;42283:15;:24;42299:7;42283:24;;;;;;;;;;;;42262:45;;42634:19;42656:10;42667:14;42656:26;;;;;;;;:::i;:::-;;;;;;;;;;42634:48;;42720:11;42695:10;42706;42695:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;42831:10;42800:15;:28;42816:11;42800:28;;;;;;;;;;;:41;;;;42972:15;:24;42988:7;42972:24;;;;;;;;;;;42965:31;;;43007:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;42023:1008;;;41952:1079;:::o;39456:221::-;39541:14;39558:20;39575:2;39558:16;:20::i;:::-;39541:37;;39616:7;39589:12;:16;39602:2;39589:16;;;;;;;;;;;;;;;:24;39606:6;39589:24;;;;;;;;;;;:34;;;;39663:6;39634:17;:26;39652:7;39634:26;;;;;;;;;;;:35;;;;39530:147;39456:221;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:117::-;1627:1;1624;1617:12;1641:117;1750:1;1747;1740:12;1764:102;1805:6;1856:2;1852:7;1847:2;1840:5;1836:14;1832:28;1822:38;;1764:102;;;:::o;1872:180::-;1920:77;1917:1;1910:88;2017:4;2014:1;2007:15;2041:4;2038:1;2031:15;2058:281;2141:27;2163:4;2141:27;:::i;:::-;2133:6;2129:40;2271:6;2259:10;2256:22;2235:18;2223:10;2220:34;2217:62;2214:88;;;2282:18;;:::i;:::-;2214:88;2322:10;2318:2;2311:22;2101:238;2058:281;;:::o;2345:129::-;2379:6;2406:20;;:::i;:::-;2396:30;;2435:33;2463:4;2455:6;2435:33;:::i;:::-;2345:129;;;:::o;2480:308::-;2542:4;2632:18;2624:6;2621:30;2618:56;;;2654:18;;:::i;:::-;2618:56;2692:29;2714:6;2692:29;:::i;:::-;2684:37;;2776:4;2770;2766:15;2758:23;;2480:308;;;:::o;2794:154::-;2878:6;2873:3;2868;2855:30;2940:1;2931:6;2926:3;2922:16;2915:27;2794:154;;;:::o;2954:412::-;3032:5;3057:66;3073:49;3115:6;3073:49;:::i;:::-;3057:66;:::i;:::-;3048:75;;3146:6;3139:5;3132:21;3184:4;3177:5;3173:16;3222:3;3213:6;3208:3;3204:16;3201:25;3198:112;;;3229:79;;:::i;:::-;3198:112;3319:41;3353:6;3348:3;3343;3319:41;:::i;:::-;3038:328;2954:412;;;;;:::o;3386:340::-;3442:5;3491:3;3484:4;3476:6;3472:17;3468:27;3458:122;;3499:79;;:::i;:::-;3458:122;3616:6;3603:20;3641:79;3716:3;3708:6;3701:4;3693:6;3689:17;3641:79;:::i;:::-;3632:88;;3448:278;3386:340;;;;:::o;3732:509::-;3801:6;3850:2;3838:9;3829:7;3825:23;3821:32;3818:119;;;3856:79;;:::i;:::-;3818:119;4004:1;3993:9;3989:17;3976:31;4034:18;4026:6;4023:30;4020:117;;;4056:79;;:::i;:::-;4020:117;4161:63;4216:7;4207:6;4196:9;4192:22;4161:63;:::i;:::-;4151:73;;3947:287;3732:509;;;;:::o;4247:99::-;4299:6;4333:5;4327:12;4317:22;;4247:99;;;:::o;4352:169::-;4436:11;4470:6;4465:3;4458:19;4510:4;4505:3;4501:14;4486:29;;4352:169;;;;:::o;4527:307::-;4595:1;4605:113;4619:6;4616:1;4613:13;4605:113;;;4704:1;4699:3;4695:11;4689:18;4685:1;4680:3;4676:11;4669:39;4641:2;4638:1;4634:10;4629:15;;4605:113;;;4736:6;4733:1;4730:13;4727:101;;;4816:1;4807:6;4802:3;4798:16;4791:27;4727:101;4576:258;4527:307;;;:::o;4840:364::-;4928:3;4956:39;4989:5;4956:39;:::i;:::-;5011:71;5075:6;5070:3;5011:71;:::i;:::-;5004:78;;5091:52;5136:6;5131:3;5124:4;5117:5;5113:16;5091:52;:::i;:::-;5168:29;5190:6;5168:29;:::i;:::-;5163:3;5159:39;5152:46;;4932:272;4840:364;;;;:::o;5210:313::-;5323:4;5361:2;5350:9;5346:18;5338:26;;5410:9;5404:4;5400:20;5396:1;5385:9;5381:17;5374:47;5438:78;5511:4;5502:6;5438:78;:::i;:::-;5430:86;;5210:313;;;;:::o;5529:77::-;5566:7;5595:5;5584:16;;5529:77;;;:::o;5612:122::-;5685:24;5703:5;5685:24;:::i;:::-;5678:5;5675:35;5665:63;;5724:1;5721;5714:12;5665:63;5612:122;:::o;5740:139::-;5786:5;5824:6;5811:20;5802:29;;5840:33;5867:5;5840:33;:::i;:::-;5740:139;;;;:::o;5885:329::-;5944:6;5993:2;5981:9;5972:7;5968:23;5964:32;5961:119;;;5999:79;;:::i;:::-;5961:119;6119:1;6144:53;6189:7;6180:6;6169:9;6165:22;6144:53;:::i;:::-;6134:63;;6090:117;5885:329;;;;:::o;6220:126::-;6257:7;6297:42;6290:5;6286:54;6275:65;;6220:126;;;:::o;6352:96::-;6389:7;6418:24;6436:5;6418:24;:::i;:::-;6407:35;;6352:96;;;:::o;6454:118::-;6541:24;6559:5;6541:24;:::i;:::-;6536:3;6529:37;6454:118;;:::o;6578:222::-;6671:4;6709:2;6698:9;6694:18;6686:26;;6722:71;6790:1;6779:9;6775:17;6766:6;6722:71;:::i;:::-;6578:222;;;;:::o;6806:122::-;6879:24;6897:5;6879:24;:::i;:::-;6872:5;6869:35;6859:63;;6918:1;6915;6908:12;6859:63;6806:122;:::o;6934:139::-;6980:5;7018:6;7005:20;6996:29;;7034:33;7061:5;7034:33;:::i;:::-;6934:139;;;;:::o;7079:474::-;7147:6;7155;7204:2;7192:9;7183:7;7179:23;7175:32;7172:119;;;7210:79;;:::i;:::-;7172:119;7330:1;7355:53;7400:7;7391:6;7380:9;7376:22;7355:53;:::i;:::-;7345:63;;7301:117;7457:2;7483:53;7528:7;7519:6;7508:9;7504:22;7483:53;:::i;:::-;7473:63;;7428:118;7079:474;;;;;:::o;7559:118::-;7646:24;7664:5;7646:24;:::i;:::-;7641:3;7634:37;7559:118;;:::o;7683:222::-;7776:4;7814:2;7803:9;7799:18;7791:26;;7827:71;7895:1;7884:9;7880:17;7871:6;7827:71;:::i;:::-;7683:222;;;;:::o;7911:619::-;7988:6;7996;8004;8053:2;8041:9;8032:7;8028:23;8024:32;8021:119;;;8059:79;;:::i;:::-;8021:119;8179:1;8204:53;8249:7;8240:6;8229:9;8225:22;8204:53;:::i;:::-;8194:63;;8150:117;8306:2;8332:53;8377:7;8368:6;8357:9;8353:22;8332:53;:::i;:::-;8322:63;;8277:118;8434:2;8460:53;8505:7;8496:6;8485:9;8481:22;8460:53;:::i;:::-;8450:63;;8405:118;7911:619;;;;;:::o;8536:117::-;8645:1;8642;8635:12;8659:117;8768:1;8765;8758:12;8799:568;8872:8;8882:6;8932:3;8925:4;8917:6;8913:17;8909:27;8899:122;;8940:79;;:::i;:::-;8899:122;9053:6;9040:20;9030:30;;9083:18;9075:6;9072:30;9069:117;;;9105:79;;:::i;:::-;9069:117;9219:4;9211:6;9207:17;9195:29;;9273:3;9265:4;9257:6;9253:17;9243:8;9239:32;9236:41;9233:128;;;9280:79;;:::i;:::-;9233:128;8799:568;;;;;:::o;9373:704::-;9468:6;9476;9484;9533:2;9521:9;9512:7;9508:23;9504:32;9501:119;;;9539:79;;:::i;:::-;9501:119;9659:1;9684:53;9729:7;9720:6;9709:9;9705:22;9684:53;:::i;:::-;9674:63;;9630:117;9814:2;9803:9;9799:18;9786:32;9845:18;9837:6;9834:30;9831:117;;;9867:79;;:::i;:::-;9831:117;9980:80;10052:7;10043:6;10032:9;10028:22;9980:80;:::i;:::-;9962:98;;;;9757:313;9373:704;;;;;:::o;10083:329::-;10142:6;10191:2;10179:9;10170:7;10166:23;10162:32;10159:119;;;10197:79;;:::i;:::-;10159:119;10317:1;10342:53;10387:7;10378:6;10367:9;10363:22;10342:53;:::i;:::-;10332:63;;10288:117;10083:329;;;;:::o;10418:116::-;10488:21;10503:5;10488:21;:::i;:::-;10481:5;10478:32;10468:60;;10524:1;10521;10514:12;10468:60;10418:116;:::o;10540:133::-;10583:5;10621:6;10608:20;10599:29;;10637:30;10661:5;10637:30;:::i;:::-;10540:133;;;;:::o;10679:468::-;10744:6;10752;10801:2;10789:9;10780:7;10776:23;10772:32;10769:119;;;10807:79;;:::i;:::-;10769:119;10927:1;10952:53;10997:7;10988:6;10977:9;10973:22;10952:53;:::i;:::-;10942:63;;10898:117;11054:2;11080:50;11122:7;11113:6;11102:9;11098:22;11080:50;:::i;:::-;11070:60;;11025:115;10679:468;;;;;:::o;11153:307::-;11214:4;11304:18;11296:6;11293:30;11290:56;;;11326:18;;:::i;:::-;11290:56;11364:29;11386:6;11364:29;:::i;:::-;11356:37;;11448:4;11442;11438:15;11430:23;;11153:307;;;:::o;11466:410::-;11543:5;11568:65;11584:48;11625:6;11584:48;:::i;:::-;11568:65;:::i;:::-;11559:74;;11656:6;11649:5;11642:21;11694:4;11687:5;11683:16;11732:3;11723:6;11718:3;11714:16;11711:25;11708:112;;;11739:79;;:::i;:::-;11708:112;11829:41;11863:6;11858:3;11853;11829:41;:::i;:::-;11549:327;11466:410;;;;;:::o;11895:338::-;11950:5;11999:3;11992:4;11984:6;11980:17;11976:27;11966:122;;12007:79;;:::i;:::-;11966:122;12124:6;12111:20;12149:78;12223:3;12215:6;12208:4;12200:6;12196:17;12149:78;:::i;:::-;12140:87;;11956:277;11895:338;;;;:::o;12239:943::-;12334:6;12342;12350;12358;12407:3;12395:9;12386:7;12382:23;12378:33;12375:120;;;12414:79;;:::i;:::-;12375:120;12534:1;12559:53;12604:7;12595:6;12584:9;12580:22;12559:53;:::i;:::-;12549:63;;12505:117;12661:2;12687:53;12732:7;12723:6;12712:9;12708:22;12687:53;:::i;:::-;12677:63;;12632:118;12789:2;12815:53;12860:7;12851:6;12840:9;12836:22;12815:53;:::i;:::-;12805:63;;12760:118;12945:2;12934:9;12930:18;12917:32;12976:18;12968:6;12965:30;12962:117;;;12998:79;;:::i;:::-;12962:117;13103:62;13157:7;13148:6;13137:9;13133:22;13103:62;:::i;:::-;13093:72;;12888:287;12239:943;;;;;;;:::o;13188:474::-;13256:6;13264;13313:2;13301:9;13292:7;13288:23;13284:32;13281:119;;;13319:79;;:::i;:::-;13281:119;13439:1;13464:53;13509:7;13500:6;13489:9;13485:22;13464:53;:::i;:::-;13454:63;;13410:117;13566:2;13592:53;13637:7;13628:6;13617:9;13613:22;13592:53;:::i;:::-;13582:63;;13537:118;13188:474;;;;;:::o;13668:182::-;13808:34;13804:1;13796:6;13792:14;13785:58;13668:182;:::o;13856:366::-;13998:3;14019:67;14083:2;14078:3;14019:67;:::i;:::-;14012:74;;14095:93;14184:3;14095:93;:::i;:::-;14213:2;14208:3;14204:12;14197:19;;13856:366;;;:::o;14228:419::-;14394:4;14432:2;14421:9;14417:18;14409:26;;14481:9;14475:4;14471:20;14467:1;14456:9;14452:17;14445:47;14509:131;14635:4;14509:131;:::i;:::-;14501:139;;14228:419;;;:::o;14653:180::-;14701:77;14698:1;14691:88;14798:4;14795:1;14788:15;14822:4;14819:1;14812:15;14839:320;14883:6;14920:1;14914:4;14910:12;14900:22;;14967:1;14961:4;14957:12;14988:18;14978:81;;15044:4;15036:6;15032:17;15022:27;;14978:81;15106:2;15098:6;15095:14;15075:18;15072:38;15069:84;;;15125:18;;:::i;:::-;15069:84;14890:269;14839:320;;;:::o;15165:231::-;15305:34;15301:1;15293:6;15289:14;15282:58;15374:14;15369:2;15361:6;15357:15;15350:39;15165:231;:::o;15402:366::-;15544:3;15565:67;15629:2;15624:3;15565:67;:::i;:::-;15558:74;;15641:93;15730:3;15641:93;:::i;:::-;15759:2;15754:3;15750:12;15743:19;;15402:366;;;:::o;15774:419::-;15940:4;15978:2;15967:9;15963:18;15955:26;;16027:9;16021:4;16017:20;16013:1;16002:9;15998:17;15991:47;16055:131;16181:4;16055:131;:::i;:::-;16047:139;;15774:419;;;:::o;16199:220::-;16339:34;16335:1;16327:6;16323:14;16316:58;16408:3;16403:2;16395:6;16391:15;16384:28;16199:220;:::o;16425:366::-;16567:3;16588:67;16652:2;16647:3;16588:67;:::i;:::-;16581:74;;16664:93;16753:3;16664:93;:::i;:::-;16782:2;16777:3;16773:12;16766:19;;16425:366;;;:::o;16797:419::-;16963:4;17001:2;16990:9;16986:18;16978:26;;17050:9;17044:4;17040:20;17036:1;17025:9;17021:17;17014:47;17078:131;17204:4;17078:131;:::i;:::-;17070:139;;16797:419;;;:::o;17222:243::-;17362:34;17358:1;17350:6;17346:14;17339:58;17431:26;17426:2;17418:6;17414:15;17407:51;17222:243;:::o;17471:366::-;17613:3;17634:67;17698:2;17693:3;17634:67;:::i;:::-;17627:74;;17710:93;17799:3;17710:93;:::i;:::-;17828:2;17823:3;17819:12;17812:19;;17471:366;;;:::o;17843:419::-;18009:4;18047:2;18036:9;18032:18;18024:26;;18096:9;18090:4;18086:20;18082:1;18071:9;18067:17;18060:47;18124:131;18250:4;18124:131;:::i;:::-;18116:139;;17843:419;;;:::o;18268:236::-;18408:34;18404:1;18396:6;18392:14;18385:58;18477:19;18472:2;18464:6;18460:15;18453:44;18268:236;:::o;18510:366::-;18652:3;18673:67;18737:2;18732:3;18673:67;:::i;:::-;18666:74;;18749:93;18838:3;18749:93;:::i;:::-;18867:2;18862:3;18858:12;18851:19;;18510:366;;;:::o;18882:419::-;19048:4;19086:2;19075:9;19071:18;19063:26;;19135:9;19129:4;19125:20;19121:1;19110:9;19106:17;19099:47;19163:131;19289:4;19163:131;:::i;:::-;19155:139;;18882:419;;;:::o;19307:230::-;19447:34;19443:1;19435:6;19431:14;19424:58;19516:13;19511:2;19503:6;19499:15;19492:38;19307:230;:::o;19543:366::-;19685:3;19706:67;19770:2;19765:3;19706:67;:::i;:::-;19699:74;;19782:93;19871:3;19782:93;:::i;:::-;19900:2;19895:3;19891:12;19884:19;;19543:366;;;:::o;19915:419::-;20081:4;20119:2;20108:9;20104:18;20096:26;;20168:9;20162:4;20158:20;20154:1;20143:9;20139:17;20132:47;20196:131;20322:4;20196:131;:::i;:::-;20188:139;;19915:419;;;:::o;20340:231::-;20480:34;20476:1;20468:6;20464:14;20457:58;20549:14;20544:2;20536:6;20532:15;20525:39;20340:231;:::o;20577:366::-;20719:3;20740:67;20804:2;20799:3;20740:67;:::i;:::-;20733:74;;20816:93;20905:3;20816:93;:::i;:::-;20934:2;20929:3;20925:12;20918:19;;20577:366;;;:::o;20949:419::-;21115:4;21153:2;21142:9;21138:18;21130:26;;21202:9;21196:4;21192:20;21188:1;21177:9;21173:17;21166:47;21230:131;21356:4;21230:131;:::i;:::-;21222:139;;20949:419;;;:::o;21374:180::-;21422:77;21419:1;21412:88;21519:4;21516:1;21509:15;21543:4;21540:1;21533:15;21560:166;21700:18;21696:1;21688:6;21684:14;21677:42;21560:166;:::o;21732:366::-;21874:3;21895:67;21959:2;21954:3;21895:67;:::i;:::-;21888:74;;21971:93;22060:3;21971:93;:::i;:::-;22089:2;22084:3;22080:12;22073:19;;21732:366;;;:::o;22104:419::-;22270:4;22308:2;22297:9;22293:18;22285:26;;22357:9;22351:4;22347:20;22343:1;22332:9;22328:17;22321:47;22385:131;22511:4;22385:131;:::i;:::-;22377:139;;22104:419;;;:::o;22529:180::-;22577:77;22574:1;22567:88;22674:4;22671:1;22664:15;22698:4;22695:1;22688:15;22715:233;22754:3;22777:24;22795:5;22777:24;:::i;:::-;22768:33;;22823:66;22816:5;22813:77;22810:103;;;22893:18;;:::i;:::-;22810:103;22940:1;22933:5;22929:13;22922:20;;22715:233;;;:::o;22954:228::-;23094:34;23090:1;23082:6;23078:14;23071:58;23163:11;23158:2;23150:6;23146:15;23139:36;22954:228;:::o;23188:366::-;23330:3;23351:67;23415:2;23410:3;23351:67;:::i;:::-;23344:74;;23427:93;23516:3;23427:93;:::i;:::-;23545:2;23540:3;23536:12;23529:19;;23188:366;;;:::o;23560:419::-;23726:4;23764:2;23753:9;23749:18;23741:26;;23813:9;23807:4;23803:20;23799:1;23788:9;23784:17;23777:47;23841:131;23967:4;23841:131;:::i;:::-;23833:139;;23560:419;;;:::o;23985:229::-;24125:34;24121:1;24113:6;24109:14;24102:58;24194:12;24189:2;24181:6;24177:15;24170:37;23985:229;:::o;24220:366::-;24362:3;24383:67;24447:2;24442:3;24383:67;:::i;:::-;24376:74;;24459:93;24548:3;24459:93;:::i;:::-;24577:2;24572:3;24568:12;24561:19;;24220:366;;;:::o;24592:419::-;24758:4;24796:2;24785:9;24781:18;24773:26;;24845:9;24839:4;24835:20;24831:1;24820:9;24816:17;24809:47;24873:131;24999:4;24873:131;:::i;:::-;24865:139;;24592:419;;;:::o;25017:177::-;25157:29;25153:1;25145:6;25141:14;25134:53;25017:177;:::o;25200:366::-;25342:3;25363:67;25427:2;25422:3;25363:67;:::i;:::-;25356:74;;25439:93;25528:3;25439:93;:::i;:::-;25557:2;25552:3;25548:12;25541:19;;25200:366;;;:::o;25572:419::-;25738:4;25776:2;25765:9;25761:18;25753:26;;25825:9;25819:4;25815:20;25811:1;25800:9;25796:17;25789:47;25853:131;25979:4;25853:131;:::i;:::-;25845:139;;25572:419;;;:::o;25997:143::-;26054:5;26085:6;26079:13;26070:22;;26101:33;26128:5;26101:33;:::i;:::-;25997:143;;;;:::o;26146:351::-;26216:6;26265:2;26253:9;26244:7;26240:23;26236:32;26233:119;;;26271:79;;:::i;:::-;26233:119;26391:1;26416:64;26472:7;26463:6;26452:9;26448:22;26416:64;:::i;:::-;26406:74;;26362:128;26146:351;;;;:::o;26503:170::-;26643:22;26639:1;26631:6;26627:14;26620:46;26503:170;:::o;26679:366::-;26821:3;26842:67;26906:2;26901:3;26842:67;:::i;:::-;26835:74;;26918:93;27007:3;26918:93;:::i;:::-;27036:2;27031:3;27027:12;27020:19;;26679:366;;;:::o;27051:419::-;27217:4;27255:2;27244:9;27240:18;27232:26;;27304:9;27298:4;27294:20;27290:1;27279:9;27275:17;27268:47;27332:131;27458:4;27332:131;:::i;:::-;27324:139;;27051:419;;;:::o;27476:175::-;27616:27;27612:1;27604:6;27600:14;27593:51;27476:175;:::o;27657:366::-;27799:3;27820:67;27884:2;27879:3;27820:67;:::i;:::-;27813:74;;27896:93;27985:3;27896:93;:::i;:::-;28014:2;28009:3;28005:12;27998:19;;27657:366;;;:::o;28029:419::-;28195:4;28233:2;28222:9;28218:18;28210:26;;28282:9;28276:4;28272:20;28268:1;28257:9;28253:17;28246:47;28310:131;28436:4;28310:131;:::i;:::-;28302:139;;28029:419;;;:::o;28454:234::-;28594:34;28590:1;28582:6;28578:14;28571:58;28663:17;28658:2;28650:6;28646:15;28639:42;28454:234;:::o;28694:366::-;28836:3;28857:67;28921:2;28916:3;28857:67;:::i;:::-;28850:74;;28933:93;29022:3;28933:93;:::i;:::-;29051:2;29046:3;29042:12;29035:19;;28694:366;;;:::o;29066:419::-;29232:4;29270:2;29259:9;29255:18;29247:26;;29319:9;29313:4;29309:20;29305:1;29294:9;29290:17;29283:47;29347:131;29473:4;29347:131;:::i;:::-;29339:139;;29066:419;;;:::o;29491:148::-;29593:11;29630:3;29615:18;;29491:148;;;;:::o;29645:377::-;29751:3;29779:39;29812:5;29779:39;:::i;:::-;29834:89;29916:6;29911:3;29834:89;:::i;:::-;29827:96;;29932:52;29977:6;29972:3;29965:4;29958:5;29954:16;29932:52;:::i;:::-;30009:6;30004:3;30000:16;29993:23;;29755:267;29645:377;;;;:::o;30028:435::-;30208:3;30230:95;30321:3;30312:6;30230:95;:::i;:::-;30223:102;;30342:95;30433:3;30424:6;30342:95;:::i;:::-;30335:102;;30454:3;30447:10;;30028:435;;;;;:::o;30469:225::-;30609:34;30605:1;30597:6;30593:14;30586:58;30678:8;30673:2;30665:6;30661:15;30654:33;30469:225;:::o;30700:366::-;30842:3;30863:67;30927:2;30922:3;30863:67;:::i;:::-;30856:74;;30939:93;31028:3;30939:93;:::i;:::-;31057:2;31052:3;31048:12;31041:19;;30700:366;;;:::o;31072:419::-;31238:4;31276:2;31265:9;31261:18;31253:26;;31325:9;31319:4;31315:20;31311:1;31300:9;31296:17;31289:47;31353:131;31479:4;31353:131;:::i;:::-;31345:139;;31072:419;;;:::o;31497:231::-;31637:34;31633:1;31625:6;31621:14;31614:58;31706:14;31701:2;31693:6;31689:15;31682:39;31497:231;:::o;31734:366::-;31876:3;31897:67;31961:2;31956:3;31897:67;:::i;:::-;31890:74;;31973:93;32062:3;31973:93;:::i;:::-;32091:2;32086:3;32082:12;32075:19;;31734:366;;;:::o;32106:419::-;32272:4;32310:2;32299:9;32295:18;32287:26;;32359:9;32353:4;32349:20;32345:1;32334:9;32330:17;32323:47;32387:131;32513:4;32387:131;:::i;:::-;32379:139;;32106:419;;;:::o;32531:228::-;32671:34;32667:1;32659:6;32655:14;32648:58;32740:11;32735:2;32727:6;32723:15;32716:36;32531:228;:::o;32765:366::-;32907:3;32928:67;32992:2;32987:3;32928:67;:::i;:::-;32921:74;;33004:93;33093:3;33004:93;:::i;:::-;33122:2;33117:3;33113:12;33106:19;;32765:366;;;:::o;33137:419::-;33303:4;33341:2;33330:9;33326:18;33318:26;;33390:9;33384:4;33380:20;33376:1;33365:9;33361:17;33354:47;33418:131;33544:4;33418:131;:::i;:::-;33410:139;;33137:419;;;:::o;33562:223::-;33702:34;33698:1;33690:6;33686:14;33679:58;33771:6;33766:2;33758:6;33754:15;33747:31;33562:223;:::o;33791:366::-;33933:3;33954:67;34018:2;34013:3;33954:67;:::i;:::-;33947:74;;34030:93;34119:3;34030:93;:::i;:::-;34148:2;34143:3;34139:12;34132:19;;33791:366;;;:::o;34163:419::-;34329:4;34367:2;34356:9;34352:18;34344:26;;34416:9;34410:4;34406:20;34402:1;34391:9;34387:17;34380:47;34444:131;34570:4;34444:131;:::i;:::-;34436:139;;34163:419;;;:::o;34588:191::-;34628:4;34648:20;34666:1;34648:20;:::i;:::-;34643:25;;34682:20;34700:1;34682:20;:::i;:::-;34677:25;;34721:1;34718;34715:8;34712:34;;;34726:18;;:::i;:::-;34712:34;34771:1;34768;34764:9;34756:17;;34588:191;;;;:::o;34785:305::-;34825:3;34844:20;34862:1;34844:20;:::i;:::-;34839:25;;34878:20;34896:1;34878:20;:::i;:::-;34873:25;;35032:1;34964:66;34960:74;34957:1;34954:81;34951:107;;;35038:18;;:::i;:::-;34951:107;35082:1;35079;35075:9;35068:16;;34785:305;;;;:::o;35096:237::-;35236:34;35232:1;35224:6;35220:14;35213:58;35305:20;35300:2;35292:6;35288:15;35281:45;35096:237;:::o;35339:366::-;35481:3;35502:67;35566:2;35561:3;35502:67;:::i;:::-;35495:74;;35578:93;35667:3;35578:93;:::i;:::-;35696:2;35691:3;35687:12;35680:19;;35339:366;;;:::o;35711:419::-;35877:4;35915:2;35904:9;35900:18;35892:26;;35964:9;35958:4;35954:20;35950:1;35939:9;35935:17;35928:47;35992:131;36118:4;35992:131;:::i;:::-;35984:139;;35711:419;;;:::o;36136:180::-;36184:77;36181:1;36174:88;36281:4;36278:1;36271:15;36305:4;36302:1;36295:15;36322:185;36362:1;36379:20;36397:1;36379:20;:::i;:::-;36374:25;;36413:20;36431:1;36413:20;:::i;:::-;36408:25;;36452:1;36442:35;;36457:18;;:::i;:::-;36442:35;36499:1;36496;36492:9;36487:14;;36322:185;;;;:::o;36513:176::-;36545:1;36562:20;36580:1;36562:20;:::i;:::-;36557:25;;36596:20;36614:1;36596:20;:::i;:::-;36591:25;;36635:1;36625:35;;36640:18;;:::i;:::-;36625:35;36681:1;36678;36674:9;36669:14;;36513:176;;;;:::o;36695:98::-;36746:6;36780:5;36774:12;36764:22;;36695:98;;;:::o;36799:168::-;36882:11;36916:6;36911:3;36904:19;36956:4;36951:3;36947:14;36932:29;;36799:168;;;;:::o;36973:360::-;37059:3;37087:38;37119:5;37087:38;:::i;:::-;37141:70;37204:6;37199:3;37141:70;:::i;:::-;37134:77;;37220:52;37265:6;37260:3;37253:4;37246:5;37242:16;37220:52;:::i;:::-;37297:29;37319:6;37297:29;:::i;:::-;37292:3;37288:39;37281:46;;37063:270;36973:360;;;;:::o;37339:640::-;37534:4;37572:3;37561:9;37557:19;37549:27;;37586:71;37654:1;37643:9;37639:17;37630:6;37586:71;:::i;:::-;37667:72;37735:2;37724:9;37720:18;37711:6;37667:72;:::i;:::-;37749;37817:2;37806:9;37802:18;37793:6;37749:72;:::i;:::-;37868:9;37862:4;37858:20;37853:2;37842:9;37838:18;37831:48;37896:76;37967:4;37958:6;37896:76;:::i;:::-;37888:84;;37339:640;;;;;;;:::o;37985:141::-;38041:5;38072:6;38066:13;38057:22;;38088:32;38114:5;38088:32;:::i;:::-;37985:141;;;;:::o;38132:349::-;38201:6;38250:2;38238:9;38229:7;38225:23;38221:32;38218:119;;;38256:79;;:::i;:::-;38218:119;38376:1;38401:63;38456:7;38447:6;38436:9;38432:22;38401:63;:::i;:::-;38391:73;;38347:127;38132:349;;;;:::o;38487:182::-;38627:34;38623:1;38615:6;38611:14;38604:58;38487:182;:::o;38675:366::-;38817:3;38838:67;38902:2;38897:3;38838:67;:::i;:::-;38831:74;;38914:93;39003:3;38914:93;:::i;:::-;39032:2;39027:3;39023:12;39016:19;;38675:366;;;:::o;39047:419::-;39213:4;39251:2;39240:9;39236:18;39228:26;;39300:9;39294:4;39290:20;39286:1;39275:9;39271:17;39264:47;39328:131;39454:4;39328:131;:::i;:::-;39320:139;;39047:419;;;:::o;39472:178::-;39612:30;39608:1;39600:6;39596:14;39589:54;39472:178;:::o;39656:366::-;39798:3;39819:67;39883:2;39878:3;39819:67;:::i;:::-;39812:74;;39895:93;39984:3;39895:93;:::i;:::-;40013:2;40008:3;40004:12;39997:19;;39656:366;;;:::o;40028:419::-;40194:4;40232:2;40221:9;40217:18;40209:26;;40281:9;40275:4;40271:20;40267:1;40256:9;40252:17;40245:47;40309:131;40435:4;40309:131;:::i;:::-;40301:139;;40028:419;;;:::o;40453:180::-;40501:77;40498:1;40491:88;40598:4;40595:1;40588:15;40622:4;40619:1;40612:15

Swarm Source

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