ETH Price: $2,389.71 (+2.22%)

Token

Rogue Society Minis (RSM)
 

Overview

Max Total Supply

1,617 RSM

Holders

292

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
*❤️miami.eth
Balance
1 RSM
0x9303a433a1d9379d9f62d2b6c314569fa27f23c0
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
RogueSocietyMinis

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

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

// SPDX-License-Identifier: MIT

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/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/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;
        // solhint-disable-next-line no-inline-assembly
        assembly { size := extcodesize(account) }
        return size > 0;
    }

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

        // solhint-disable-next-line avoid-low-level-calls, avoid-call-value
        (bool success, ) = recipient.call{ value: amount }("");
        require(success, "Address: unable to send value, recipient may have reverted");
    }

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

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

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

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

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

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

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

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

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

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

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

    function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) {
        if (success) {
            return returndata;
        } else {
            // Look for revert reason and bubble it up if present
            if (returndata.length > 0) {
                // The easiest way to bubble the revert reason is using memory via assembly

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

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

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



pragma solidity ^0.8.0;

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

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

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

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

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

}

// 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/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}. Empty by default, can be overriden
     * in child contracts.
     */
    function _baseURI() internal view virtual returns (string memory) {
        return "";
    }

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved) public virtual override {
        require(operator != _msgSender(), "ERC721: approve to caller");

        _operatorApprovals[_msgSender()][operator] = approved;
        emit ApprovalForAll(_msgSender(), operator, approved);
    }

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

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

        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override {
        require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved");
        _safeTransfer(from, to, tokenId, _data);
    }

    /**
     * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients
     * are aware of the ERC721 protocol to prevent tokens from being forever locked.
     *
     * `_data` is additional data, it has no specified format and it is sent in call to `to`.
     *
     * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g.
     * implement alternative mechanisms to perform token transfer, such as signature-based.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `tokenId` token must exist and be owned by `from`.
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer.
     *
     * Emits a {Transfer} event.
     */
    function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual {
        _transfer(from, to, tokenId);
        require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

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

    /**
     * @dev Returns whether `spender` is allowed to manage `tokenId`.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) {
        require(_exists(tokenId), "ERC721: operator query for nonexistent token");
        address owner = ERC721.ownerOf(tokenId);
        return (spender == owner || getApproved(tokenId) == spender || isApprovedForAll(owner, spender));
    }

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

    /**
     * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is
     * forwarded in {IERC721Receiver-onERC721Received} to contract recipients.
     */
    function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual {
        _mint(to, tokenId);
        require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer");
    }

    /**
     * @dev Mints `tokenId` and transfers it to `to`.
     *
     * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible
     *
     * Requirements:
     *
     * - `tokenId` must not exist.
     * - `to` cannot be the zero address.
     *
     * Emits a {Transfer} event.
     */
    function _mint(address to, uint256 tokenId) internal virtual {
        require(to != address(0), "ERC721: mint to the zero address");
        require(!_exists(tokenId), "ERC721: token already minted");

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

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

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

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

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

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

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

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

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *  As opposed to {transferFrom}, this imposes no restrictions on msg.sender.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(address from, address to, uint256 tokenId) internal virtual {
        require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own");
        require(to != address(0), "ERC721: transfer to the zero address");

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address.
     * The call is not executed if the target address is not a contract.
     *
     * @param from address representing the previous owner of the given token ID
     * @param to target address that will receive the tokens
     * @param tokenId uint256 ID of the token to be transferred
     * @param _data bytes optional data to send along with the call
     * @return bool whether the call correctly returned the expected magic value
     */
    function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data)
        private returns (bool)
    {
        if (to.isContract()) {
            try IERC721Receiver(to).onERC721Received(_msgSender(), from, tokenId, _data) returns (bytes4 retval) {
                return retval == IERC721Receiver(to).onERC721Received.selector;
            } catch (bytes memory reason) {
                if (reason.length == 0) {
                    revert("ERC721: transfer to non ERC721Receiver implementer");
                } else {
                    // solhint-disable-next-line no-inline-assembly
                    assembly {
                        revert(add(32, reason), mload(reason))
                    }
                }
            }
        } else {
            return true;
        }
    }

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

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

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

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

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

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

// File: contracts/RSM.sol


pragma solidity ^0.8.0;



abstract contract RSB {
  function ownerOf(uint256 tokenId) public virtual view returns (address);
  function balanceOf(address owner) external virtual view returns (uint256 balance);
}

contract RogueSocietyMinis is ERC721Enumerable, Ownable {  
  RSB private rsb;

  bool public saleIsActive = false;
  uint256 public maxMinis;
  string private baseURI;

  constructor(
    string memory name,
    string memory symbol,
    uint256 maxNftSupply,
    address dependentContractAddress
  ) ERC721(name, symbol) {
    maxMinis = maxNftSupply;
    rsb = RSB(dependentContractAddress);
  }

  function isMinted(uint256 tokenId) external view returns (bool) {
    require(tokenId <= maxMinis, "tokenId outside collection bounds");

    return _exists(tokenId);
  }

  function _baseURI() internal view override returns (string memory) {
    return baseURI;
  }
  
  function setBaseURI(string memory uri) public onlyOwner {
    baseURI = uri;
  }

  function flipSaleState() public onlyOwner {
    saleIsActive = !saleIsActive;
  }

  function claimMini(uint256 rsbTokenId) public {
    require(saleIsActive, "Sale must be active to mint a Mini");
    require(totalSupply() <= maxMinis, "Purchase would exceed max supply of Minis");
    require(rsbTokenId <= maxMinis, "Requested tokenId exceeds upper bound");
    require(rsb.ownerOf(rsbTokenId) == msg.sender, "Must own the Rogue Bot for requested tokenId to mint a Mini");
    
    _safeMint(msg.sender, rsbTokenId);
  }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"name","type":"string"},{"internalType":"string","name":"symbol","type":"string"},{"internalType":"uint256","name":"maxNftSupply","type":"uint256"},{"internalType":"address","name":"dependentContractAddress","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"rsbTokenId","type":"uint256"}],"name":"claimMini","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"flipSaleState","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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"isMinted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxMinis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":[],"name":"saleIsActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"uri","type":"string"}],"name":"setBaseURI","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"}]

60806040526000600b60146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b5060405162004296380380620042968339818101604052810190620000529190620002ef565b838381600090805190602001906200006c92919062000193565b5080600190805190602001906200008592919062000193565b50505060006200009a6200018b60201b60201c565b905080600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35081600c8190555080600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050505062000595565b600033905090565b828054620001a19062000472565b90600052602060002090601f016020900481019282620001c5576000855562000211565b82601f10620001e057805160ff191683800117855562000211565b8280016001018555821562000211579182015b8281111562000210578251825591602001919060010190620001f3565b5b50905062000220919062000224565b5090565b5b808211156200023f57600081600090555060010162000225565b5090565b60006200025a6200025484620003c8565b6200039f565b90508281526020810184848401111562000279576200027862000541565b5b620002868482856200043c565b509392505050565b6000815190506200029f8162000561565b92915050565b600082601f830112620002bd57620002bc6200053c565b5b8151620002cf84826020860162000243565b91505092915050565b600081519050620002e9816200057b565b92915050565b600080600080608085870312156200030c576200030b6200054b565b5b600085015167ffffffffffffffff8111156200032d576200032c62000546565b5b6200033b87828801620002a5565b945050602085015167ffffffffffffffff8111156200035f576200035e62000546565b5b6200036d87828801620002a5565b93505060406200038087828801620002d8565b925050606062000393878288016200028e565b91505092959194509250565b6000620003ab620003be565b9050620003b98282620004a8565b919050565b6000604051905090565b600067ffffffffffffffff821115620003e657620003e56200050d565b5b620003f18262000550565b9050602081019050919050565b60006200040b8262000412565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b838110156200045c5780820151818401526020810190506200043f565b838111156200046c576000848401525b50505050565b600060028204905060018216806200048b57607f821691505b60208210811415620004a257620004a1620004de565b5b50919050565b620004b38262000550565b810181811067ffffffffffffffff82111715620004d557620004d46200050d565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b6200056c81620003fe565b81146200057857600080fd5b50565b620005868162000432565b81146200059257600080fd5b50565b613cf180620005a56000396000f3fe608060405234801561001057600080fd5b50600436106101735760003560e01c806355f804b3116100de578063a22cb46511610097578063e985e9c511610071578063e985e9c51461044a578063eb8d24441461047a578063f1c6d7a214610498578063f2fde38b146104b457610173565b8063a22cb465146103e2578063b88d4fde146103fe578063c87b56dd1461041a57610173565b806355f804b3146103205780636352211e1461033c57806370a082311461036c578063715018a61461039c5780638da5cb5b146103a657806395d89b41146103c457610173565b80632f745c59116101305780632f745c591461024c57806333c41a901461027c57806334918dfd146102ac578063367451b5146102b657806342842e0e146102d45780634f6ccce7146102f057610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806318160ddd1461021257806323b872dd14610230575b600080fd5b610192600480360381019061018d91906128ff565b6104d0565b60405161019f9190612e4f565b60405180910390f35b6101b061054a565b6040516101bd9190612e6a565b60405180910390f35b6101e060048036038101906101db91906129a2565b6105dc565b6040516101ed9190612de8565b60405180910390f35b610210600480360381019061020b91906128bf565b610661565b005b61021a610779565b604051610227919061316c565b60405180910390f35b61024a600480360381019061024591906127a9565b610786565b005b610266600480360381019061026191906128bf565b6107e6565b604051610273919061316c565b60405180910390f35b610296600480360381019061029191906129a2565b61088b565b6040516102a39190612e4f565b60405180910390f35b6102b46108e2565b005b6102be61098a565b6040516102cb919061316c565b60405180910390f35b6102ee60048036038101906102e991906127a9565b610990565b005b61030a600480360381019061030591906129a2565b6109b0565b604051610317919061316c565b60405180910390f35b61033a60048036038101906103359190612959565b610a21565b005b610356600480360381019061035191906129a2565b610ab7565b6040516103639190612de8565b60405180910390f35b6103866004803603810190610381919061270f565b610b69565b604051610393919061316c565b60405180910390f35b6103a4610c21565b005b6103ae610d5e565b6040516103bb9190612de8565b60405180910390f35b6103cc610d88565b6040516103d99190612e6a565b60405180910390f35b6103fc60048036038101906103f7919061287f565b610e1a565b005b610418600480360381019061041391906127fc565b610f9b565b005b610434600480360381019061042f91906129a2565b610ffd565b6040516104419190612e6a565b60405180910390f35b610464600480360381019061045f9190612769565b6110a4565b6040516104719190612e4f565b60405180910390f35b610482611138565b60405161048f9190612e4f565b60405180910390f35b6104b260048036038101906104ad91906129a2565b61114b565b005b6104ce60048036038101906104c9919061270f565b611350565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105435750610542826114fc565b5b9050919050565b606060008054610559906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610585906133c2565b80156105d25780601f106105a7576101008083540402835291602001916105d2565b820191906000526020600020905b8154815290600101906020018083116105b557829003601f168201915b5050505050905090565b60006105e7826115de565b610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d9061304c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066c82610ab7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d4906130ec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106fc61164a565b73ffffffffffffffffffffffffffffffffffffffff16148061072b575061072a8161072561164a565b6110a4565b5b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190612fcc565b60405180910390fd5b6107748383611652565b505050565b6000600880549050905090565b61079761079161164a565b8261170b565b6107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd9061310c565b60405180910390fd5b6107e18383836117e9565b505050565b60006107f183610b69565b8210610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612eac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600c548211156108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c9906130cc565b60405180910390fd5b6108db826115de565b9050919050565b6108ea61164a565b73ffffffffffffffffffffffffffffffffffffffff16610908610d5e565b73ffffffffffffffffffffffffffffffffffffffff161461095e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109559061306c565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b600c5481565b6109ab83838360405180602001604052806000815250610f9b565b505050565b60006109ba610779565b82106109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f29061312c565b60405180910390fd5b60088281548110610a0f57610a0e61355b565b5b90600052602060002001549050919050565b610a2961164a565b73ffffffffffffffffffffffffffffffffffffffff16610a47610d5e565b73ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a949061306c565b60405180910390fd5b80600d9080519060200190610ab392919061250e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b579061300c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190612fec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c2961164a565b73ffffffffffffffffffffffffffffffffffffffff16610c47610d5e565b73ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c949061306c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d97906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc3906133c2565b8015610e105780601f10610de557610100808354040283529160200191610e10565b820191906000526020600020905b815481529060010190602001808311610df357829003601f168201915b5050505050905090565b610e2261164a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790612f4c565b60405180910390fd5b8060056000610e9d61164a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4a61164a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f8f9190612e4f565b60405180910390a35050565b610fac610fa661164a565b8361170b565b610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe29061310c565b60405180910390fd5b610ff784848484611a45565b50505050565b6060611008826115de565b611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e906130ac565b60405180910390fd5b6000611051611aa1565b90506000815111611071576040518060200160405280600081525061109c565b8061107b84611b33565b60405160200161108c929190612dc4565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60149054906101000a900460ff1681565b600b60149054906101000a900460ff1661119a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111919061314c565b60405180910390fd5b600c546111a5610779565b11156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd90612e8c565b60405180910390fd5b600c5481111561122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290612fac565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161129d919061316c565b60206040518083038186803b1580156112b557600080fd5b505afa1580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed919061273c565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90612f8c565b60405180910390fd5b61134d3382611c94565b50565b61135861164a565b73ffffffffffffffffffffffffffffffffffffffff16611376610d5e565b73ffffffffffffffffffffffffffffffffffffffff16146113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c39061306c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390612eec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806115c757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806115d757506115d682611cb2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116c583610ab7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611716826115de565b611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612f6c565b60405180910390fd5b600061176083610ab7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117cf57508373ffffffffffffffffffffffffffffffffffffffff166117b7846105dc565b73ffffffffffffffffffffffffffffffffffffffff16145b806117e057506117df81856110a4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180982610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061308c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690612f2c565b60405180910390fd5b6118da838383611d1c565b6118e5600082611652565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461193591906132d8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198c9190613251565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611a508484846117e9565b611a5c84848484611e30565b611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290612ecc565b60405180910390fd5b50505050565b6060600d8054611ab0906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054611adc906133c2565b8015611b295780601f10611afe57610100808354040283529160200191611b29565b820191906000526020600020905b815481529060010190602001808311611b0c57829003601f168201915b5050505050905090565b60606000821415611b7b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c8f565b600082905060005b60008214611bad578080611b9690613425565b915050600a82611ba691906132a7565b9150611b83565b60008167ffffffffffffffff811115611bc957611bc861358a565b5b6040519080825280601f01601f191660200182016040528015611bfb5781602001600182028036833780820191505090505b5090505b60008514611c8857600182611c1491906132d8565b9150600a85611c23919061346e565b6030611c2f9190613251565b60f81b818381518110611c4557611c4461355b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c8191906132a7565b9450611bff565b8093505050505b919050565b611cae828260405180602001604052806000815250611fc7565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d27838383612022565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d6a57611d6581612027565b611da9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611da857611da78382612070565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dec57611de7816121dd565b611e2b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e2a57611e2982826122ae565b5b5b505050565b6000611e518473ffffffffffffffffffffffffffffffffffffffff1661232d565b15611fba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e7a61164a565b8786866040518563ffffffff1660e01b8152600401611e9c9493929190612e03565b602060405180830381600087803b158015611eb657600080fd5b505af1925050508015611ee757506040513d601f19601f82011682018060405250810190611ee4919061292c565b60015b611f6a573d8060008114611f17576040519150601f19603f3d011682016040523d82523d6000602084013e611f1c565b606091505b50600081511415611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990612ecc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fbf565b600190505b949350505050565b611fd18383612340565b611fde6000848484611e30565b61201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490612ecc565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161207d84610b69565b61208791906132d8565b905060006007600084815260200190815260200160002054905081811461216c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506121f191906132d8565b90506000600960008481526020019081526020016000205490506000600883815481106122215761222061355b565b5b9060005260206000200154905080600883815481106122435761224261355b565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806122925761229161352c565b5b6001900381819060005260206000200160009055905550505050565b60006122b983610b69565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a79061302c565b60405180910390fd5b6123b9816115de565b156123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090612f0c565b60405180910390fd5b61240560008383611d1c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124559190613251565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461251a906133c2565b90600052602060002090601f01602090048101928261253c5760008555612583565b82601f1061255557805160ff1916838001178555612583565b82800160010185558215612583579182015b82811115612582578251825591602001919060010190612567565b5b5090506125909190612594565b5090565b5b808211156125ad576000816000905550600101612595565b5090565b60006125c46125bf846131ac565b613187565b9050828152602081018484840111156125e0576125df6135be565b5b6125eb848285613380565b509392505050565b6000612606612601846131dd565b613187565b905082815260208101848484011115612622576126216135be565b5b61262d848285613380565b509392505050565b60008135905061264481613c5f565b92915050565b60008151905061265981613c5f565b92915050565b60008135905061266e81613c76565b92915050565b60008135905061268381613c8d565b92915050565b60008151905061269881613c8d565b92915050565b600082601f8301126126b3576126b26135b9565b5b81356126c38482602086016125b1565b91505092915050565b600082601f8301126126e1576126e06135b9565b5b81356126f18482602086016125f3565b91505092915050565b60008135905061270981613ca4565b92915050565b600060208284031215612725576127246135c8565b5b600061273384828501612635565b91505092915050565b600060208284031215612752576127516135c8565b5b60006127608482850161264a565b91505092915050565b600080604083850312156127805761277f6135c8565b5b600061278e85828601612635565b925050602061279f85828601612635565b9150509250929050565b6000806000606084860312156127c2576127c16135c8565b5b60006127d086828701612635565b93505060206127e186828701612635565b92505060406127f2868287016126fa565b9150509250925092565b60008060008060808587031215612816576128156135c8565b5b600061282487828801612635565b945050602061283587828801612635565b9350506040612846878288016126fa565b925050606085013567ffffffffffffffff811115612867576128666135c3565b5b6128738782880161269e565b91505092959194509250565b60008060408385031215612896576128956135c8565b5b60006128a485828601612635565b92505060206128b58582860161265f565b9150509250929050565b600080604083850312156128d6576128d56135c8565b5b60006128e485828601612635565b92505060206128f5858286016126fa565b9150509250929050565b600060208284031215612915576129146135c8565b5b600061292384828501612674565b91505092915050565b600060208284031215612942576129416135c8565b5b600061295084828501612689565b91505092915050565b60006020828403121561296f5761296e6135c8565b5b600082013567ffffffffffffffff81111561298d5761298c6135c3565b5b612999848285016126cc565b91505092915050565b6000602082840312156129b8576129b76135c8565b5b60006129c6848285016126fa565b91505092915050565b6129d88161330c565b82525050565b6129e78161331e565b82525050565b60006129f88261320e565b612a028185613224565b9350612a1281856020860161338f565b612a1b816135cd565b840191505092915050565b6000612a3182613219565b612a3b8185613235565b9350612a4b81856020860161338f565b612a54816135cd565b840191505092915050565b6000612a6a82613219565b612a748185613246565b9350612a8481856020860161338f565b80840191505092915050565b6000612a9d602983613235565b9150612aa8826135de565b604082019050919050565b6000612ac0602b83613235565b9150612acb8261362d565b604082019050919050565b6000612ae3603283613235565b9150612aee8261367c565b604082019050919050565b6000612b06602683613235565b9150612b11826136cb565b604082019050919050565b6000612b29601c83613235565b9150612b348261371a565b602082019050919050565b6000612b4c602483613235565b9150612b5782613743565b604082019050919050565b6000612b6f601983613235565b9150612b7a82613792565b602082019050919050565b6000612b92602c83613235565b9150612b9d826137bb565b604082019050919050565b6000612bb5603b83613235565b9150612bc08261380a565b604082019050919050565b6000612bd8602583613235565b9150612be382613859565b604082019050919050565b6000612bfb603883613235565b9150612c06826138a8565b604082019050919050565b6000612c1e602a83613235565b9150612c29826138f7565b604082019050919050565b6000612c41602983613235565b9150612c4c82613946565b604082019050919050565b6000612c64602083613235565b9150612c6f82613995565b602082019050919050565b6000612c87602c83613235565b9150612c92826139be565b604082019050919050565b6000612caa602083613235565b9150612cb582613a0d565b602082019050919050565b6000612ccd602983613235565b9150612cd882613a36565b604082019050919050565b6000612cf0602f83613235565b9150612cfb82613a85565b604082019050919050565b6000612d13602183613235565b9150612d1e82613ad4565b604082019050919050565b6000612d36602183613235565b9150612d4182613b23565b604082019050919050565b6000612d59603183613235565b9150612d6482613b72565b604082019050919050565b6000612d7c602c83613235565b9150612d8782613bc1565b604082019050919050565b6000612d9f602283613235565b9150612daa82613c10565b604082019050919050565b612dbe81613376565b82525050565b6000612dd08285612a5f565b9150612ddc8284612a5f565b91508190509392505050565b6000602082019050612dfd60008301846129cf565b92915050565b6000608082019050612e1860008301876129cf565b612e2560208301866129cf565b612e326040830185612db5565b8181036060830152612e4481846129ed565b905095945050505050565b6000602082019050612e6460008301846129de565b92915050565b60006020820190508181036000830152612e848184612a26565b905092915050565b60006020820190508181036000830152612ea581612a90565b9050919050565b60006020820190508181036000830152612ec581612ab3565b9050919050565b60006020820190508181036000830152612ee581612ad6565b9050919050565b60006020820190508181036000830152612f0581612af9565b9050919050565b60006020820190508181036000830152612f2581612b1c565b9050919050565b60006020820190508181036000830152612f4581612b3f565b9050919050565b60006020820190508181036000830152612f6581612b62565b9050919050565b60006020820190508181036000830152612f8581612b85565b9050919050565b60006020820190508181036000830152612fa581612ba8565b9050919050565b60006020820190508181036000830152612fc581612bcb565b9050919050565b60006020820190508181036000830152612fe581612bee565b9050919050565b6000602082019050818103600083015261300581612c11565b9050919050565b6000602082019050818103600083015261302581612c34565b9050919050565b6000602082019050818103600083015261304581612c57565b9050919050565b6000602082019050818103600083015261306581612c7a565b9050919050565b6000602082019050818103600083015261308581612c9d565b9050919050565b600060208201905081810360008301526130a581612cc0565b9050919050565b600060208201905081810360008301526130c581612ce3565b9050919050565b600060208201905081810360008301526130e581612d06565b9050919050565b6000602082019050818103600083015261310581612d29565b9050919050565b6000602082019050818103600083015261312581612d4c565b9050919050565b6000602082019050818103600083015261314581612d6f565b9050919050565b6000602082019050818103600083015261316581612d92565b9050919050565b60006020820190506131816000830184612db5565b92915050565b60006131916131a2565b905061319d82826133f4565b919050565b6000604051905090565b600067ffffffffffffffff8211156131c7576131c661358a565b5b6131d0826135cd565b9050602081019050919050565b600067ffffffffffffffff8211156131f8576131f761358a565b5b613201826135cd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061325c82613376565b915061326783613376565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329c5761329b61349f565b5b828201905092915050565b60006132b282613376565b91506132bd83613376565b9250826132cd576132cc6134ce565b5b828204905092915050565b60006132e382613376565b91506132ee83613376565b9250828210156133015761330061349f565b5b828203905092915050565b600061331782613356565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133ad578082015181840152602081019050613392565b838111156133bc576000848401525b50505050565b600060028204905060018216806133da57607f821691505b602082108114156133ee576133ed6134fd565b5b50919050565b6133fd826135cd565b810181811067ffffffffffffffff8211171561341c5761341b61358a565b5b80604052505050565b600061343082613376565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134635761346261349f565b5b600182019050919050565b600061347982613376565b915061348483613376565b925082613494576134936134ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204d696e69730000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d757374206f776e2074686520526f67756520426f7420666f7220726571756560008201527f7374656420746f6b656e496420746f206d696e742061204d696e690000000000602082015250565b7f52657175657374656420746f6b656e496420657863656564732075707065722060008201527f626f756e64000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e742061204d6960008201527f6e69000000000000000000000000000000000000000000000000000000000000602082015250565b613c688161330c565b8114613c7357600080fd5b50565b613c7f8161331e565b8114613c8a57600080fd5b50565b613c968161332a565b8114613ca157600080fd5b50565b613cad81613376565b8114613cb857600080fd5b5056fea264697066735822122057ea7965c10259512a6255d5be505220c10e237736ca3796c82d5463e254976964736f6c63430008070033000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000003da1000000000000000000000000c6735852e181a55f736e9db62831dc63ef8c449a0000000000000000000000000000000000000000000000000000000000000013526f67756520536f6369657479204d696e697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352534d0000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101735760003560e01c806355f804b3116100de578063a22cb46511610097578063e985e9c511610071578063e985e9c51461044a578063eb8d24441461047a578063f1c6d7a214610498578063f2fde38b146104b457610173565b8063a22cb465146103e2578063b88d4fde146103fe578063c87b56dd1461041a57610173565b806355f804b3146103205780636352211e1461033c57806370a082311461036c578063715018a61461039c5780638da5cb5b146103a657806395d89b41146103c457610173565b80632f745c59116101305780632f745c591461024c57806333c41a901461027c57806334918dfd146102ac578063367451b5146102b657806342842e0e146102d45780634f6ccce7146102f057610173565b806301ffc9a71461017857806306fdde03146101a8578063081812fc146101c6578063095ea7b3146101f657806318160ddd1461021257806323b872dd14610230575b600080fd5b610192600480360381019061018d91906128ff565b6104d0565b60405161019f9190612e4f565b60405180910390f35b6101b061054a565b6040516101bd9190612e6a565b60405180910390f35b6101e060048036038101906101db91906129a2565b6105dc565b6040516101ed9190612de8565b60405180910390f35b610210600480360381019061020b91906128bf565b610661565b005b61021a610779565b604051610227919061316c565b60405180910390f35b61024a600480360381019061024591906127a9565b610786565b005b610266600480360381019061026191906128bf565b6107e6565b604051610273919061316c565b60405180910390f35b610296600480360381019061029191906129a2565b61088b565b6040516102a39190612e4f565b60405180910390f35b6102b46108e2565b005b6102be61098a565b6040516102cb919061316c565b60405180910390f35b6102ee60048036038101906102e991906127a9565b610990565b005b61030a600480360381019061030591906129a2565b6109b0565b604051610317919061316c565b60405180910390f35b61033a60048036038101906103359190612959565b610a21565b005b610356600480360381019061035191906129a2565b610ab7565b6040516103639190612de8565b60405180910390f35b6103866004803603810190610381919061270f565b610b69565b604051610393919061316c565b60405180910390f35b6103a4610c21565b005b6103ae610d5e565b6040516103bb9190612de8565b60405180910390f35b6103cc610d88565b6040516103d99190612e6a565b60405180910390f35b6103fc60048036038101906103f7919061287f565b610e1a565b005b610418600480360381019061041391906127fc565b610f9b565b005b610434600480360381019061042f91906129a2565b610ffd565b6040516104419190612e6a565b60405180910390f35b610464600480360381019061045f9190612769565b6110a4565b6040516104719190612e4f565b60405180910390f35b610482611138565b60405161048f9190612e4f565b60405180910390f35b6104b260048036038101906104ad91906129a2565b61114b565b005b6104ce60048036038101906104c9919061270f565b611350565b005b60007f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806105435750610542826114fc565b5b9050919050565b606060008054610559906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610585906133c2565b80156105d25780601f106105a7576101008083540402835291602001916105d2565b820191906000526020600020905b8154815290600101906020018083116105b557829003601f168201915b5050505050905090565b60006105e7826115de565b610626576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161061d9061304c565b60405180910390fd5b6004600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600061066c82610ab7565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156106dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106d4906130ec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166106fc61164a565b73ffffffffffffffffffffffffffffffffffffffff16148061072b575061072a8161072561164a565b6110a4565b5b61076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190612fcc565b60405180910390fd5b6107748383611652565b505050565b6000600880549050905090565b61079761079161164a565b8261170b565b6107d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107cd9061310c565b60405180910390fd5b6107e18383836117e9565b505050565b60006107f183610b69565b8210610832576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082990612eac565b60405180910390fd5b600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002054905092915050565b6000600c548211156108d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108c9906130cc565b60405180910390fd5b6108db826115de565b9050919050565b6108ea61164a565b73ffffffffffffffffffffffffffffffffffffffff16610908610d5e565b73ffffffffffffffffffffffffffffffffffffffff161461095e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109559061306c565b60405180910390fd5b600b60149054906101000a900460ff1615600b60146101000a81548160ff021916908315150217905550565b600c5481565b6109ab83838360405180602001604052806000815250610f9b565b505050565b60006109ba610779565b82106109fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109f29061312c565b60405180910390fd5b60088281548110610a0f57610a0e61355b565b5b90600052602060002001549050919050565b610a2961164a565b73ffffffffffffffffffffffffffffffffffffffff16610a47610d5e565b73ffffffffffffffffffffffffffffffffffffffff1614610a9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a949061306c565b60405180910390fd5b80600d9080519060200190610ab392919061250e565b5050565b6000806002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610b60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b579061300c565b60405180910390fd5b80915050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610bda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bd190612fec565b60405180910390fd5b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610c2961164a565b73ffffffffffffffffffffffffffffffffffffffff16610c47610d5e565b73ffffffffffffffffffffffffffffffffffffffff1614610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c949061306c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060018054610d97906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054610dc3906133c2565b8015610e105780601f10610de557610100808354040283529160200191610e10565b820191906000526020600020905b815481529060010190602001808311610df357829003601f168201915b5050505050905090565b610e2261164a565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610e90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e8790612f4c565b60405180910390fd5b8060056000610e9d61164a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16610f4a61164a565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051610f8f9190612e4f565b60405180910390a35050565b610fac610fa661164a565b8361170b565b610feb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fe29061310c565b60405180910390fd5b610ff784848484611a45565b50505050565b6060611008826115de565b611047576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161103e906130ac565b60405180910390fd5b6000611051611aa1565b90506000815111611071576040518060200160405280600081525061109c565b8061107b84611b33565b60405160200161108c929190612dc4565b6040516020818303038152906040525b915050919050565b6000600560008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600b60149054906101000a900460ff1681565b600b60149054906101000a900460ff1661119a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111919061314c565b60405180910390fd5b600c546111a5610779565b11156111e6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111dd90612e8c565b60405180910390fd5b600c5481111561122b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161122290612fac565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff16600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16636352211e836040518263ffffffff1660e01b815260040161129d919061316c565b60206040518083038186803b1580156112b557600080fd5b505afa1580156112c9573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ed919061273c565b73ffffffffffffffffffffffffffffffffffffffff1614611343576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133a90612f8c565b60405180910390fd5b61134d3382611c94565b50565b61135861164a565b73ffffffffffffffffffffffffffffffffffffffff16611376610d5e565b73ffffffffffffffffffffffffffffffffffffffff16146113cc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c39061306c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561143c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161143390612eec565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806115c757507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806115d757506115d682611cb2565b5b9050919050565b60008073ffffffffffffffffffffffffffffffffffffffff166002600084815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614159050919050565b600033905090565b816004600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff166116c583610ab7565b73ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000611716826115de565b611755576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161174c90612f6c565b60405180910390fd5b600061176083610ab7565b90508073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614806117cf57508373ffffffffffffffffffffffffffffffffffffffff166117b7846105dc565b73ffffffffffffffffffffffffffffffffffffffff16145b806117e057506117df81856110a4565b5b91505092915050565b8273ffffffffffffffffffffffffffffffffffffffff1661180982610ab7565b73ffffffffffffffffffffffffffffffffffffffff161461185f576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118569061308c565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156118cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118c690612f2c565b60405180910390fd5b6118da838383611d1c565b6118e5600082611652565b6001600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461193591906132d8565b925050819055506001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461198c9190613251565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4505050565b611a508484846117e9565b611a5c84848484611e30565b611a9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9290612ecc565b60405180910390fd5b50505050565b6060600d8054611ab0906133c2565b80601f0160208091040260200160405190810160405280929190818152602001828054611adc906133c2565b8015611b295780601f10611afe57610100808354040283529160200191611b29565b820191906000526020600020905b815481529060010190602001808311611b0c57829003601f168201915b5050505050905090565b60606000821415611b7b576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050611c8f565b600082905060005b60008214611bad578080611b9690613425565b915050600a82611ba691906132a7565b9150611b83565b60008167ffffffffffffffff811115611bc957611bc861358a565b5b6040519080825280601f01601f191660200182016040528015611bfb5781602001600182028036833780820191505090505b5090505b60008514611c8857600182611c1491906132d8565b9150600a85611c23919061346e565b6030611c2f9190613251565b60f81b818381518110611c4557611c4461355b565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85611c8191906132a7565b9450611bff565b8093505050505b919050565b611cae828260405180602001604052806000815250611fc7565b5050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b611d27838383612022565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415611d6a57611d6581612027565b611da9565b8173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614611da857611da78382612070565b5b5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dec57611de7816121dd565b611e2b565b8273ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614611e2a57611e2982826122ae565b5b5b505050565b6000611e518473ffffffffffffffffffffffffffffffffffffffff1661232d565b15611fba578373ffffffffffffffffffffffffffffffffffffffff1663150b7a02611e7a61164a565b8786866040518563ffffffff1660e01b8152600401611e9c9493929190612e03565b602060405180830381600087803b158015611eb657600080fd5b505af1925050508015611ee757506040513d601f19601f82011682018060405250810190611ee4919061292c565b60015b611f6a573d8060008114611f17576040519150601f19603f3d011682016040523d82523d6000602084013e611f1c565b606091505b50600081511415611f62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5990612ecc565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050611fbf565b600190505b949350505050565b611fd18383612340565b611fde6000848484611e30565b61201d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161201490612ecc565b60405180910390fd5b505050565b505050565b6008805490506009600083815260200190815260200160002081905550600881908060018154018082558091505060019003906000526020600020016000909190919091505550565b6000600161207d84610b69565b61208791906132d8565b905060006007600084815260200190815260200160002054905081811461216c576000600660008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002054905080600660008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600084815260200190815260200160002081905550816007600083815260200190815260200160002081905550505b6007600084815260200190815260200160002060009055600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008381526020019081526020016000206000905550505050565b600060016008805490506121f191906132d8565b90506000600960008481526020019081526020016000205490506000600883815481106122215761222061355b565b5b9060005260206000200154905080600883815481106122435761224261355b565b5b9060005260206000200181905550816009600083815260200190815260200160002081905550600960008581526020019081526020016000206000905560088054806122925761229161352c565b5b6001900381819060005260206000200160009055905550505050565b60006122b983610b69565b905081600660008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600083815260200190815260200160002081905550806007600084815260200190815260200160002081905550505050565b600080823b905060008111915050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156123b0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a79061302c565b60405180910390fd5b6123b9816115de565b156123f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123f090612f0c565b60405180910390fd5b61240560008383611d1c565b6001600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546124559190613251565b92505081905550816002600083815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808273ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a45050565b82805461251a906133c2565b90600052602060002090601f01602090048101928261253c5760008555612583565b82601f1061255557805160ff1916838001178555612583565b82800160010185558215612583579182015b82811115612582578251825591602001919060010190612567565b5b5090506125909190612594565b5090565b5b808211156125ad576000816000905550600101612595565b5090565b60006125c46125bf846131ac565b613187565b9050828152602081018484840111156125e0576125df6135be565b5b6125eb848285613380565b509392505050565b6000612606612601846131dd565b613187565b905082815260208101848484011115612622576126216135be565b5b61262d848285613380565b509392505050565b60008135905061264481613c5f565b92915050565b60008151905061265981613c5f565b92915050565b60008135905061266e81613c76565b92915050565b60008135905061268381613c8d565b92915050565b60008151905061269881613c8d565b92915050565b600082601f8301126126b3576126b26135b9565b5b81356126c38482602086016125b1565b91505092915050565b600082601f8301126126e1576126e06135b9565b5b81356126f18482602086016125f3565b91505092915050565b60008135905061270981613ca4565b92915050565b600060208284031215612725576127246135c8565b5b600061273384828501612635565b91505092915050565b600060208284031215612752576127516135c8565b5b60006127608482850161264a565b91505092915050565b600080604083850312156127805761277f6135c8565b5b600061278e85828601612635565b925050602061279f85828601612635565b9150509250929050565b6000806000606084860312156127c2576127c16135c8565b5b60006127d086828701612635565b93505060206127e186828701612635565b92505060406127f2868287016126fa565b9150509250925092565b60008060008060808587031215612816576128156135c8565b5b600061282487828801612635565b945050602061283587828801612635565b9350506040612846878288016126fa565b925050606085013567ffffffffffffffff811115612867576128666135c3565b5b6128738782880161269e565b91505092959194509250565b60008060408385031215612896576128956135c8565b5b60006128a485828601612635565b92505060206128b58582860161265f565b9150509250929050565b600080604083850312156128d6576128d56135c8565b5b60006128e485828601612635565b92505060206128f5858286016126fa565b9150509250929050565b600060208284031215612915576129146135c8565b5b600061292384828501612674565b91505092915050565b600060208284031215612942576129416135c8565b5b600061295084828501612689565b91505092915050565b60006020828403121561296f5761296e6135c8565b5b600082013567ffffffffffffffff81111561298d5761298c6135c3565b5b612999848285016126cc565b91505092915050565b6000602082840312156129b8576129b76135c8565b5b60006129c6848285016126fa565b91505092915050565b6129d88161330c565b82525050565b6129e78161331e565b82525050565b60006129f88261320e565b612a028185613224565b9350612a1281856020860161338f565b612a1b816135cd565b840191505092915050565b6000612a3182613219565b612a3b8185613235565b9350612a4b81856020860161338f565b612a54816135cd565b840191505092915050565b6000612a6a82613219565b612a748185613246565b9350612a8481856020860161338f565b80840191505092915050565b6000612a9d602983613235565b9150612aa8826135de565b604082019050919050565b6000612ac0602b83613235565b9150612acb8261362d565b604082019050919050565b6000612ae3603283613235565b9150612aee8261367c565b604082019050919050565b6000612b06602683613235565b9150612b11826136cb565b604082019050919050565b6000612b29601c83613235565b9150612b348261371a565b602082019050919050565b6000612b4c602483613235565b9150612b5782613743565b604082019050919050565b6000612b6f601983613235565b9150612b7a82613792565b602082019050919050565b6000612b92602c83613235565b9150612b9d826137bb565b604082019050919050565b6000612bb5603b83613235565b9150612bc08261380a565b604082019050919050565b6000612bd8602583613235565b9150612be382613859565b604082019050919050565b6000612bfb603883613235565b9150612c06826138a8565b604082019050919050565b6000612c1e602a83613235565b9150612c29826138f7565b604082019050919050565b6000612c41602983613235565b9150612c4c82613946565b604082019050919050565b6000612c64602083613235565b9150612c6f82613995565b602082019050919050565b6000612c87602c83613235565b9150612c92826139be565b604082019050919050565b6000612caa602083613235565b9150612cb582613a0d565b602082019050919050565b6000612ccd602983613235565b9150612cd882613a36565b604082019050919050565b6000612cf0602f83613235565b9150612cfb82613a85565b604082019050919050565b6000612d13602183613235565b9150612d1e82613ad4565b604082019050919050565b6000612d36602183613235565b9150612d4182613b23565b604082019050919050565b6000612d59603183613235565b9150612d6482613b72565b604082019050919050565b6000612d7c602c83613235565b9150612d8782613bc1565b604082019050919050565b6000612d9f602283613235565b9150612daa82613c10565b604082019050919050565b612dbe81613376565b82525050565b6000612dd08285612a5f565b9150612ddc8284612a5f565b91508190509392505050565b6000602082019050612dfd60008301846129cf565b92915050565b6000608082019050612e1860008301876129cf565b612e2560208301866129cf565b612e326040830185612db5565b8181036060830152612e4481846129ed565b905095945050505050565b6000602082019050612e6460008301846129de565b92915050565b60006020820190508181036000830152612e848184612a26565b905092915050565b60006020820190508181036000830152612ea581612a90565b9050919050565b60006020820190508181036000830152612ec581612ab3565b9050919050565b60006020820190508181036000830152612ee581612ad6565b9050919050565b60006020820190508181036000830152612f0581612af9565b9050919050565b60006020820190508181036000830152612f2581612b1c565b9050919050565b60006020820190508181036000830152612f4581612b3f565b9050919050565b60006020820190508181036000830152612f6581612b62565b9050919050565b60006020820190508181036000830152612f8581612b85565b9050919050565b60006020820190508181036000830152612fa581612ba8565b9050919050565b60006020820190508181036000830152612fc581612bcb565b9050919050565b60006020820190508181036000830152612fe581612bee565b9050919050565b6000602082019050818103600083015261300581612c11565b9050919050565b6000602082019050818103600083015261302581612c34565b9050919050565b6000602082019050818103600083015261304581612c57565b9050919050565b6000602082019050818103600083015261306581612c7a565b9050919050565b6000602082019050818103600083015261308581612c9d565b9050919050565b600060208201905081810360008301526130a581612cc0565b9050919050565b600060208201905081810360008301526130c581612ce3565b9050919050565b600060208201905081810360008301526130e581612d06565b9050919050565b6000602082019050818103600083015261310581612d29565b9050919050565b6000602082019050818103600083015261312581612d4c565b9050919050565b6000602082019050818103600083015261314581612d6f565b9050919050565b6000602082019050818103600083015261316581612d92565b9050919050565b60006020820190506131816000830184612db5565b92915050565b60006131916131a2565b905061319d82826133f4565b919050565b6000604051905090565b600067ffffffffffffffff8211156131c7576131c661358a565b5b6131d0826135cd565b9050602081019050919050565b600067ffffffffffffffff8211156131f8576131f761358a565b5b613201826135cd565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061325c82613376565b915061326783613376565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111561329c5761329b61349f565b5b828201905092915050565b60006132b282613376565b91506132bd83613376565b9250826132cd576132cc6134ce565b5b828204905092915050565b60006132e382613376565b91506132ee83613376565b9250828210156133015761330061349f565b5b828203905092915050565b600061331782613356565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156133ad578082015181840152602081019050613392565b838111156133bc576000848401525b50505050565b600060028204905060018216806133da57607f821691505b602082108114156133ee576133ed6134fd565b5b50919050565b6133fd826135cd565b810181811067ffffffffffffffff8211171561341c5761341b61358a565b5b80604052505050565b600061343082613376565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156134635761346261349f565b5b600182019050919050565b600061347982613376565b915061348483613376565b925082613494576134936134ce565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f507572636861736520776f756c6420657863656564206d617820737570706c7960008201527f206f66204d696e69730000000000000000000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a206f776e657220696e646578206f7560008201527f74206f6620626f756e6473000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560008201527f63656976657220696d706c656d656e7465720000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20746f6b656e20616c7265616479206d696e74656400000000600082015250565b7f4552433732313a207472616e7366657220746f20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f766520746f2063616c6c657200000000000000600082015250565b7f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4d757374206f776e2074686520526f67756520426f7420666f7220726571756560008201527f7374656420746f6b656e496420746f206d696e742061204d696e690000000000602082015250565b7f52657175657374656420746f6b656e496420657863656564732075707065722060008201527f626f756e64000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760008201527f6e6572206e6f7220617070726f76656420666f7220616c6c0000000000000000602082015250565b7f4552433732313a2062616c616e636520717565727920666f7220746865207a6560008201527f726f206164647265737300000000000000000000000000000000000000000000602082015250565b7f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460008201527f656e7420746f6b656e0000000000000000000000000000000000000000000000602082015250565b7f4552433732313a206d696e7420746f20746865207a65726f2061646472657373600082015250565b7f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860008201527f697374656e7420746f6b656e0000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960008201527f73206e6f74206f776e0000000000000000000000000000000000000000000000602082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f746f6b656e4964206f75747369646520636f6c6c656374696f6e20626f756e6460008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a20617070726f76616c20746f2063757272656e74206f776e6560008201527f7200000000000000000000000000000000000000000000000000000000000000602082015250565b7f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f766564000000000000000000000000000000602082015250565b7f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60008201527f7574206f6620626f756e64730000000000000000000000000000000000000000602082015250565b7f53616c65206d7573742062652061637469766520746f206d696e742061204d6960008201527f6e69000000000000000000000000000000000000000000000000000000000000602082015250565b613c688161330c565b8114613c7357600080fd5b50565b613c7f8161331e565b8114613c8a57600080fd5b50565b613c968161332a565b8114613ca157600080fd5b50565b613cad81613376565b8114613cb857600080fd5b5056fea264697066735822122057ea7965c10259512a6255d5be505220c10e237736ca3796c82d5463e254976964736f6c63430008070033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000003da1000000000000000000000000c6735852e181a55f736e9db62831dc63ef8c449a0000000000000000000000000000000000000000000000000000000000000013526f67756520536f6369657479204d696e697300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000352534d0000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : name (string): Rogue Society Minis
Arg [1] : symbol (string): RSM
Arg [2] : maxNftSupply (uint256): 15777
Arg [3] : dependentContractAddress (address): 0xc6735852E181A55F736e9Db62831Dc63ef8C449a

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000003da1
Arg [3] : 000000000000000000000000c6735852e181a55f736e9db62831dc63ef8c449a
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000013
Arg [5] : 526f67756520536f6369657479204d696e697300000000000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [7] : 52534d0000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

43005:1326:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;34324:237;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21529:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22989:221;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22526:397;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34977:113;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23879:305;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34645:256;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43424:174;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43794:83;;;:::i;:::-;;43127:23;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24255:151;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;35167:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43706:82;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21223:239;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20953:208;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;42196:148;;;:::i;:::-;;41545:87;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;21698:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23282:295;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24477:285;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;21873:360;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23648:164;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43090:32;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43883:445;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;42499:244;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;34324:237;34426:4;34465:35;34450:50;;;:11;:50;;;;:103;;;;34517:36;34541:11;34517:23;:36::i;:::-;34450:103;34443:110;;34324:237;;;:::o;21529:100::-;21583:13;21616:5;21609:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21529:100;:::o;22989:221::-;23065:7;23093:16;23101:7;23093;:16::i;:::-;23085:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;23178:15;:24;23194:7;23178:24;;;;;;;;;;;;;;;;;;;;;23171:31;;22989:221;;;:::o;22526:397::-;22607:13;22623:23;22638:7;22623:14;:23::i;:::-;22607:39;;22671:5;22665:11;;:2;:11;;;;22657:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;22751:5;22735:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;22760:37;22777:5;22784:12;:10;:12::i;:::-;22760:16;:37::i;:::-;22735:62;22727:154;;;;;;;;;;;;:::i;:::-;;;;;;;;;22894:21;22903:2;22907:7;22894:8;:21::i;:::-;22596:327;22526:397;;:::o;34977:113::-;35038:7;35065:10;:17;;;;35058:24;;34977:113;:::o;23879:305::-;24040:41;24059:12;:10;:12::i;:::-;24073:7;24040:18;:41::i;:::-;24032:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24148:28;24158:4;24164:2;24168:7;24148:9;:28::i;:::-;23879:305;;;:::o;34645:256::-;34742:7;34778:23;34795:5;34778:16;:23::i;:::-;34770:5;:31;34762:87;;;;;;;;;;;;:::i;:::-;;;;;;;;;34867:12;:19;34880:5;34867:19;;;;;;;;;;;;;;;:26;34887:5;34867:26;;;;;;;;;;;;34860:33;;34645:256;;;;:::o;43424:174::-;43482:4;43514:8;;43503:7;:19;;43495:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;43576:16;43584:7;43576;:16::i;:::-;43569:23;;43424:174;;;:::o;43794:83::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43859:12:::1;;;;;;;;;;;43858:13;43843:12;;:28;;;;;;;;;;;;;;;;;;43794:83::o:0;43127:23::-;;;;:::o;24255:151::-;24359:39;24376:4;24382:2;24386:7;24359:39;;;;;;;;;;;;:16;:39::i;:::-;24255:151;;;:::o;35167:233::-;35242:7;35278:30;:28;:30::i;:::-;35270:5;:38;35262:95;;;;;;;;;;;;:::i;:::-;;;;;;;;;35375:10;35386:5;35375:17;;;;;;;;:::i;:::-;;;;;;;;;;35368:24;;35167:233;;;:::o;43706:82::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;43779:3:::1;43769:7;:13;;;;;;;;;;;;:::i;:::-;;43706:82:::0;:::o;21223:239::-;21295:7;21315:13;21331:7;:16;21339:7;21331:16;;;;;;;;;;;;;;;;;;;;;21315:32;;21383:1;21366:19;;:5;:19;;;;21358:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;21449:5;21442:12;;;21223:239;;;:::o;20953:208::-;21025:7;21070:1;21053:19;;:5;:19;;;;21045:74;;;;;;;;;;;;:::i;:::-;;;;;;;;;21137:9;:16;21147:5;21137:16;;;;;;;;;;;;;;;;21130:23;;20953:208;;;:::o;42196:148::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42303:1:::1;42266:40;;42287:6;;;;;;;;;;;42266:40;;;;;;;;;;;;42334:1;42317:6;;:19;;;;;;;;;;;;;;;;;;42196:148::o:0;41545:87::-;41591:7;41618:6;;;;;;;;;;;41611:13;;41545:87;:::o;21698:104::-;21754:13;21787:7;21780:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21698:104;:::o;23282:295::-;23397:12;:10;:12::i;:::-;23385:24;;:8;:24;;;;23377:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;23497:8;23452:18;:32;23471:12;:10;:12::i;:::-;23452:32;;;;;;;;;;;;;;;:42;23485:8;23452:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;23550:8;23521:48;;23536:12;:10;:12::i;:::-;23521:48;;;23560:8;23521:48;;;;;;:::i;:::-;;;;;;;;23282:295;;:::o;24477:285::-;24609:41;24628:12;:10;:12::i;:::-;24642:7;24609:18;:41::i;:::-;24601:103;;;;;;;;;;;;:::i;:::-;;;;;;;;;24715:39;24729:4;24735:2;24739:7;24748:5;24715:13;:39::i;:::-;24477:285;;;;:::o;21873:360::-;21946:13;21980:16;21988:7;21980;:16::i;:::-;21972:76;;;;;;;;;;;;:::i;:::-;;;;;;;;;22061:21;22085:10;:8;:10::i;:::-;22061:34;;22137:1;22119:7;22113:21;:25;:112;;;;;;;;;;;;;;;;;22178:7;22187:18;:7;:16;:18::i;:::-;22161:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;22113:112;22106:119;;;21873:360;;;:::o;23648:164::-;23745:4;23769:18;:25;23788:5;23769:25;;;;;;;;;;;;;;;:35;23795:8;23769:35;;;;;;;;;;;;;;;;;;;;;;;;;23762:42;;23648:164;;;;:::o;43090:32::-;;;;;;;;;;;;;:::o;43883:445::-;43944:12;;;;;;;;;;;43936:59;;;;;;;;;;;;:::i;:::-;;;;;;;;;44027:8;;44010:13;:11;:13::i;:::-;:25;;44002:79;;;;;;;;;;;;:::i;:::-;;;;;;;;;44110:8;;44096:10;:22;;44088:72;;;;;;;;;;;;:::i;:::-;;;;;;;;;44202:10;44175:37;;:3;;;;;;;;;;;:11;;;44187:10;44175:23;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;:37;;;44167:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;44289:33;44299:10;44311;44289:9;:33::i;:::-;43883:445;:::o;42499:244::-;41776:12;:10;:12::i;:::-;41765:23;;:7;:5;:7::i;:::-;:23;;;41757:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;42608:1:::1;42588:22;;:8;:22;;;;42580:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;42698:8;42669:38;;42690:6;;;;;;;;;;;42669:38;;;;;;;;;;;;42727:8;42718:6;;:17;;;;;;;;;;;;;;;;;;42499:244:::0;:::o;20597:292::-;20699:4;20738:25;20723:40;;;:11;:40;;;;:105;;;;20795:33;20780:48;;;:11;:48;;;;20723:105;:158;;;;20845:36;20869:11;20845:23;:36::i;:::-;20723:158;20716:165;;20597:292;;;:::o;26229:127::-;26294:4;26346:1;26318:30;;:7;:16;26326:7;26318:16;;;;;;;;;;;;;;;;;;;;;:30;;;;26311:37;;26229:127;;;:::o;15885:98::-;15938:7;15965:10;15958:17;;15885:98;:::o;30106:174::-;30208:2;30181:15;:24;30197:7;30181:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;30264:7;30260:2;30226:46;;30235:23;30250:7;30235:14;:23::i;:::-;30226:46;;;;;;;;;;;;30106:174;;:::o;26523:348::-;26616:4;26641:16;26649:7;26641;:16::i;:::-;26633:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;26717:13;26733:23;26748:7;26733:14;:23::i;:::-;26717:39;;26786:5;26775:16;;:7;:16;;;:51;;;;26819:7;26795:31;;:20;26807:7;26795:11;:20::i;:::-;:31;;;26775:51;:87;;;;26830:32;26847:5;26854:7;26830:16;:32::i;:::-;26775:87;26767:96;;;26523:348;;;;:::o;29444:544::-;29569:4;29542:31;;:23;29557:7;29542:14;:23::i;:::-;:31;;;29534:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;29652:1;29638:16;;:2;:16;;;;29630:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;29708:39;29729:4;29735:2;29739:7;29708:20;:39::i;:::-;29812:29;29829:1;29833:7;29812:8;:29::i;:::-;29873:1;29854:9;:15;29864:4;29854:15;;;;;;;;;;;;;;;;:20;;;;;;;:::i;:::-;;;;;;;;29902:1;29885:9;:13;29895:2;29885:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;29933:2;29914:7;:16;29922:7;29914:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;29972:7;29968:2;29953:27;;29962:4;29953:27;;;;;;;;;;;;29444:544;;;:::o;25644:272::-;25758:28;25768:4;25774:2;25778:7;25758:9;:28::i;:::-;25805:48;25828:4;25834:2;25838:7;25847:5;25805:22;:48::i;:::-;25797:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;25644:272;;;;:::o;43604:94::-;43656:13;43685:7;43678:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;43604:94;:::o;16540:723::-;16596:13;16826:1;16817:5;:10;16813:53;;;16844:10;;;;;;;;;;;;;;;;;;;;;16813:53;16876:12;16891:5;16876:20;;16907:14;16932:78;16947:1;16939:4;:9;16932:78;;16965:8;;;;;:::i;:::-;;;;16996:2;16988:10;;;;;:::i;:::-;;;16932:78;;;17020:19;17052:6;17042:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;17020:39;;17070:154;17086:1;17077:5;:10;17070:154;;17114:1;17104:11;;;;;:::i;:::-;;;17181:2;17173:5;:10;;;;:::i;:::-;17160:2;:24;;;;:::i;:::-;17147:39;;17130:6;17137;17130:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;17210:2;17201:11;;;;;:::i;:::-;;;17070:154;;;17248:6;17234:21;;;;;16540:723;;;;:::o;27213:110::-;27289:26;27299:2;27303:7;27289:26;;;;;;;;;;;;:9;:26::i;:::-;27213:110;;:::o;19095:157::-;19180:4;19219:25;19204:40;;;:11;:40;;;;19197:47;;19095:157;;;:::o;36013:555::-;36123:45;36150:4;36156:2;36160:7;36123:26;:45::i;:::-;36201:1;36185:18;;:4;:18;;;36181:187;;;36220:40;36252:7;36220:31;:40::i;:::-;36181:187;;;36290:2;36282:10;;:4;:10;;;36278:90;;36309:47;36342:4;36348:7;36309:32;:47::i;:::-;36278:90;36181:187;36396:1;36382:16;;:2;:16;;;36378:183;;;36415:45;36452:7;36415:36;:45::i;:::-;36378:183;;;36488:4;36482:10;;:2;:10;;;36478:83;;36509:40;36537:2;36541:7;36509:27;:40::i;:::-;36478:83;36378:183;36013:555;;;:::o;30845:843::-;30966:4;30992:15;:2;:13;;;:15::i;:::-;30988:693;;;31044:2;31028:36;;;31065:12;:10;:12::i;:::-;31079:4;31085:7;31094:5;31028:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;31024:602;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31291:1;31274:6;:13;:18;31270:341;;;31317:60;;;;;;;;;;:::i;:::-;;;;;;;;31270:341;31561:6;31555:13;31546:6;31542:2;31538:15;31531:38;31024:602;31161:45;;;31151:55;;;:6;:55;;;;31144:62;;;;;30988:693;31665:4;31658:11;;30845:843;;;;;;;:::o;27550:250::-;27646:18;27652:2;27656:7;27646:5;:18::i;:::-;27683:54;27714:1;27718:2;27722:7;27731:5;27683:22;:54::i;:::-;27675:117;;;;;;;;;;;;:::i;:::-;;;;;;;;;27550:250;;;:::o;32301:93::-;;;;:::o;37291:164::-;37395:10;:17;;;;37368:15;:24;37384:7;37368:24;;;;;;;;;;;:44;;;;37423:10;37439:7;37423:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37291:164;:::o;38082:988::-;38348:22;38398:1;38373:22;38390:4;38373:16;:22::i;:::-;:26;;;;:::i;:::-;38348:51;;38410:18;38431:17;:26;38449:7;38431:26;;;;;;;;;;;;38410:47;;38578:14;38564:10;:28;38560:328;;38609:19;38631:12;:18;38644:4;38631:18;;;;;;;;;;;;;;;:34;38650:14;38631:34;;;;;;;;;;;;38609:56;;38715:11;38682:12;:18;38695:4;38682:18;;;;;;;;;;;;;;;:30;38701:10;38682:30;;;;;;;;;;;:44;;;;38832:10;38799:17;:30;38817:11;38799:30;;;;;;;;;;;:43;;;;38594:294;38560:328;38984:17;:26;39002:7;38984:26;;;;;;;;;;;38977:33;;;39028:12;:18;39041:4;39028:18;;;;;;;;;;;;;;;:34;39047:14;39028:34;;;;;;;;;;;39021:41;;;38163:907;;38082:988;;:::o;39365:1079::-;39618:22;39663:1;39643:10;:17;;;;:21;;;;:::i;:::-;39618:46;;39675:18;39696:15;:24;39712:7;39696:24;;;;;;;;;;;;39675:45;;40047:19;40069:10;40080:14;40069:26;;;;;;;;:::i;:::-;;;;;;;;;;40047:48;;40133:11;40108:10;40119;40108:22;;;;;;;;:::i;:::-;;;;;;;;;:36;;;;40244:10;40213:15;:28;40229:11;40213:28;;;;;;;;;;;:41;;;;40385:15;:24;40401:7;40385:24;;;;;;;;;;;40378:31;;;40420:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;39436:1008;;;39365:1079;:::o;36869:221::-;36954:14;36971:20;36988:2;36971:16;:20::i;:::-;36954:37;;37029:7;37002:12;:16;37015:2;37002:16;;;;;;;;;;;;;;;:24;37019:6;37002:24;;;;;;;;;;;:34;;;;37076:6;37047:17;:26;37065:7;37047:26;;;;;;;;;;;:35;;;;36943:147;36869:221;;:::o;8002:422::-;8062:4;8270:12;8381:7;8369:20;8361:28;;8415:1;8408:4;:8;8401:15;;;8002:422;;;:::o;28136:382::-;28230:1;28216:16;;:2;:16;;;;28208:61;;;;;;;;;;;;:::i;:::-;;;;;;;;;28289:16;28297:7;28289;:16::i;:::-;28288:17;28280:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;28351:45;28380:1;28384:2;28388:7;28351:20;:45::i;:::-;28426:1;28409:9;:13;28419:2;28409:13;;;;;;;;;;;;;;;;:18;;;;;;;:::i;:::-;;;;;;;;28457:2;28438:7;:16;28446:7;28438:16;;;;;;;;;;;;:21;;;;;;;;;;;;;;;;;;28502:7;28498:2;28477:33;;28494:1;28477:33;;;;;;;;;;;;28136:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:143::-;1043:5;1074:6;1068:13;1059:22;;1090:33;1117:5;1090:33;:::i;:::-;986:143;;;;:::o;1135:133::-;1178:5;1216:6;1203:20;1194:29;;1232:30;1256:5;1232:30;:::i;:::-;1135:133;;;;:::o;1274:137::-;1319:5;1357:6;1344:20;1335:29;;1373:32;1399:5;1373:32;:::i;:::-;1274:137;;;;:::o;1417:141::-;1473:5;1504:6;1498:13;1489:22;;1520:32;1546:5;1520:32;:::i;:::-;1417:141;;;;:::o;1577:338::-;1632:5;1681:3;1674:4;1666:6;1662:17;1658:27;1648:122;;1689:79;;:::i;:::-;1648:122;1806:6;1793:20;1831:78;1905:3;1897:6;1890:4;1882:6;1878:17;1831:78;:::i;:::-;1822:87;;1638:277;1577:338;;;;:::o;1935:340::-;1991:5;2040:3;2033:4;2025:6;2021:17;2017:27;2007:122;;2048:79;;:::i;:::-;2007:122;2165:6;2152:20;2190:79;2265:3;2257:6;2250:4;2242:6;2238:17;2190:79;:::i;:::-;2181:88;;1997:278;1935:340;;;;:::o;2281:139::-;2327:5;2365:6;2352:20;2343:29;;2381:33;2408:5;2381:33;:::i;:::-;2281:139;;;;:::o;2426:329::-;2485:6;2534:2;2522:9;2513:7;2509:23;2505:32;2502:119;;;2540:79;;:::i;:::-;2502:119;2660:1;2685:53;2730:7;2721:6;2710:9;2706:22;2685:53;:::i;:::-;2675:63;;2631:117;2426:329;;;;:::o;2761:351::-;2831:6;2880:2;2868:9;2859:7;2855:23;2851:32;2848:119;;;2886:79;;:::i;:::-;2848:119;3006:1;3031:64;3087:7;3078:6;3067:9;3063:22;3031:64;:::i;:::-;3021:74;;2977:128;2761:351;;;;:::o;3118:474::-;3186:6;3194;3243:2;3231:9;3222:7;3218:23;3214:32;3211:119;;;3249:79;;:::i;:::-;3211:119;3369:1;3394:53;3439:7;3430:6;3419:9;3415:22;3394:53;:::i;:::-;3384:63;;3340:117;3496:2;3522:53;3567:7;3558:6;3547:9;3543:22;3522:53;:::i;:::-;3512:63;;3467:118;3118:474;;;;;:::o;3598:619::-;3675:6;3683;3691;3740:2;3728:9;3719:7;3715:23;3711:32;3708:119;;;3746:79;;:::i;:::-;3708:119;3866:1;3891:53;3936:7;3927:6;3916:9;3912:22;3891:53;:::i;:::-;3881:63;;3837:117;3993:2;4019:53;4064:7;4055:6;4044:9;4040:22;4019:53;:::i;:::-;4009:63;;3964:118;4121:2;4147:53;4192:7;4183:6;4172:9;4168:22;4147:53;:::i;:::-;4137:63;;4092:118;3598:619;;;;;:::o;4223:943::-;4318:6;4326;4334;4342;4391:3;4379:9;4370:7;4366:23;4362:33;4359:120;;;4398:79;;:::i;:::-;4359:120;4518:1;4543:53;4588:7;4579:6;4568:9;4564:22;4543:53;:::i;:::-;4533:63;;4489:117;4645:2;4671:53;4716:7;4707:6;4696:9;4692:22;4671:53;:::i;:::-;4661:63;;4616:118;4773:2;4799:53;4844:7;4835:6;4824:9;4820:22;4799:53;:::i;:::-;4789:63;;4744:118;4929:2;4918:9;4914:18;4901:32;4960:18;4952:6;4949:30;4946:117;;;4982:79;;:::i;:::-;4946:117;5087:62;5141:7;5132:6;5121:9;5117:22;5087:62;:::i;:::-;5077:72;;4872:287;4223:943;;;;;;;:::o;5172:468::-;5237:6;5245;5294:2;5282:9;5273:7;5269:23;5265:32;5262:119;;;5300:79;;:::i;:::-;5262:119;5420:1;5445:53;5490:7;5481:6;5470:9;5466:22;5445:53;:::i;:::-;5435:63;;5391:117;5547:2;5573:50;5615:7;5606:6;5595:9;5591:22;5573:50;:::i;:::-;5563:60;;5518:115;5172:468;;;;;:::o;5646:474::-;5714:6;5722;5771:2;5759:9;5750:7;5746:23;5742:32;5739:119;;;5777:79;;:::i;:::-;5739:119;5897:1;5922:53;5967:7;5958:6;5947:9;5943:22;5922:53;:::i;:::-;5912:63;;5868:117;6024:2;6050:53;6095:7;6086:6;6075:9;6071:22;6050:53;:::i;:::-;6040:63;;5995:118;5646:474;;;;;:::o;6126:327::-;6184:6;6233:2;6221:9;6212:7;6208:23;6204:32;6201:119;;;6239:79;;:::i;:::-;6201:119;6359:1;6384:52;6428:7;6419:6;6408:9;6404:22;6384:52;:::i;:::-;6374:62;;6330:116;6126:327;;;;:::o;6459:349::-;6528:6;6577:2;6565:9;6556:7;6552:23;6548:32;6545:119;;;6583:79;;:::i;:::-;6545:119;6703:1;6728:63;6783:7;6774:6;6763:9;6759:22;6728:63;:::i;:::-;6718:73;;6674:127;6459:349;;;;:::o;6814:509::-;6883:6;6932:2;6920:9;6911:7;6907:23;6903:32;6900:119;;;6938:79;;:::i;:::-;6900:119;7086:1;7075:9;7071:17;7058:31;7116:18;7108:6;7105:30;7102:117;;;7138:79;;:::i;:::-;7102:117;7243:63;7298:7;7289:6;7278:9;7274:22;7243:63;:::i;:::-;7233:73;;7029:287;6814:509;;;;:::o;7329:329::-;7388:6;7437:2;7425:9;7416:7;7412:23;7408:32;7405:119;;;7443:79;;:::i;:::-;7405:119;7563:1;7588:53;7633:7;7624:6;7613:9;7609:22;7588:53;:::i;:::-;7578:63;;7534:117;7329:329;;;;:::o;7664:118::-;7751:24;7769:5;7751:24;:::i;:::-;7746:3;7739:37;7664:118;;:::o;7788:109::-;7869:21;7884:5;7869:21;:::i;:::-;7864:3;7857:34;7788:109;;:::o;7903:360::-;7989:3;8017:38;8049:5;8017:38;:::i;:::-;8071:70;8134:6;8129:3;8071:70;:::i;:::-;8064:77;;8150:52;8195:6;8190:3;8183:4;8176:5;8172:16;8150:52;:::i;:::-;8227:29;8249:6;8227:29;:::i;:::-;8222:3;8218:39;8211:46;;7993:270;7903:360;;;;:::o;8269:364::-;8357:3;8385:39;8418:5;8385:39;:::i;:::-;8440:71;8504:6;8499:3;8440:71;:::i;:::-;8433:78;;8520:52;8565:6;8560:3;8553:4;8546:5;8542:16;8520:52;:::i;:::-;8597:29;8619:6;8597:29;:::i;:::-;8592:3;8588:39;8581:46;;8361:272;8269:364;;;;:::o;8639:377::-;8745:3;8773:39;8806:5;8773:39;:::i;:::-;8828:89;8910:6;8905:3;8828:89;:::i;:::-;8821:96;;8926:52;8971:6;8966:3;8959:4;8952:5;8948:16;8926:52;:::i;:::-;9003:6;8998:3;8994:16;8987:23;;8749:267;8639:377;;;;:::o;9022:366::-;9164:3;9185:67;9249:2;9244:3;9185:67;:::i;:::-;9178:74;;9261:93;9350:3;9261:93;:::i;:::-;9379:2;9374:3;9370:12;9363:19;;9022:366;;;:::o;9394:::-;9536:3;9557:67;9621:2;9616:3;9557:67;:::i;:::-;9550:74;;9633:93;9722:3;9633:93;:::i;:::-;9751:2;9746:3;9742:12;9735:19;;9394:366;;;:::o;9766:::-;9908:3;9929:67;9993:2;9988:3;9929:67;:::i;:::-;9922:74;;10005:93;10094:3;10005:93;:::i;:::-;10123:2;10118:3;10114:12;10107:19;;9766:366;;;:::o;10138:::-;10280:3;10301:67;10365:2;10360:3;10301:67;:::i;:::-;10294:74;;10377:93;10466:3;10377:93;:::i;:::-;10495:2;10490:3;10486:12;10479:19;;10138:366;;;:::o;10510:::-;10652:3;10673:67;10737:2;10732:3;10673:67;:::i;:::-;10666:74;;10749:93;10838:3;10749:93;:::i;:::-;10867:2;10862:3;10858:12;10851:19;;10510:366;;;:::o;10882:::-;11024:3;11045:67;11109:2;11104:3;11045:67;:::i;:::-;11038:74;;11121:93;11210:3;11121:93;:::i;:::-;11239:2;11234:3;11230:12;11223:19;;10882:366;;;:::o;11254:::-;11396:3;11417:67;11481:2;11476:3;11417:67;:::i;:::-;11410:74;;11493:93;11582:3;11493:93;:::i;:::-;11611:2;11606:3;11602:12;11595:19;;11254:366;;;:::o;11626:::-;11768:3;11789:67;11853:2;11848:3;11789:67;:::i;:::-;11782:74;;11865:93;11954:3;11865:93;:::i;:::-;11983:2;11978:3;11974:12;11967:19;;11626:366;;;:::o;11998:::-;12140:3;12161:67;12225:2;12220:3;12161:67;:::i;:::-;12154:74;;12237:93;12326:3;12237:93;:::i;:::-;12355:2;12350:3;12346:12;12339:19;;11998:366;;;:::o;12370:::-;12512:3;12533:67;12597:2;12592:3;12533:67;:::i;:::-;12526:74;;12609:93;12698:3;12609:93;:::i;:::-;12727:2;12722:3;12718:12;12711:19;;12370:366;;;:::o;12742:::-;12884:3;12905:67;12969:2;12964:3;12905:67;:::i;:::-;12898:74;;12981:93;13070:3;12981:93;:::i;:::-;13099:2;13094:3;13090:12;13083:19;;12742:366;;;:::o;13114:::-;13256:3;13277:67;13341:2;13336:3;13277:67;:::i;:::-;13270:74;;13353:93;13442:3;13353:93;:::i;:::-;13471:2;13466:3;13462:12;13455:19;;13114:366;;;:::o;13486:::-;13628:3;13649:67;13713:2;13708:3;13649:67;:::i;:::-;13642:74;;13725:93;13814:3;13725:93;:::i;:::-;13843:2;13838:3;13834:12;13827:19;;13486:366;;;:::o;13858:::-;14000:3;14021:67;14085:2;14080:3;14021:67;:::i;:::-;14014:74;;14097:93;14186:3;14097:93;:::i;:::-;14215:2;14210:3;14206:12;14199:19;;13858:366;;;:::o;14230:::-;14372:3;14393:67;14457:2;14452:3;14393:67;:::i;:::-;14386:74;;14469:93;14558:3;14469:93;:::i;:::-;14587:2;14582:3;14578:12;14571:19;;14230:366;;;:::o;14602:::-;14744:3;14765:67;14829:2;14824:3;14765:67;:::i;:::-;14758:74;;14841:93;14930:3;14841:93;:::i;:::-;14959:2;14954:3;14950:12;14943:19;;14602:366;;;:::o;14974:::-;15116:3;15137:67;15201:2;15196:3;15137:67;:::i;:::-;15130:74;;15213:93;15302:3;15213:93;:::i;:::-;15331:2;15326:3;15322:12;15315:19;;14974:366;;;:::o;15346:::-;15488:3;15509:67;15573:2;15568:3;15509:67;:::i;:::-;15502:74;;15585:93;15674:3;15585:93;:::i;:::-;15703:2;15698:3;15694:12;15687:19;;15346:366;;;:::o;15718:::-;15860:3;15881:67;15945:2;15940:3;15881:67;:::i;:::-;15874:74;;15957:93;16046:3;15957:93;:::i;:::-;16075:2;16070:3;16066:12;16059:19;;15718:366;;;:::o;16090:::-;16232:3;16253:67;16317:2;16312:3;16253:67;:::i;:::-;16246:74;;16329:93;16418:3;16329:93;:::i;:::-;16447:2;16442:3;16438:12;16431:19;;16090:366;;;:::o;16462:::-;16604:3;16625:67;16689:2;16684:3;16625:67;:::i;:::-;16618:74;;16701:93;16790:3;16701:93;:::i;:::-;16819:2;16814:3;16810:12;16803:19;;16462:366;;;:::o;16834:::-;16976:3;16997:67;17061:2;17056:3;16997:67;:::i;:::-;16990:74;;17073:93;17162:3;17073:93;:::i;:::-;17191:2;17186:3;17182:12;17175:19;;16834:366;;;:::o;17206:::-;17348:3;17369:67;17433:2;17428:3;17369:67;:::i;:::-;17362:74;;17445:93;17534:3;17445:93;:::i;:::-;17563:2;17558:3;17554:12;17547:19;;17206:366;;;:::o;17578:118::-;17665:24;17683:5;17665:24;:::i;:::-;17660:3;17653:37;17578:118;;:::o;17702:435::-;17882:3;17904:95;17995:3;17986:6;17904:95;:::i;:::-;17897:102;;18016:95;18107:3;18098:6;18016:95;:::i;:::-;18009:102;;18128:3;18121:10;;17702:435;;;;;:::o;18143:222::-;18236:4;18274:2;18263:9;18259:18;18251:26;;18287:71;18355:1;18344:9;18340:17;18331:6;18287:71;:::i;:::-;18143:222;;;;:::o;18371:640::-;18566:4;18604:3;18593:9;18589:19;18581:27;;18618:71;18686:1;18675:9;18671:17;18662:6;18618:71;:::i;:::-;18699:72;18767:2;18756:9;18752:18;18743:6;18699:72;:::i;:::-;18781;18849:2;18838:9;18834:18;18825:6;18781:72;:::i;:::-;18900:9;18894:4;18890:20;18885:2;18874:9;18870:18;18863:48;18928:76;18999:4;18990:6;18928:76;:::i;:::-;18920:84;;18371:640;;;;;;;:::o;19017:210::-;19104:4;19142:2;19131:9;19127:18;19119:26;;19155:65;19217:1;19206:9;19202:17;19193:6;19155:65;:::i;:::-;19017:210;;;;:::o;19233:313::-;19346:4;19384:2;19373:9;19369:18;19361:26;;19433:9;19427:4;19423:20;19419:1;19408:9;19404:17;19397:47;19461:78;19534:4;19525:6;19461:78;:::i;:::-;19453:86;;19233:313;;;;:::o;19552:419::-;19718:4;19756:2;19745:9;19741:18;19733:26;;19805:9;19799:4;19795:20;19791:1;19780:9;19776:17;19769:47;19833:131;19959:4;19833:131;:::i;:::-;19825:139;;19552:419;;;:::o;19977:::-;20143:4;20181:2;20170:9;20166:18;20158:26;;20230:9;20224:4;20220:20;20216:1;20205:9;20201:17;20194:47;20258:131;20384:4;20258:131;:::i;:::-;20250:139;;19977:419;;;:::o;20402:::-;20568:4;20606:2;20595:9;20591:18;20583:26;;20655:9;20649:4;20645:20;20641:1;20630:9;20626:17;20619:47;20683:131;20809:4;20683:131;:::i;:::-;20675:139;;20402:419;;;:::o;20827:::-;20993:4;21031:2;21020:9;21016:18;21008:26;;21080:9;21074:4;21070:20;21066:1;21055:9;21051:17;21044:47;21108:131;21234:4;21108:131;:::i;:::-;21100:139;;20827:419;;;:::o;21252:::-;21418:4;21456:2;21445:9;21441:18;21433:26;;21505:9;21499:4;21495:20;21491:1;21480:9;21476:17;21469:47;21533:131;21659:4;21533:131;:::i;:::-;21525:139;;21252:419;;;:::o;21677:::-;21843:4;21881:2;21870:9;21866:18;21858:26;;21930:9;21924:4;21920:20;21916:1;21905:9;21901:17;21894:47;21958:131;22084:4;21958:131;:::i;:::-;21950:139;;21677:419;;;:::o;22102:::-;22268:4;22306:2;22295:9;22291:18;22283:26;;22355:9;22349:4;22345:20;22341:1;22330:9;22326:17;22319:47;22383:131;22509:4;22383:131;:::i;:::-;22375:139;;22102:419;;;:::o;22527:::-;22693:4;22731:2;22720:9;22716:18;22708:26;;22780:9;22774:4;22770:20;22766:1;22755:9;22751:17;22744:47;22808:131;22934:4;22808:131;:::i;:::-;22800:139;;22527:419;;;:::o;22952:::-;23118:4;23156:2;23145:9;23141:18;23133:26;;23205:9;23199:4;23195:20;23191:1;23180:9;23176:17;23169:47;23233:131;23359:4;23233:131;:::i;:::-;23225:139;;22952:419;;;:::o;23377:::-;23543:4;23581:2;23570:9;23566:18;23558:26;;23630:9;23624:4;23620:20;23616:1;23605:9;23601:17;23594:47;23658:131;23784:4;23658:131;:::i;:::-;23650:139;;23377:419;;;:::o;23802:::-;23968:4;24006:2;23995:9;23991:18;23983:26;;24055:9;24049:4;24045:20;24041:1;24030:9;24026:17;24019:47;24083:131;24209:4;24083:131;:::i;:::-;24075:139;;23802:419;;;:::o;24227:::-;24393:4;24431:2;24420:9;24416:18;24408:26;;24480:9;24474:4;24470:20;24466:1;24455:9;24451:17;24444:47;24508:131;24634:4;24508:131;:::i;:::-;24500:139;;24227:419;;;:::o;24652:::-;24818:4;24856:2;24845:9;24841:18;24833:26;;24905:9;24899:4;24895:20;24891:1;24880:9;24876:17;24869:47;24933:131;25059:4;24933:131;:::i;:::-;24925:139;;24652:419;;;:::o;25077:::-;25243:4;25281:2;25270:9;25266:18;25258:26;;25330:9;25324:4;25320:20;25316:1;25305:9;25301:17;25294:47;25358:131;25484:4;25358:131;:::i;:::-;25350:139;;25077:419;;;:::o;25502:::-;25668:4;25706:2;25695:9;25691:18;25683:26;;25755:9;25749:4;25745:20;25741:1;25730:9;25726:17;25719:47;25783:131;25909:4;25783:131;:::i;:::-;25775:139;;25502:419;;;:::o;25927:::-;26093:4;26131:2;26120:9;26116:18;26108:26;;26180:9;26174:4;26170:20;26166:1;26155:9;26151:17;26144:47;26208:131;26334:4;26208:131;:::i;:::-;26200:139;;25927:419;;;:::o;26352:::-;26518:4;26556:2;26545:9;26541:18;26533:26;;26605:9;26599:4;26595:20;26591:1;26580:9;26576:17;26569:47;26633:131;26759:4;26633:131;:::i;:::-;26625:139;;26352:419;;;:::o;26777:::-;26943:4;26981:2;26970:9;26966:18;26958:26;;27030:9;27024:4;27020:20;27016:1;27005:9;27001:17;26994:47;27058:131;27184:4;27058:131;:::i;:::-;27050:139;;26777:419;;;:::o;27202:::-;27368:4;27406:2;27395:9;27391:18;27383:26;;27455:9;27449:4;27445:20;27441:1;27430:9;27426:17;27419:47;27483:131;27609:4;27483:131;:::i;:::-;27475:139;;27202:419;;;:::o;27627:::-;27793:4;27831:2;27820:9;27816:18;27808:26;;27880:9;27874:4;27870:20;27866:1;27855:9;27851:17;27844:47;27908:131;28034:4;27908:131;:::i;:::-;27900:139;;27627:419;;;:::o;28052:::-;28218:4;28256:2;28245:9;28241:18;28233:26;;28305:9;28299:4;28295:20;28291:1;28280:9;28276:17;28269:47;28333:131;28459:4;28333:131;:::i;:::-;28325:139;;28052:419;;;:::o;28477:::-;28643:4;28681:2;28670:9;28666:18;28658:26;;28730:9;28724:4;28720:20;28716:1;28705:9;28701:17;28694:47;28758:131;28884:4;28758:131;:::i;:::-;28750:139;;28477:419;;;:::o;28902:::-;29068:4;29106:2;29095:9;29091:18;29083:26;;29155:9;29149:4;29145:20;29141:1;29130:9;29126:17;29119:47;29183:131;29309:4;29183:131;:::i;:::-;29175:139;;28902:419;;;:::o;29327:222::-;29420:4;29458:2;29447:9;29443:18;29435:26;;29471:71;29539:1;29528:9;29524:17;29515:6;29471:71;:::i;:::-;29327:222;;;;:::o;29555:129::-;29589:6;29616:20;;:::i;:::-;29606:30;;29645:33;29673:4;29665:6;29645:33;:::i;:::-;29555:129;;;:::o;29690:75::-;29723:6;29756:2;29750:9;29740:19;;29690:75;:::o;29771:307::-;29832:4;29922:18;29914:6;29911:30;29908:56;;;29944:18;;:::i;:::-;29908:56;29982:29;30004:6;29982:29;:::i;:::-;29974:37;;30066:4;30060;30056:15;30048:23;;29771:307;;;:::o;30084:308::-;30146:4;30236:18;30228:6;30225:30;30222:56;;;30258:18;;:::i;:::-;30222:56;30296:29;30318:6;30296:29;:::i;:::-;30288:37;;30380:4;30374;30370:15;30362:23;;30084:308;;;:::o;30398:98::-;30449:6;30483:5;30477:12;30467:22;;30398:98;;;:::o;30502:99::-;30554:6;30588:5;30582:12;30572:22;;30502:99;;;:::o;30607:168::-;30690:11;30724:6;30719:3;30712:19;30764:4;30759:3;30755:14;30740:29;;30607:168;;;;:::o;30781:169::-;30865:11;30899:6;30894:3;30887:19;30939:4;30934:3;30930:14;30915:29;;30781:169;;;;:::o;30956:148::-;31058:11;31095:3;31080:18;;30956:148;;;;:::o;31110:305::-;31150:3;31169:20;31187:1;31169:20;:::i;:::-;31164:25;;31203:20;31221:1;31203:20;:::i;:::-;31198:25;;31357:1;31289:66;31285:74;31282:1;31279:81;31276:107;;;31363:18;;:::i;:::-;31276:107;31407:1;31404;31400:9;31393:16;;31110:305;;;;:::o;31421:185::-;31461:1;31478:20;31496:1;31478:20;:::i;:::-;31473:25;;31512:20;31530:1;31512:20;:::i;:::-;31507:25;;31551:1;31541:35;;31556:18;;:::i;:::-;31541:35;31598:1;31595;31591:9;31586:14;;31421:185;;;;:::o;31612:191::-;31652:4;31672:20;31690:1;31672:20;:::i;:::-;31667:25;;31706:20;31724:1;31706:20;:::i;:::-;31701:25;;31745:1;31742;31739:8;31736:34;;;31750:18;;:::i;:::-;31736:34;31795:1;31792;31788:9;31780:17;;31612:191;;;;:::o;31809:96::-;31846:7;31875:24;31893:5;31875:24;:::i;:::-;31864:35;;31809:96;;;:::o;31911:90::-;31945:7;31988:5;31981:13;31974:21;31963:32;;31911:90;;;:::o;32007:149::-;32043:7;32083:66;32076:5;32072:78;32061:89;;32007:149;;;:::o;32162:126::-;32199:7;32239:42;32232:5;32228:54;32217:65;;32162:126;;;:::o;32294:77::-;32331:7;32360:5;32349:16;;32294:77;;;:::o;32377:154::-;32461:6;32456:3;32451;32438:30;32523:1;32514:6;32509:3;32505:16;32498:27;32377:154;;;:::o;32537:307::-;32605:1;32615:113;32629:6;32626:1;32623:13;32615:113;;;32714:1;32709:3;32705:11;32699:18;32695:1;32690:3;32686:11;32679:39;32651:2;32648:1;32644:10;32639:15;;32615:113;;;32746:6;32743:1;32740:13;32737:101;;;32826:1;32817:6;32812:3;32808:16;32801:27;32737:101;32586:258;32537:307;;;:::o;32850:320::-;32894:6;32931:1;32925:4;32921:12;32911:22;;32978:1;32972:4;32968:12;32999:18;32989:81;;33055:4;33047:6;33043:17;33033:27;;32989:81;33117:2;33109:6;33106:14;33086:18;33083:38;33080:84;;;33136:18;;:::i;:::-;33080:84;32901:269;32850:320;;;:::o;33176:281::-;33259:27;33281:4;33259:27;:::i;:::-;33251:6;33247:40;33389:6;33377:10;33374:22;33353:18;33341:10;33338:34;33335:62;33332:88;;;33400:18;;:::i;:::-;33332:88;33440:10;33436:2;33429:22;33219:238;33176:281;;:::o;33463:233::-;33502:3;33525:24;33543:5;33525:24;:::i;:::-;33516:33;;33571:66;33564:5;33561:77;33558:103;;;33641:18;;:::i;:::-;33558:103;33688:1;33681:5;33677:13;33670:20;;33463:233;;;:::o;33702:176::-;33734:1;33751:20;33769:1;33751:20;:::i;:::-;33746:25;;33785:20;33803:1;33785:20;:::i;:::-;33780:25;;33824:1;33814:35;;33829:18;;:::i;:::-;33814:35;33870:1;33867;33863:9;33858:14;;33702:176;;;;:::o;33884:180::-;33932:77;33929:1;33922:88;34029:4;34026:1;34019:15;34053:4;34050:1;34043:15;34070:180;34118:77;34115:1;34108:88;34215:4;34212:1;34205:15;34239:4;34236:1;34229:15;34256:180;34304:77;34301:1;34294:88;34401:4;34398:1;34391:15;34425:4;34422:1;34415:15;34442:180;34490:77;34487:1;34480:88;34587:4;34584:1;34577:15;34611:4;34608:1;34601:15;34628:180;34676:77;34673:1;34666:88;34773:4;34770:1;34763:15;34797:4;34794:1;34787:15;34814:180;34862:77;34859:1;34852:88;34959:4;34956:1;34949:15;34983:4;34980:1;34973:15;35000:117;35109:1;35106;35099:12;35123:117;35232:1;35229;35222:12;35246:117;35355:1;35352;35345:12;35369:117;35478:1;35475;35468:12;35492:102;35533:6;35584:2;35580:7;35575:2;35568:5;35564:14;35560:28;35550:38;;35492:102;;;:::o;35600:228::-;35740:34;35736:1;35728:6;35724:14;35717:58;35809:11;35804:2;35796:6;35792:15;35785:36;35600:228;:::o;35834:230::-;35974:34;35970:1;35962:6;35958:14;35951:58;36043:13;36038:2;36030:6;36026:15;36019:38;35834:230;:::o;36070:237::-;36210:34;36206:1;36198:6;36194:14;36187:58;36279:20;36274:2;36266:6;36262:15;36255:45;36070:237;:::o;36313:225::-;36453:34;36449:1;36441:6;36437:14;36430:58;36522:8;36517:2;36509:6;36505:15;36498:33;36313:225;:::o;36544:178::-;36684:30;36680:1;36672:6;36668:14;36661:54;36544:178;:::o;36728:223::-;36868:34;36864:1;36856:6;36852:14;36845:58;36937:6;36932:2;36924:6;36920:15;36913:31;36728:223;:::o;36957:175::-;37097:27;37093:1;37085:6;37081:14;37074:51;36957:175;:::o;37138:231::-;37278:34;37274:1;37266:6;37262:14;37255:58;37347:14;37342:2;37334:6;37330:15;37323:39;37138:231;:::o;37375:246::-;37515:34;37511:1;37503:6;37499:14;37492:58;37584:29;37579:2;37571:6;37567:15;37560:54;37375:246;:::o;37627:224::-;37767:34;37763:1;37755:6;37751:14;37744:58;37836:7;37831:2;37823:6;37819:15;37812:32;37627:224;:::o;37857:243::-;37997:34;37993:1;37985:6;37981:14;37974:58;38066:26;38061:2;38053:6;38049:15;38042:51;37857:243;:::o;38106:229::-;38246:34;38242:1;38234:6;38230:14;38223:58;38315:12;38310:2;38302:6;38298:15;38291:37;38106:229;:::o;38341:228::-;38481:34;38477:1;38469:6;38465:14;38458:58;38550:11;38545:2;38537:6;38533:15;38526:36;38341:228;:::o;38575:182::-;38715:34;38711:1;38703:6;38699:14;38692:58;38575:182;:::o;38763:231::-;38903:34;38899:1;38891:6;38887:14;38880:58;38972:14;38967:2;38959:6;38955:15;38948:39;38763:231;:::o;39000:182::-;39140:34;39136:1;39128:6;39124:14;39117:58;39000:182;:::o;39188:228::-;39328:34;39324:1;39316:6;39312:14;39305:58;39397:11;39392:2;39384:6;39380:15;39373:36;39188:228;:::o;39422:234::-;39562:34;39558:1;39550:6;39546:14;39539:58;39631:17;39626:2;39618:6;39614:15;39607:42;39422:234;:::o;39662:220::-;39802:34;39798:1;39790:6;39786:14;39779:58;39871:3;39866:2;39858:6;39854:15;39847:28;39662:220;:::o;39888:::-;40028:34;40024:1;40016:6;40012:14;40005:58;40097:3;40092:2;40084:6;40080:15;40073:28;39888:220;:::o;40114:236::-;40254:34;40250:1;40242:6;40238:14;40231:58;40323:19;40318:2;40310:6;40306:15;40299:44;40114:236;:::o;40356:231::-;40496:34;40492:1;40484:6;40480:14;40473:58;40565:14;40560:2;40552:6;40548:15;40541:39;40356:231;:::o;40593:221::-;40733:34;40729:1;40721:6;40717:14;40710:58;40802:4;40797:2;40789:6;40785:15;40778:29;40593:221;:::o;40820:122::-;40893:24;40911:5;40893:24;:::i;:::-;40886:5;40883:35;40873:63;;40932:1;40929;40922:12;40873:63;40820:122;:::o;40948:116::-;41018:21;41033:5;41018:21;:::i;:::-;41011:5;41008:32;40998:60;;41054:1;41051;41044:12;40998:60;40948:116;:::o;41070:120::-;41142:23;41159:5;41142:23;:::i;:::-;41135:5;41132:34;41122:62;;41180:1;41177;41170:12;41122:62;41070:120;:::o;41196:122::-;41269:24;41287:5;41269:24;:::i;:::-;41262:5;41259:35;41249:63;;41308:1;41305;41298:12;41249:63;41196:122;:::o

Swarm Source

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