ETH Price: $3,330.52 (-1.33%)
Gas: 9 Gwei

Token

RAX x Sky Brown (RAXxSKY)
 

Overview

Max Total Supply

1,000 RAXxSKY

Holders

875

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 RAXxSKY
0x26c1d5c000f7d403865a6c50385f68aee4a1f5ba
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:
Rax

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: NONE

// Sources flattened with hardhat v2.8.4 https://hardhat.org

// File @openzeppelin/contracts/utils/introspection/[email protected]

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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

pragma solidity ^0.8.0;

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

pragma solidity ^0.8.0;

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @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
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

pragma solidity ^0.8.0;

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

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

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

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

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


// File @openzeppelin/contracts/utils/introspection/[email protected]

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

pragma solidity ^0.8.0;

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


// File src/ERC721A.sol

// Creator: Chiru Labs

pragma solidity ^0.8.4;







error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerQueryForNonexistentToken();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

/**
 * @dev Implementation of https://eips.ethereum.org/EIPS/eip-721[ERC721] Non-Fungible Token Standard, including
 * the Metadata extension. Built to optimize for lower gas during batch mints.
 *
 * Assumes serials are sequentially minted starting at _startTokenId() (defaults to 0, e.g. 0, 1, 2, 3..).
 *
 * Assumes that an owner cannot have more than 2**64 - 1 (max value of uint64) of supply.
 *
 * Assumes that the maximum token id cannot exceed 2**256 - 1 (max value of uint256).
 */
contract ERC721A is Context, ERC165, IERC721, IERC721Metadata {
    using Address for address;
    using Strings for uint256;

    // Compiler will pack this into a single 256bit word.
    struct TokenOwnership {
        // The address of the owner.
        address addr;
        // Keeps track of the start time of ownership with minimal overhead for tokenomics.
        uint64 startTimestamp;
        // Whether the token has been burned.
        bool burned;
    }

    // Compiler will pack this into a single 256bit word.
    struct AddressData {
        // Realistically, 2**64-1 is more than enough.
        uint64 balance;
        // Keeps track of mint count with minimal overhead for tokenomics.
        uint64 numberMinted;
        // Keeps track of burn count with minimal overhead for tokenomics.
        uint64 numberBurned;
        // For miscellaneous variable(s) pertaining to the address
        // (e.g. number of whitelist mint slots used).
        // If there are multiple variables, please pack them into a uint64.
        uint64 aux;
    }

    // The tokenId of the next token to be minted.
    uint256 internal _currentIndex;

    // The number of tokens burned.
    uint256 internal _burnCounter;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

    // Mapping from token ID to ownership details
    // An empty struct value does not necessarily mean the token is unowned. See _ownershipOf implementation for details.
    mapping(uint256 => TokenOwnership) internal _ownerships;

    // Mapping owner address to address data
    mapping(address => AddressData) private _addressData;

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

    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
        _currentIndex = _startTokenId();
    }

    /**
     * To change the starting tokenId, please override this function.
     */
    function _startTokenId() internal view virtual returns (uint256) {
        return 0;
    }

    /**
     * @dev Burned tokens are calculated here, use _totalMinted() if you want to count just minted tokens.
     */
    function totalSupply() public view returns (uint256) {
        // Counter underflow is impossible as _burnCounter cannot be incremented
        // more than _currentIndex - _startTokenId() times
        unchecked {
            return _currentIndex - _burnCounter - _startTokenId();
        }
    }

    /**
     * Returns the total amount of tokens minted in the contract.
     */
    function _totalMinted() internal view returns (uint256) {
        // Counter underflow is impossible as _currentIndex does not decrement,
        // and it is initialized to _startTokenId()
        unchecked {
            return _currentIndex - _startTokenId();
        }
    }

    /**
     * @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 override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

    /**
     * Returns the number of tokens minted by `owner`.
     */
    function _numberMinted(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Returns the number of tokens burned by or on behalf of `owner`.
     */
    function _numberBurned(address owner) internal view returns (uint256) {
        return uint256(_addressData[owner].numberBurned);
    }

    /**
     * Returns the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     */
    function _getAux(address owner) internal view returns (uint64) {
        return _addressData[owner].aux;
    }

    /**
     * Sets the auxillary data for `owner`. (e.g. number of whitelist mint slots used).
     * If there are multiple variables, please pack them into a uint64.
     */
    function _setAux(address owner, uint64 aux) internal {
        _addressData[owner].aux = aux;
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function _ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        uint256 curr = tokenId;

        unchecked {
            if (_startTokenId() <= curr && curr < _currentIndex) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (!ownership.burned) {
                    if (ownership.addr != address(0)) {
                        return ownership;
                    }
                    // Invariant:
                    // There will always be an ownership that has an address and is not burned
                    // before an ownership that does not have an address and is not burned.
                    // Hence, curr will not underflow.
                    while (true) {
                        curr--;
                        ownership = _ownerships[curr];
                        if (ownership.addr != address(0)) {
                            return ownership;
                        }
                    }
                }
            }
        }
        revert OwnerQueryForNonexistentToken();
    }

    /**
     * @dev See {IERC721-ownerOf}.
     */
    function ownerOf(uint256 tokenId) public view override returns (address) {
        return _ownershipOf(tokenId).addr;
    }

    /**
     * @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)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

    /**
     * @dev See {IERC721-approve}.
     */
    function approve(address to, uint256 tokenId) public virtual override {
        address owner = ERC721A.ownerOf(tokenId);
        if (to == owner) revert ApprovalToCurrentOwner();

        if (_msgSender() != owner && !isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

    /**
     * @dev See {IERC721-getApproved}.
     */
    function getApproved(uint256 tokenId)
        public
        view
        override
        returns (address)
    {
        if (!_exists(tokenId)) revert ApprovalQueryForNonexistentToken();

        return _tokenApprovals[tokenId];
    }

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

        _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 {
        _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 {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

    /**
     * @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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return
            _startTokenId() <= tokenId &&
            tokenId < _currentIndex &&
            !_ownerships[tokenId].burned;
    }

    function _safeMint(address to, uint256 quantity) internal {
        _safeMint(to, quantity, '');
    }

    /**
     * @dev Safely mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called for each safe transfer.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _safeMint(
        address to,
        uint256 quantity,
        bytes memory _data
    ) internal {
        _mint(to, quantity, _data, true);
    }

    /**
     * @dev Mints `quantity` tokens and transfers them to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `quantity` must be greater than 0.
     *
     * Emits a {Transfer} event.
     */
    function _mint(
        address to,
        uint256 quantity,
        bytes memory _data,
        bool safe
    ) internal {
        uint256 startTokenId = _currentIndex;
        if (to == address(0)) revert MintToZeroAddress();
        if (quantity == 0) revert MintZeroQuantity();

        _beforeTokenTransfers(address(0), to, startTokenId, quantity);

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 1.8e19 (2**64) - 1
        // updatedIndex overflows if _currentIndex + quantity > 1.2e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint64(quantity);
            _addressData[to].numberMinted += uint64(quantity);

            _ownerships[startTokenId].addr = to;
            _ownerships[startTokenId].startTimestamp = uint64(block.timestamp);

            uint256 updatedIndex = startTokenId;
            uint256 end = updatedIndex + quantity;

            if (safe && to.isContract()) {
                do {
                    emit Transfer(address(0), to, updatedIndex);
                    if (
                        !_checkContractOnERC721Received(
                            address(0),
                            to,
                            updatedIndex++,
                            _data
                        )
                    ) {
                        revert TransferToNonERC721ReceiverImplementer();
                    }
                } while (updatedIndex != end);
                // Reentrancy protection
                if (_currentIndex != startTokenId) revert();
            } else {
                do {
                    emit Transfer(address(0), to, updatedIndex++);
                } while (updatedIndex != end);
            }
            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * 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
    ) private {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();

        bool isApprovedOrOwner = (_msgSender() == from ||
            isApprovedForAll(from, _msgSender()) ||
            getApproved(tokenId) == _msgSender());

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (to == address(0)) revert TransferToZeroAddress();

        _beforeTokenTransfers(from, to, tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            _addressData[from].balance -= 1;
            _addressData[to].balance += 1;

            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = to;
            currSlot.startTimestamp = uint64(block.timestamp);

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, to, tokenId);
        _afterTokenTransfers(from, to, tokenId, 1);
    }

    /**
     * @dev This is equivalent to _burn(tokenId, false)
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

    /**
     * @dev Destroys `tokenId`.
     * The approval is cleared when the token is burned.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     *
     * Emits a {Transfer} event.
     */
    function _burn(uint256 tokenId, bool approvalCheck) internal virtual {
        TokenOwnership memory prevOwnership = _ownershipOf(tokenId);

        address from = prevOwnership.addr;

        if (approvalCheck) {
            bool isApprovedOrOwner = (_msgSender() == from ||
                isApprovedForAll(from, _msgSender()) ||
                getApproved(tokenId) == _msgSender());

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

        _beforeTokenTransfers(from, address(0), tokenId, 1);

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

        // Underflow of the sender's balance is impossible because we check for
        // ownership above and the recipient's balance can't realistically overflow.
        // Counter overflow is incredibly unrealistic as tokenId would have to be 2**256.
        unchecked {
            AddressData storage addressData = _addressData[from];
            addressData.balance -= 1;
            addressData.numberBurned += 1;

            // Keep track of who burned the token, and the timestamp of burning.
            TokenOwnership storage currSlot = _ownerships[tokenId];
            currSlot.addr = from;
            currSlot.startTimestamp = uint64(block.timestamp);
            currSlot.burned = true;

            // If the ownership slot of tokenId+1 is not explicitly set, that means the burn initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            TokenOwnership storage nextSlot = _ownerships[nextTokenId];
            if (nextSlot.addr == address(0)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId != _currentIndex) {
                    nextSlot.addr = from;
                    nextSlot.startTimestamp = prevOwnership.startTimestamp;
                }
            }
        }

        emit Transfer(from, address(0), tokenId);
        _afterTokenTransfers(from, address(0), tokenId, 1);

        // Overflow not possible, as _burnCounter cannot be exceed _currentIndex times.
        unchecked {
            _burnCounter++;
        }
    }

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

    /**
     * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target 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 _checkContractOnERC721Received(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) private returns (bool) {
        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 TransferToNonERC721ReceiverImplementer();
            } else {
                assembly {
                    revert(add(32, reason), mload(reason))
                }
            }
        }
    }

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     * And also called before burning one token.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * 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, `tokenId` will be burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

    /**
     * @dev Hook that is called after a set of serially-ordered token ids have been transferred. This includes
     * minting.
     * And also called after one token has been burned.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, `from`'s `tokenId` has been
     * transferred to `to`.
     * - When `from` is zero, `tokenId` has been minted for `to`.
     * - When `to` is zero, `tokenId` has been burned by `from`.
     * - `from` and `to` are never both zero.
     */
    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File src/Rax.sol

pragma solidity ^0.8.4;

// ERC721A so we can make approve function virtual

error CallerNotOwner();
error OwnerAlreadySet();
error MaxMintPerTx();
error MaxSupplyReached();
error TransferWhilePaused();
error UnauthorisedOperator();

contract Rax is ERC721A {
    address private _owner;

    // baseURI with trailing slash.
    string public baseURI =
        'https://skyxraxworld.mypinata.cloud/ipfs/QmdCsh6Ud3PEiP6v2sN8wej6cDXeQXdgePKHx2tQLY62ik/';

    // MAX NUMBER OF NFTs PER TRANSACTION
    uint8 MAX_MINT_PER_TRANSACTION = 100;

    // MAX NFTs available
    uint16 MAX_NFTs = 1000;

    // pauses transfers and sales
    // minting and burning are always allowed
    bool private _paused = true;

    // authorised Operators list
    address[] private authorisedOperators;

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

    constructor() ERC721A('RAX x Sky Brown', 'RAXxSKY') {
        _owner = msg.sender;

        emit OwnershipTransferred(address(0), _owner);
    }

    modifier onlyOwner() {
        if (msg.sender != _owner) revert CallerNotOwner();
        _;
    }

    function _startTokenId() internal view virtual override returns (uint256) {
        return 1;
    }

    function batchMint(address[] memory receivers) external onlyOwner {
        if (totalSupply() + receivers.length > MAX_NFTs)
            revert MaxSupplyReached();
        if (receivers.length > MAX_MINT_PER_TRANSACTION) revert MaxMintPerTx();

        for (uint8 i = 0; i < receivers.length; i++) {
            _safeMint(receivers[i], 1);
        }
    }

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

    function setBaseURI(string memory _newBaseURI) external onlyOwner {
        baseURI = _newBaseURI;
    }

    function transferOwnership(address to) external onlyOwner {
        if (_owner == to) revert OwnerAlreadySet();
        address oldOwner = _owner;
        _owner = to;
        emit OwnershipTransferred(oldOwner, to);
    }

    /**
     * @dev Returns true if the contract is paused, and false otherwise.
     */
    function isPaused() public view virtual returns (bool) {
        return _paused;
    }

    function setPaused(bool paused) external onlyOwner {
        _paused = paused;
    }

    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual override {
        super._beforeTokenTransfers(from, to, startTokenId, quantity);

        if (from != address(0) && to != address(0)) {
            if (_paused) revert TransferWhilePaused();
        }
    }

    function addAuthorisedOperator(address[] calldata operators)
        external
        onlyOwner
    {
        for (uint256 i = 0; i < operators.length; i++) {
            authorisedOperators.push(operators[i]);
        }
    }

    function removeOperator(address operator) external onlyOwner {
        address[] memory filteredOperators;
        uint256 count = 0;

        for (uint256 i = 0; i < authorisedOperators.length; i++) {
            if (authorisedOperators[i] != operator) {
                filteredOperators[count] = authorisedOperators[i];
                count++;
            }
        }

        authorisedOperators = filteredOperators;
    }

    function _isAuthorisedOperator(address operator)
        private
        view
        returns (bool)
    {
        for (uint256 i = 0; i < authorisedOperators.length; i++) {
            if (operator == authorisedOperators[i]) {
                return true;
            }
        }

        return false;
    }

    function setApprovalForAll(address operator, bool approved)
        public
        virtual
        override
    {
        if (approved) {
            if (!_isAuthorisedOperator(operator)) revert UnauthorisedOperator();
        }
        super.setApprovalForAll(operator, approved);
    }

    function approve(address to, uint256 tokenId) public override {
        if (to != address(0)) {
            if (!_isAuthorisedOperator(to)) revert UnauthorisedOperator();
        }
        super.approve(to, tokenId);
    }

    function burn(uint256 tokenId) public virtual {
        _burn(tokenId, true);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"CallerNotOwner","type":"error"},{"inputs":[],"name":"MaxMintPerTx","type":"error"},{"inputs":[],"name":"MaxSupplyReached","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerAlreadySet","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"inputs":[],"name":"TransferWhilePaused","type":"error"},{"inputs":[],"name":"URIQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"UnauthorisedOperator","type":"error"},{"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":"operators","type":"address[]"}],"name":"addAuthorisedOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"receivers","type":"address[]"}],"name":"batchMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPaused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"}],"name":"removeOperator","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"paused","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

608060405260405180608001604052806058815260200162003cae6058913960099080519060200190620000359291906200021d565b506064600a60006101000a81548160ff021916908360ff1602179055506103e8600a60016101000a81548161ffff021916908361ffff1602179055506001600a60036101000a81548160ff0219169083151502179055503480156200009957600080fd5b506040518060400160405280600f81526020017f524158207820536b792042726f776e00000000000000000000000000000000008152506040518060400160405280600781526020017f52415878534b590000000000000000000000000000000000000000000000000081525081600290805190602001906200011e9291906200021d565b508060039080519060200190620001379291906200021d565b50620001486200021460201b60201c565b600081905550505033600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a362000332565b60006001905090565b8280546200022b90620002cd565b90600052602060002090601f0160209004810192826200024f57600085556200029b565b82601f106200026a57805160ff19168380011785556200029b565b828001600101855582156200029b579182015b828111156200029a5782518255916020019190600101906200027d565b5b509050620002aa9190620002ae565b5090565b5b80821115620002c9576000816000905550600101620002af565b5090565b60006002820490506001821680620002e657607f821691505b60208210811415620002fd57620002fc62000303565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b61396c80620003426000396000f3fe608060405234801561001057600080fd5b506004361061014d5760003560e01c80636c0360eb116100c3578063b88d4fde1161007c578063b88d4fde14610388578063c87b56dd146103a4578063d67b06c1146103d4578063df0b6637146103f0578063e985e9c51461040c578063f2fde38b1461043c5761014d565b80636c0360eb146102c657806370a08231146102e457806395d89b4114610314578063a22cb46514610332578063ac8a584a1461034e578063b187bd261461036a5761014d565b806318160ddd1161011557806318160ddd1461020857806323b872dd1461022657806342842e0e1461024257806342966c681461025e57806355f804b31461027a5780636352211e146102965761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806316c38b3c146101ec575b600080fd5b61016c60048036038101906101679190613223565b610458565b604051610179919061343a565b60405180910390f35b61018a61053a565b6040516101979190613455565b60405180910390f35b6101ba60048036038101906101b591906132b6565b6105cc565b6040516101c791906133d3565b60405180910390f35b6101ea60048036038101906101e59190613138565b610648565b005b610206600480360381019061020191906131fa565b6106ca565b005b61021061076e565b60405161021d9190613477565b60405180910390f35b610240600480360381019061023b9190613032565b610785565b005b61025c60048036038101906102579190613032565b610795565b005b610278600480360381019061027391906132b6565b6107b5565b005b610294600480360381019061028f9190613275565b6107c3565b005b6102b060048036038101906102ab91906132b6565b610864565b6040516102bd91906133d3565b60405180910390f35b6102ce61087a565b6040516102db9190613455565b60405180910390f35b6102fe60048036038101906102f99190612fcd565b610908565b60405161030b9190613477565b60405180910390f35b61031c6109d8565b6040516103299190613455565b60405180910390f35b61034c600480360381019061034791906130fc565b610a6a565b005b61036860048036038101906103639190612fcd565b610abe565b005b610372610d06565b60405161037f919061343a565b60405180910390f35b6103a2600480360381019061039d9190613081565b610d1d565b005b6103be60048036038101906103b991906132b6565b610d99565b6040516103cb9190613455565b60405180910390f35b6103ee60048036038101906103e991906131b9565b610e38565b005b61040a60048036038101906104059190613174565b610fe1565b005b61042660048036038101906104219190612ff6565b61113e565b604051610433919061343a565b60405180910390f35b61045660048036038101906104519190612fcd565b6111d2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105335750610532826113a7565b5b9050919050565b60606002805461054990613706565b80601f016020809104026020016040519081016040528092919081815260200182805461057590613706565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105d782611411565b61060d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106bc576106858261145f565b6106bb576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6106c68282611534565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610751576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b600061077861163f565b6001546000540303905090565b610790838383611648565b505050565b6107b083838360405180602001604052806000815250610d1d565b505050565b6107c0816001611afe565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461084a576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060099080519060200190610860929190612c44565b5050565b600061086f82611eee565b600001519050919050565b6009805461088790613706565b80601f01602080910402602001604051908101604052809291908181526020018280546108b390613706565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610970576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600380546109e790613706565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1390613706565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b8015610ab057610a798261145f565b610aaf576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610aba828261217d565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b45576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60606000805b600b80549050811015610ce9578373ffffffffffffffffffffffffffffffffffffffff16600b8281548110610ba9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cd657600b8181548110610c29577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610c8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180610cd290613769565b9250505b8080610ce190613769565b915050610b4b565b5081600b9080519060200190610d00929190612cca565b50505050565b6000600a60039054906101000a900460ff16905090565b610d28848484611648565b610d478373ffffffffffffffffffffffffffffffffffffffff166122f5565b8015610d5c5750610d5a84848484612318565b155b15610d93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610da482611411565b610dda576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610de4612478565b9050600081511415610e055760405180602001604052806000815250610e30565b80610e0f8461250a565b604051602001610e209291906133af565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900461ffff1661ffff168151610ede61076e565b610ee89190613588565b1115610f20576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900460ff1660ff1681511115610f6d576040517f823903a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81518160ff161015610fdd57610fca828260ff1681518110610fbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016126b7565b8080610fd5906137b2565b915050610f70565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611068576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8282905081101561113957600b8383838181106110b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906110c69190612fcd565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061113190613769565b91505061106b565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611259576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156112e1576040517fcf04b1bb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161141c61163f565b1115801561142b575060005482105b8015611458575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600080600090505b600b8054905081101561152957600b81815481106114ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151657600191505061152f565b808061152190613769565b915050611467565b50600090505b919050565b600061153f82610864565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115a7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166115c66126d5565b73ffffffffffffffffffffffffffffffffffffffff16141580156115f857506115f6816115f16126d5565b61113e565b155b1561162f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61163a8383836126dd565b505050565b60006001905090565b600061165382611eee565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116be576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116df6126d5565b73ffffffffffffffffffffffffffffffffffffffff16148061170e575061170d856117086126d5565b61113e565b5b80611753575061171c6126d5565b73ffffffffffffffffffffffffffffffffffffffff1661173b846105cc565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061178c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117f3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611800858585600161278f565b61180c600084876126dd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a8c576000548214611a8b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af78585856001612858565b5050505050565b6000611b0983611eee565b90506000816000015190508215611bea5760008173ffffffffffffffffffffffffffffffffffffffff16611b3b6126d5565b73ffffffffffffffffffffffffffffffffffffffff161480611b6a5750611b6982611b646126d5565b61113e565b5b80611baf5750611b786126d5565b73ffffffffffffffffffffffffffffffffffffffff16611b97866105cc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611be8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b611bf881600086600161278f565b611c04600085836126dd565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e68576000548214611e6757848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ed6816000866001612858565b60016000815480929190600101919050555050505050565b611ef6612d54565b600082905080611f0461163f565b11158015611f13575060005481105b15612146576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161214457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612028578092505050612178565b5b60011561214357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461213e578092505050612178565b612029565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6121856126d5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006121f76126d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122a46126d5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122e9919061343a565b60405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261233e6126d5565b8786866040518563ffffffff1660e01b815260040161236094939291906133ee565b602060405180830381600087803b15801561237a57600080fd5b505af19250505080156123ab57506040513d601f19601f820116820180604052508101906123a8919061324c565b60015b612425573d80600081146123db576040519150601f19603f3d011682016040523d82523d6000602084013e6123e0565b606091505b5060008151141561241d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461248790613706565b80601f01602080910402602001604051908101604052809291908181526020018280546124b390613706565b80156125005780601f106124d557610100808354040283529160200191612500565b820191906000526020600020905b8154815290600101906020018083116124e357829003601f168201915b5050505050905090565b60606000821415612552576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b2565b600082905060005b6000821461258457808061256d90613769565b915050600a8261257d91906135de565b915061255a565b60008167ffffffffffffffff8111156125c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125f85781602001600182028036833780820191505090505b5090505b600085146126ab57600182612611919061360f565b9150600a8561262091906137dc565b603061262c9190613588565b60f81b818381518110612668577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a491906135de565b94506125fc565b8093505050505b919050565b6126d182826040518060200160405280600081525061285e565b5050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61279b84848484612870565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156128055750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561285257600a60039054906101000a900460ff1615612851576040517f6c24c30100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b50505050565b61286b8383836001612876565b505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128e3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561291e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61292b600086838761278f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612af55750612af48773ffffffffffffffffffffffffffffffffffffffff166122f5565b5b15612bbb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6a6000888480600101955088612318565b612ba0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612afb578260005414612bb657600080fd5b612c27565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bbc575b816000819055505050612c3d6000868387612858565b5050505050565b828054612c5090613706565b90600052602060002090601f016020900481019282612c725760008555612cb9565b82601f10612c8b57805160ff1916838001178555612cb9565b82800160010185558215612cb9579182015b82811115612cb8578251825591602001919060010190612c9d565b5b509050612cc69190612d97565b5090565b828054828255906000526020600020908101928215612d43579160200282015b82811115612d425782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612cea565b5b509050612d509190612d97565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612db0576000816000905550600101612d98565b5090565b6000612dc7612dc2846134b7565b613492565b90508083825260208201905082856020860282011115612de657600080fd5b60005b85811015612e165781612dfc8882612e9c565b845260208401935060208301925050600181019050612de9565b5050509392505050565b6000612e33612e2e846134e3565b613492565b905082815260208101848484011115612e4b57600080fd5b612e568482856136c4565b509392505050565b6000612e71612e6c84613514565b613492565b905082815260208101848484011115612e8957600080fd5b612e948482856136c4565b509392505050565b600081359050612eab816138da565b92915050565b60008083601f840112612ec357600080fd5b8235905067ffffffffffffffff811115612edc57600080fd5b602083019150836020820283011115612ef457600080fd5b9250929050565b600082601f830112612f0c57600080fd5b8135612f1c848260208601612db4565b91505092915050565b600081359050612f34816138f1565b92915050565b600081359050612f4981613908565b92915050565b600081519050612f5e81613908565b92915050565b600082601f830112612f7557600080fd5b8135612f85848260208601612e20565b91505092915050565b600082601f830112612f9f57600080fd5b8135612faf848260208601612e5e565b91505092915050565b600081359050612fc78161391f565b92915050565b600060208284031215612fdf57600080fd5b6000612fed84828501612e9c565b91505092915050565b6000806040838503121561300957600080fd5b600061301785828601612e9c565b925050602061302885828601612e9c565b9150509250929050565b60008060006060848603121561304757600080fd5b600061305586828701612e9c565b935050602061306686828701612e9c565b925050604061307786828701612fb8565b9150509250925092565b6000806000806080858703121561309757600080fd5b60006130a587828801612e9c565b94505060206130b687828801612e9c565b93505060406130c787828801612fb8565b925050606085013567ffffffffffffffff8111156130e457600080fd5b6130f087828801612f64565b91505092959194509250565b6000806040838503121561310f57600080fd5b600061311d85828601612e9c565b925050602061312e85828601612f25565b9150509250929050565b6000806040838503121561314b57600080fd5b600061315985828601612e9c565b925050602061316a85828601612fb8565b9150509250929050565b6000806020838503121561318757600080fd5b600083013567ffffffffffffffff8111156131a157600080fd5b6131ad85828601612eb1565b92509250509250929050565b6000602082840312156131cb57600080fd5b600082013567ffffffffffffffff8111156131e557600080fd5b6131f184828501612efb565b91505092915050565b60006020828403121561320c57600080fd5b600061321a84828501612f25565b91505092915050565b60006020828403121561323557600080fd5b600061324384828501612f3a565b91505092915050565b60006020828403121561325e57600080fd5b600061326c84828501612f4f565b91505092915050565b60006020828403121561328757600080fd5b600082013567ffffffffffffffff8111156132a157600080fd5b6132ad84828501612f8e565b91505092915050565b6000602082840312156132c857600080fd5b60006132d684828501612fb8565b91505092915050565b6132e881613643565b82525050565b6132f781613655565b82525050565b600061330882613545565b613312818561355b565b93506133228185602086016136d3565b61332b816138c9565b840191505092915050565b600061334182613550565b61334b818561356c565b935061335b8185602086016136d3565b613364816138c9565b840191505092915050565b600061337a82613550565b613384818561357d565b93506133948185602086016136d3565b80840191505092915050565b6133a9816136ad565b82525050565b60006133bb828561336f565b91506133c7828461336f565b91508190509392505050565b60006020820190506133e860008301846132df565b92915050565b600060808201905061340360008301876132df565b61341060208301866132df565b61341d60408301856133a0565b818103606083015261342f81846132fd565b905095945050505050565b600060208201905061344f60008301846132ee565b92915050565b6000602082019050818103600083015261346f8184613336565b905092915050565b600060208201905061348c60008301846133a0565b92915050565b600061349c6134ad565b90506134a88282613738565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d2576134d161389a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134fe576134fd61389a565b5b613507826138c9565b9050602081019050919050565b600067ffffffffffffffff82111561352f5761352e61389a565b5b613538826138c9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613593826136ad565b915061359e836136ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135d3576135d261380d565b5b828201905092915050565b60006135e9826136ad565b91506135f4836136ad565b9250826136045761360361383c565b5b828204905092915050565b600061361a826136ad565b9150613625836136ad565b9250828210156136385761363761380d565b5b828203905092915050565b600061364e8261368d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156136f15780820151818401526020810190506136d6565b83811115613700576000848401525b50505050565b6000600282049050600182168061371e57607f821691505b602082108114156137325761373161386b565b5b50919050565b613741826138c9565b810181811067ffffffffffffffff821117156137605761375f61389a565b5b80604052505050565b6000613774826136ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137a7576137a661380d565b5b600182019050919050565b60006137bd826136b7565b915060ff8214156137d1576137d061380d565b5b600182019050919050565b60006137e7826136ad565b91506137f2836136ad565b9250826138025761380161383c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6138e381613643565b81146138ee57600080fd5b50565b6138fa81613655565b811461390557600080fd5b50565b61391181613661565b811461391c57600080fd5b50565b613928816136ad565b811461393357600080fd5b5056fea2646970667358221220baf61b7c74da38aa4b01065ef5add5034087ae2bf78a0a76a8d43d9172f918f764736f6c6343000804003368747470733a2f2f736b7978726178776f726c642e6d7970696e6174612e636c6f75642f697066732f516d644373683655643350456950367632734e3877656a36634458655158646765504b48783274514c593632696b2f

Deployed Bytecode

0x608060405234801561001057600080fd5b506004361061014d5760003560e01c80636c0360eb116100c3578063b88d4fde1161007c578063b88d4fde14610388578063c87b56dd146103a4578063d67b06c1146103d4578063df0b6637146103f0578063e985e9c51461040c578063f2fde38b1461043c5761014d565b80636c0360eb146102c657806370a08231146102e457806395d89b4114610314578063a22cb46514610332578063ac8a584a1461034e578063b187bd261461036a5761014d565b806318160ddd1161011557806318160ddd1461020857806323b872dd1461022657806342842e0e1461024257806342966c681461025e57806355f804b31461027a5780636352211e146102965761014d565b806301ffc9a71461015257806306fdde0314610182578063081812fc146101a0578063095ea7b3146101d057806316c38b3c146101ec575b600080fd5b61016c60048036038101906101679190613223565b610458565b604051610179919061343a565b60405180910390f35b61018a61053a565b6040516101979190613455565b60405180910390f35b6101ba60048036038101906101b591906132b6565b6105cc565b6040516101c791906133d3565b60405180910390f35b6101ea60048036038101906101e59190613138565b610648565b005b610206600480360381019061020191906131fa565b6106ca565b005b61021061076e565b60405161021d9190613477565b60405180910390f35b610240600480360381019061023b9190613032565b610785565b005b61025c60048036038101906102579190613032565b610795565b005b610278600480360381019061027391906132b6565b6107b5565b005b610294600480360381019061028f9190613275565b6107c3565b005b6102b060048036038101906102ab91906132b6565b610864565b6040516102bd91906133d3565b60405180910390f35b6102ce61087a565b6040516102db9190613455565b60405180910390f35b6102fe60048036038101906102f99190612fcd565b610908565b60405161030b9190613477565b60405180910390f35b61031c6109d8565b6040516103299190613455565b60405180910390f35b61034c600480360381019061034791906130fc565b610a6a565b005b61036860048036038101906103639190612fcd565b610abe565b005b610372610d06565b60405161037f919061343a565b60405180910390f35b6103a2600480360381019061039d9190613081565b610d1d565b005b6103be60048036038101906103b991906132b6565b610d99565b6040516103cb9190613455565b60405180910390f35b6103ee60048036038101906103e991906131b9565b610e38565b005b61040a60048036038101906104059190613174565b610fe1565b005b61042660048036038101906104219190612ff6565b61113e565b604051610433919061343a565b60405180910390f35b61045660048036038101906104519190612fcd565b6111d2565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061052357507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b806105335750610532826113a7565b5b9050919050565b60606002805461054990613706565b80601f016020809104026020016040519081016040528092919081815260200182805461057590613706565b80156105c25780601f10610597576101008083540402835291602001916105c2565b820191906000526020600020905b8154815290600101906020018083116105a557829003601f168201915b5050505050905090565b60006105d782611411565b61060d576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16146106bc576106858261145f565b6106bb576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b6106c68282611534565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610751576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600a60036101000a81548160ff02191690831515021790555050565b600061077861163f565b6001546000540303905090565b610790838383611648565b505050565b6107b083838360405180602001604052806000815250610d1d565b505050565b6107c0816001611afe565b50565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461084a576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060099080519060200190610860929190612c44565b5050565b600061086f82611eee565b600001519050919050565b6009805461088790613706565b80601f01602080910402602001604051908101604052809291908181526020018280546108b390613706565b80156109005780601f106108d557610100808354040283529160200191610900565b820191906000526020600020905b8154815290600101906020018083116108e357829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610970576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6060600380546109e790613706565b80601f0160208091040260200160405190810160405280929190818152602001828054610a1390613706565b8015610a605780601f10610a3557610100808354040283529160200191610a60565b820191906000526020600020905b815481529060010190602001808311610a4357829003601f168201915b5050505050905090565b8015610ab057610a798261145f565b610aaf576040517f47aaf64600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610aba828261217d565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610b45576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60606000805b600b80549050811015610ce9578373ffffffffffffffffffffffffffffffffffffffff16600b8281548110610ba9577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610cd657600b8181548110610c29577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16838381518110610c8d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508180610cd290613769565b9250505b8080610ce190613769565b915050610b4b565b5081600b9080519060200190610d00929190612cca565b50505050565b6000600a60039054906101000a900460ff16905090565b610d28848484611648565b610d478373ffffffffffffffffffffffffffffffffffffffff166122f5565b8015610d5c5750610d5a84848484612318565b155b15610d93576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6060610da482611411565b610dda576040517fa14c4b5000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000610de4612478565b9050600081511415610e055760405180602001604052806000815250610e30565b80610e0f8461250a565b604051602001610e209291906133af565b6040516020818303038152906040525b915050919050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610ebf576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60019054906101000a900461ffff1661ffff168151610ede61076e565b610ee89190613588565b1115610f20576040517fd05cb60900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600a60009054906101000a900460ff1660ff1681511115610f6d576040517f823903a900000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b81518160ff161015610fdd57610fca828260ff1681518110610fbb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016126b7565b8080610fd5906137b2565b915050610f70565b5050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611068576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60005b8282905081101561113957600b8383838181106110b1577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b90506020020160208101906110c69190612fcd565b9080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550808061113190613769565b91505061106b565b505050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611259576040517f5cd8319200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614156112e1576040517fcf04b1bb00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b60008161141c61163f565b1115801561142b575060005482105b8015611458575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600080600090505b600b8054905081101561152957600b81815481106114ae577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561151657600191505061152f565b808061152190613769565b915050611467565b50600090505b919050565b600061153f82610864565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156115a7576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff166115c66126d5565b73ffffffffffffffffffffffffffffffffffffffff16141580156115f857506115f6816115f16126d5565b61113e565b155b1561162f576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61163a8383836126dd565b505050565b60006001905090565b600061165382611eee565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146116be576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166116df6126d5565b73ffffffffffffffffffffffffffffffffffffffff16148061170e575061170d856117086126d5565b61113e565b5b80611753575061171c6126d5565b73ffffffffffffffffffffffffffffffffffffffff1661173b846105cc565b73ffffffffffffffffffffffffffffffffffffffff16145b90508061178c576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156117f3576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b611800858585600161278f565b61180c600084876126dd565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611a8c576000548214611a8b57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611af78585856001612858565b5050505050565b6000611b0983611eee565b90506000816000015190508215611bea5760008173ffffffffffffffffffffffffffffffffffffffff16611b3b6126d5565b73ffffffffffffffffffffffffffffffffffffffff161480611b6a5750611b6982611b646126d5565b61113e565b5b80611baf5750611b786126d5565b73ffffffffffffffffffffffffffffffffffffffff16611b97866105cc565b73ffffffffffffffffffffffffffffffffffffffff16145b905080611be8576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b611bf881600086600161278f565b611c04600085836126dd565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415611e68576000548214611e6757848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4611ed6816000866001612858565b60016000815480929190600101919050555050505050565b611ef6612d54565b600082905080611f0461163f565b11158015611f13575060005481105b15612146576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161214457600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612028578092505050612178565b5b60011561214357818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461213e578092505050612178565b612029565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6121856126d5565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156121ea576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006121f76126d5565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff166122a46126d5565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31836040516122e9919061343a565b60405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a0261233e6126d5565b8786866040518563ffffffff1660e01b815260040161236094939291906133ee565b602060405180830381600087803b15801561237a57600080fd5b505af19250505080156123ab57506040513d601f19601f820116820180604052508101906123a8919061324c565b60015b612425573d80600081146123db576040519150601f19603f3d011682016040523d82523d6000602084013e6123e0565b606091505b5060008151141561241d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b60606009805461248790613706565b80601f01602080910402602001604051908101604052809291908181526020018280546124b390613706565b80156125005780601f106124d557610100808354040283529160200191612500565b820191906000526020600020905b8154815290600101906020018083116124e357829003601f168201915b5050505050905090565b60606000821415612552576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506126b2565b600082905060005b6000821461258457808061256d90613769565b915050600a8261257d91906135de565b915061255a565b60008167ffffffffffffffff8111156125c6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f1916602001820160405280156125f85781602001600182028036833780820191505090505b5090505b600085146126ab57600182612611919061360f565b9150600a8561262091906137dc565b603061262c9190613588565b60f81b818381518110612668577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856126a491906135de565b94506125fc565b8093505050505b919050565b6126d182826040518060200160405280600081525061285e565b5050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b61279b84848484612870565b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff16141580156128055750600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b1561285257600a60039054906101000a900460ff1615612851576040517f6c24c30100000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b50505050565b61286b8383836001612876565b505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1614156128e3576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561291e576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61292b600086838761278f565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008582019050838015612af55750612af48773ffffffffffffffffffffffffffffffffffffffff166122f5565b5b15612bbb575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612b6a6000888480600101955088612318565b612ba0576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80821415612afb578260005414612bb657600080fd5b612c27565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821415612bbc575b816000819055505050612c3d6000868387612858565b5050505050565b828054612c5090613706565b90600052602060002090601f016020900481019282612c725760008555612cb9565b82601f10612c8b57805160ff1916838001178555612cb9565b82800160010185558215612cb9579182015b82811115612cb8578251825591602001919060010190612c9d565b5b509050612cc69190612d97565b5090565b828054828255906000526020600020908101928215612d43579160200282015b82811115612d425782518260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555091602001919060010190612cea565b5b509050612d509190612d97565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115612db0576000816000905550600101612d98565b5090565b6000612dc7612dc2846134b7565b613492565b90508083825260208201905082856020860282011115612de657600080fd5b60005b85811015612e165781612dfc8882612e9c565b845260208401935060208301925050600181019050612de9565b5050509392505050565b6000612e33612e2e846134e3565b613492565b905082815260208101848484011115612e4b57600080fd5b612e568482856136c4565b509392505050565b6000612e71612e6c84613514565b613492565b905082815260208101848484011115612e8957600080fd5b612e948482856136c4565b509392505050565b600081359050612eab816138da565b92915050565b60008083601f840112612ec357600080fd5b8235905067ffffffffffffffff811115612edc57600080fd5b602083019150836020820283011115612ef457600080fd5b9250929050565b600082601f830112612f0c57600080fd5b8135612f1c848260208601612db4565b91505092915050565b600081359050612f34816138f1565b92915050565b600081359050612f4981613908565b92915050565b600081519050612f5e81613908565b92915050565b600082601f830112612f7557600080fd5b8135612f85848260208601612e20565b91505092915050565b600082601f830112612f9f57600080fd5b8135612faf848260208601612e5e565b91505092915050565b600081359050612fc78161391f565b92915050565b600060208284031215612fdf57600080fd5b6000612fed84828501612e9c565b91505092915050565b6000806040838503121561300957600080fd5b600061301785828601612e9c565b925050602061302885828601612e9c565b9150509250929050565b60008060006060848603121561304757600080fd5b600061305586828701612e9c565b935050602061306686828701612e9c565b925050604061307786828701612fb8565b9150509250925092565b6000806000806080858703121561309757600080fd5b60006130a587828801612e9c565b94505060206130b687828801612e9c565b93505060406130c787828801612fb8565b925050606085013567ffffffffffffffff8111156130e457600080fd5b6130f087828801612f64565b91505092959194509250565b6000806040838503121561310f57600080fd5b600061311d85828601612e9c565b925050602061312e85828601612f25565b9150509250929050565b6000806040838503121561314b57600080fd5b600061315985828601612e9c565b925050602061316a85828601612fb8565b9150509250929050565b6000806020838503121561318757600080fd5b600083013567ffffffffffffffff8111156131a157600080fd5b6131ad85828601612eb1565b92509250509250929050565b6000602082840312156131cb57600080fd5b600082013567ffffffffffffffff8111156131e557600080fd5b6131f184828501612efb565b91505092915050565b60006020828403121561320c57600080fd5b600061321a84828501612f25565b91505092915050565b60006020828403121561323557600080fd5b600061324384828501612f3a565b91505092915050565b60006020828403121561325e57600080fd5b600061326c84828501612f4f565b91505092915050565b60006020828403121561328757600080fd5b600082013567ffffffffffffffff8111156132a157600080fd5b6132ad84828501612f8e565b91505092915050565b6000602082840312156132c857600080fd5b60006132d684828501612fb8565b91505092915050565b6132e881613643565b82525050565b6132f781613655565b82525050565b600061330882613545565b613312818561355b565b93506133228185602086016136d3565b61332b816138c9565b840191505092915050565b600061334182613550565b61334b818561356c565b935061335b8185602086016136d3565b613364816138c9565b840191505092915050565b600061337a82613550565b613384818561357d565b93506133948185602086016136d3565b80840191505092915050565b6133a9816136ad565b82525050565b60006133bb828561336f565b91506133c7828461336f565b91508190509392505050565b60006020820190506133e860008301846132df565b92915050565b600060808201905061340360008301876132df565b61341060208301866132df565b61341d60408301856133a0565b818103606083015261342f81846132fd565b905095945050505050565b600060208201905061344f60008301846132ee565b92915050565b6000602082019050818103600083015261346f8184613336565b905092915050565b600060208201905061348c60008301846133a0565b92915050565b600061349c6134ad565b90506134a88282613738565b919050565b6000604051905090565b600067ffffffffffffffff8211156134d2576134d161389a565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156134fe576134fd61389a565b5b613507826138c9565b9050602081019050919050565b600067ffffffffffffffff82111561352f5761352e61389a565b5b613538826138c9565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b6000613593826136ad565b915061359e836136ad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156135d3576135d261380d565b5b828201905092915050565b60006135e9826136ad565b91506135f4836136ad565b9250826136045761360361383c565b5b828204905092915050565b600061361a826136ad565b9150613625836136ad565b9250828210156136385761363761380d565b5b828203905092915050565b600061364e8261368d565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b82818337600083830152505050565b60005b838110156136f15780820151818401526020810190506136d6565b83811115613700576000848401525b50505050565b6000600282049050600182168061371e57607f821691505b602082108114156137325761373161386b565b5b50919050565b613741826138c9565b810181811067ffffffffffffffff821117156137605761375f61389a565b5b80604052505050565b6000613774826136ad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8214156137a7576137a661380d565b5b600182019050919050565b60006137bd826136b7565b915060ff8214156137d1576137d061380d565b5b600182019050919050565b60006137e7826136ad565b91506137f2836136ad565b9250826138025761380161383c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b6138e381613643565b81146138ee57600080fd5b50565b6138fa81613655565b811461390557600080fd5b50565b61391181613661565b811461391c57600080fd5b50565b613928816136ad565b811461393357600080fd5b5056fea2646970667358221220baf61b7c74da38aa4b01065ef5add5034087ae2bf78a0a76a8d43d9172f918f764736f6c63430008040033

Deployed Bytecode Sourcemap

43262:4198:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24565:355;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27760:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;29368:245;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;47137:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45344:86;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;23814:303;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30356:170;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30597:185;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;47372:85;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;44807:106;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;27568:125;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;43361:123;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24984:206;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;27929:104;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;46833:296;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;46057:439;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45248:88;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;30853:406;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;28104:415;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44328:363;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;45816:233;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;30075:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;44921:227;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24565:355;24712:4;24769:25;24754:40;;;:11;:40;;;;:105;;;;24826:33;24811:48;;;:11;:48;;;;24754:105;:158;;;;24876:36;24900:11;24876:23;:36::i;:::-;24754:158;24734:178;;24565:355;;;:::o;27760:100::-;27814:13;27847:5;27840:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27760:100;:::o;29368:245::-;29472:7;29502:16;29510:7;29502;:16::i;:::-;29497:64;;29527:34;;;;;;;;;;;;;;29497:64;29581:15;:24;29597:7;29581:24;;;;;;;;;;;;;;;;;;;;;29574:31;;29368:245;;;:::o;47137:227::-;47228:1;47214:16;;:2;:16;;;47210:110;;47252:25;47274:2;47252:21;:25::i;:::-;47247:61;;47286:22;;;;;;;;;;;;;;47247:61;47210:110;47330:26;47344:2;47348:7;47330:13;:26::i;:::-;47137:227;;:::o;45344:86::-;44160:6;;;;;;;;;;;44146:20;;:10;:20;;;44142:49;;44175:16;;;;;;;;;;;;;;44142:49;45416:6:::1;45406:7;;:16;;;;;;;;;;;;;;;;;;45344:86:::0;:::o;23814:303::-;23858:7;24083:15;:13;:15::i;:::-;24068:12;;24052:13;;:28;:46;24045:53;;23814:303;:::o;30356:170::-;30490:28;30500:4;30506:2;30510:7;30490:9;:28::i;:::-;30356:170;;;:::o;30597:185::-;30735:39;30752:4;30758:2;30762:7;30735:39;;;;;;;;;;;;:16;:39::i;:::-;30597:185;;;:::o;47372:85::-;47429:20;47435:7;47444:4;47429:5;:20::i;:::-;47372:85;:::o;44807:106::-;44160:6;;;;;;;;;;;44146:20;;:10;:20;;;44142:49;;44175:16;;;;;;;;;;;;;;44142:49;44894:11:::1;44884:7;:21;;;;;;;;;;;;:::i;:::-;;44807:106:::0;:::o;27568:125::-;27632:7;27659:21;27672:7;27659:12;:21::i;:::-;:26;;;27652:33;;27568:125;;;:::o;43361:123::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;24984:206::-;25048:7;25089:1;25072:19;;:5;:19;;;25068:60;;;25100:28;;;;;;;;;;;;;;25068:60;25154:12;:19;25167:5;25154:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;25146:36;;25139:43;;24984:206;;;:::o;27929:104::-;27985:13;28018:7;28011:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27929:104;:::o;46833:296::-;46964:8;46960:108;;;46994:31;47016:8;46994:21;:31::i;:::-;46989:67;;47034:22;;;;;;;;;;;;;;46989:67;46960:108;47078:43;47102:8;47112;47078:23;:43::i;:::-;46833:296;;:::o;46057:439::-;44160:6;;;;;;;;;;;44146:20;;:10;:20;;;44142:49;;44175:16;;;;;;;;;;;;;;44142:49;46129:34:::1;46174:13;46209:9:::0;46204:233:::1;46228:19;:26;;;;46224:1;:30;46204:233;;;46306:8;46280:34;;:19;46300:1;46280:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:34;;;46276:150;;46362:19;46382:1;46362:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46335:17;46353:5;46335:24;;;;;;;;;;;;;;;;;;;;;:49;;;;;;;;;::::0;::::1;46403:7;;;;;:::i;:::-;;;;46276:150;46256:3;;;;;:::i;:::-;;;;46204:233;;;;46471:17;46449:19;:39;;;;;;;;;;;;:::i;:::-;;44202:1;;46057:439:::0;:::o;45248:88::-;45297:4;45321:7;;;;;;;;;;;45314:14;;45248:88;:::o;30853:406::-;31020:28;31030:4;31036:2;31040:7;31020:9;:28::i;:::-;31077:15;:2;:13;;;:15::i;:::-;:89;;;;;31110:56;31141:4;31147:2;31151:7;31160:5;31110:30;:56::i;:::-;31109:57;31077:89;31059:193;;;31200:40;;;;;;;;;;;;;;31059:193;30853:406;;;;:::o;28104:415::-;28222:13;28258:16;28266:7;28258;:16::i;:::-;28253:59;;28283:29;;;;;;;;;;;;;;28253:59;28325:21;28349:10;:8;:10::i;:::-;28325:34;;28415:1;28396:7;28390:21;:26;;:121;;;;;;;;;;;;;;;;;28460:7;28469:18;:7;:16;:18::i;:::-;28443:45;;;;;;;;;:::i;:::-;;;;;;;;;;;;;28390:121;28370:141;;;28104:415;;;:::o;44328:363::-;44160:6;;;;;;;;;;;44146:20;;:10;:20;;;44142:49;;44175:16;;;;;;;;;;;;;;44142:49;44444:8:::1;;;;;;;;;;;44409:43;;44425:9;:16;44409:13;:11;:13::i;:::-;:32;;;;:::i;:::-;:43;44405:87;;;44474:18;;;;;;;;;;;;;;44405:87;44526:24;;;;;;;;;;;44507:43;;:9;:16;:43;44503:70;;;44559:14;;;;;;;;;;;;;;44503:70;44591:7;44586:98;44608:9;:16;44604:1;:20;;;44586:98;;;44646:26;44656:9;44666:1;44656:12;;;;;;;;;;;;;;;;;;;;;;;;44670:1;44646:9;:26::i;:::-;44626:3;;;;;:::i;:::-;;;;44586:98;;;;44328:363:::0;:::o;45816:233::-;44160:6;;;;;;;;;;;44146:20;;:10;:20;;;44142:49;;44175:16;;;;;;;;;;;;;;44142:49;45935:9:::1;45930:112;45954:9;;:16;;45950:1;:20;45930:112;;;45992:19;46017:9;;46027:1;46017:12;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;45992:38;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45972:3;;;;;:::i;:::-;;;;45930:112;;;;45816:233:::0;;:::o;30075:214::-;30217:4;30246:18;:25;30265:5;30246:25;;;;;;;;;;;;;;;:35;30272:8;30246:35;;;;;;;;;;;;;;;;;;;;;;;;;30239:42;;30075:214;;;;:::o;44921:227::-;44160:6;;;;;;;;;;;44146:20;;:10;:20;;;44142:49;;44175:16;;;;;;;;;;;;;;44142:49;45004:2:::1;44994:12;;:6;;;;;;;;;;;:12;;;44990:42;;;45015:17;;;;;;;;;;;;;;44990:42;45043:16;45062:6;;;;;;;;;;;45043:25;;45088:2;45079:6;;:11;;;;;;;;;;;;;;;;;;45137:2;45106:34;;45127:8;45106:34;;;;;;;;;;;;44202:1;44921:227:::0;:::o;20148:157::-;20233:4;20272:25;20257:40;;;:11;:40;;;;20250:47;;20148:157;;;:::o;31514:213::-;31571:4;31627:7;31608:15;:13;:15::i;:::-;:26;;:66;;;;;31661:13;;31651:7;:23;31608:66;:111;;;;;31692:11;:20;31704:7;31692:20;;;;;;;;;;;:27;;;;;;;;;;;;31691:28;31608:111;31588:131;;31514:213;;;:::o;46504:321::-;46602:4;46629:9;46641:1;46629:13;;46624:169;46648:19;:26;;;;46644:1;:30;46624:169;;;46712:19;46732:1;46712:22;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;46700:34;;:8;:34;;;46696:86;;;46762:4;46755:11;;;;;46696:86;46676:3;;;;;:::i;:::-;;;;46624:169;;;;46812:5;46805:12;;46504:321;;;;:::o;28923:379::-;29004:13;29020:24;29036:7;29020:15;:24::i;:::-;29004:40;;29065:5;29059:11;;:2;:11;;;29055:48;;;29079:24;;;;;;;;;;;;;;29055:48;29136:5;29120:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;29146:37;29163:5;29170:12;:10;:12::i;:::-;29146:16;:37::i;:::-;29145:38;29120:63;29116:138;;;29207:35;;;;;;;;;;;;;;29116:138;29266:28;29275:2;29279:7;29288:5;29266:8;:28::i;:::-;28923:379;;;:::o;44219:101::-;44284:7;44311:1;44304:8;;44219:101;:::o;34844:2130::-;34959:35;34997:21;35010:7;34997:12;:21::i;:::-;34959:59;;35057:4;35035:26;;:13;:18;;;:26;;;35031:67;;35070:28;;;;;;;;;;;;;;35031:67;35111:22;35153:4;35137:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;35174:36;35191:4;35197:12;:10;:12::i;:::-;35174:16;:36::i;:::-;35137:73;:126;;;;35251:12;:10;:12::i;:::-;35227:36;;:20;35239:7;35227:11;:20::i;:::-;:36;;;35137:126;35111:153;;35282:17;35277:66;;35308:35;;;;;;;;;;;;;;35277:66;35372:1;35358:16;;:2;:16;;;35354:52;;;35383:23;;;;;;;;;;;;;;35354:52;35419:43;35441:4;35447:2;35451:7;35460:1;35419:21;:43::i;:::-;35527:35;35544:1;35548:7;35557:4;35527:8;:35::i;:::-;35888:1;35858:12;:18;35871:4;35858:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35932:1;35904:12;:16;35917:2;35904:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;35950:31;35984:11;:20;35996:7;35984:20;;;;;;;;;;;35950:54;;36035:2;36019:8;:13;;;:18;;;;;;;;;;;;;;;;;;36085:15;36052:8;:23;;;:49;;;;;;;;;;;;;;;;;;36353:19;36385:1;36375:7;:11;36353:33;;36401:31;36435:11;:24;36447:11;36435:24;;;;;;;;;;;36401:58;;36503:1;36478:27;;:8;:13;;;;;;;;;;;;:27;;;36474:384;;;36688:13;;36673:11;:28;36669:174;;36742:4;36726:8;:13;;;:20;;;;;;;;;;;;;;;;;;36795:13;:28;;;36769:8;:23;;;:54;;;;;;;;;;;;;;;;;;36669:174;36474:384;34844:2130;;;36905:7;36901:2;36886:27;;36895:4;36886:27;;;;;;;;;;;;36924:42;36945:4;36951:2;36955:7;36964:1;36924:20;:42::i;:::-;34844:2130;;;;;:::o;37375:2408::-;37455:35;37493:21;37506:7;37493:12;:21::i;:::-;37455:59;;37527:12;37542:13;:18;;;37527:33;;37577:13;37573:290;;;37607:22;37649:4;37633:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;37674:36;37691:4;37697:12;:10;:12::i;:::-;37674:16;:36::i;:::-;37633:77;:134;;;;37755:12;:10;:12::i;:::-;37731:36;;:20;37743:7;37731:11;:20::i;:::-;:36;;;37633:134;37607:161;;37790:17;37785:66;;37816:35;;;;;;;;;;;;;;37785:66;37573:290;;37875:51;37897:4;37911:1;37915:7;37924:1;37875:21;:51::i;:::-;37991:35;38008:1;38012:7;38021:4;37991:8;:35::i;:::-;38322:31;38356:12;:18;38369:4;38356:18;;;;;;;;;;;;;;;38322:52;;38412:1;38389:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38456:1;38428:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38556:31;38590:11;:20;38602:7;38590:20;;;;;;;;;;;38556:54;;38641:4;38625:8;:13;;;:20;;;;;;;;;;;;;;;;;;38693:15;38660:8;:23;;;:49;;;;;;;;;;;;;;;;;;38742:4;38724:8;:15;;;:22;;;;;;;;;;;;;;;;;;38994:19;39026:1;39016:7;:11;38994:33;;39042:31;39076:11;:24;39088:11;39076:24;;;;;;;;;;;39042:58;;39144:1;39119:27;;:8;:13;;;;;;;;;;;;:27;;;39115:384;;;39329:13;;39314:11;:28;39310:174;;39383:4;39367:8;:13;;;:20;;;;;;;;;;;;;;;;;;39436:13;:28;;;39410:8;:23;;;:54;;;;;;;;;;;;;;;;;;39310:174;39115:384;37375:2408;;;;39554:7;39550:1;39527:35;;39536:4;39527:35;;;;;;;;;;;;39573:50;39594:4;39608:1;39612:7;39621:1;39573:20;:50::i;:::-;39750:12;;:14;;;;;;;;;;;;;37375:2408;;;;:::o;26365:1141::-;26454:21;;:::i;:::-;26493:12;26508:7;26493:22;;26576:4;26557:15;:13;:15::i;:::-;:23;;:47;;;;;26591:13;;26584:4;:20;26557:47;26553:886;;;26625:31;26659:11;:17;26671:4;26659:17;;;;;;;;;;;26625:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;26700:9;:16;;;26695:729;;26771:1;26745:28;;:9;:14;;;:28;;;26741:101;;26809:9;26802:16;;;;;;26741:101;27144:261;27151:4;27144:261;;;27184:6;;;;;;;;27229:11;:17;27241:4;27229:17;;;;;;;;;;;27217:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27303:1;27277:28;;:9;:14;;;:28;;;27273:109;;27345:9;27338:16;;;;;;27273:109;27144:261;;;26695:729;26553:886;;27467:31;;;;;;;;;;;;;;26365:1141;;;;:::o;29685:319::-;29828:12;:10;:12::i;:::-;29816:24;;:8;:24;;;29812:54;;;29849:17;;;;;;;;;;;;;;29812:54;29924:8;29879:18;:32;29898:12;:10;:12::i;:::-;29879:32;;;;;;;;;;;;;;;:42;29912:8;29879:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;29977:8;29948:48;;29963:12;:10;:12::i;:::-;29948:48;;;29987:8;29948:48;;;;;;:::i;:::-;;;;;;;;29685:319;;:::o;8980:326::-;9040:4;9297:1;9275:7;:19;;;:23;9268:30;;8980:326;;;:::o;40589:772::-;40752:4;40802:2;40786:36;;;40841:12;:10;:12::i;:::-;40872:4;40895:7;40921:5;40786:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;40769:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41129:1;41112:6;:13;:18;41108:235;;;41158:40;;;;;;;;;;;;;;41108:235;41301:6;41295:13;41286:6;41282:2;41278:15;41271:38;40769:585;41007:45;;;40997:55;;;:6;:55;;;;40990:62;;;40589:772;;;;;;:::o;44699:100::-;44751:13;44784:7;44777:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;44699:100;:::o;17520:723::-;17576:13;17806:1;17797:5;:10;17793:53;;;17824:10;;;;;;;;;;;;;;;;;;;;;17793:53;17856:12;17871:5;17856:20;;17887:14;17912:78;17927:1;17919:4;:9;17912:78;;17945:8;;;;;:::i;:::-;;;;17976:2;17968:10;;;;;:::i;:::-;;;17912:78;;;18000:19;18032:6;18022:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;18000:39;;18050:154;18066:1;18057:5;:10;18050:154;;18094:1;18084:11;;;;;:::i;:::-;;;18161:2;18153:5;:10;;;;:::i;:::-;18140:2;:24;;;;:::i;:::-;18127:39;;18110:6;18117;18110:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;18190:2;18181:11;;;;;:::i;:::-;;;18050:154;;;18228:6;18214:21;;;;;17520:723;;;;:::o;31735:104::-;31804:27;31814:2;31818:8;31804:27;;;;;;;;;;;;:9;:27::i;:::-;31735:104;;:::o;16935:98::-;16988:7;17015:10;17008:17;;16935:98;:::o;39901:196::-;40043:2;40016:15;:24;40032:7;40016:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;40081:7;40077:2;40061:28;;40070:5;40061:28;;;;;;;;;;;;39901:196;;;:::o;45438:370::-;45615:61;45643:4;45649:2;45653:12;45667:8;45615:27;:61::i;:::-;45709:1;45693:18;;:4;:18;;;;:38;;;;;45729:1;45715:16;;:2;:16;;;;45693:38;45689:112;;;45752:7;;;;;;;;;;;45748:41;;;45768:21;;;;;;;;;;;;;;45748:41;45689:112;45438:370;;;;:::o;42827:158::-;;;;;:::o;32202:163::-;32325:32;32331:2;32335:8;32345:5;32352:4;32325:5;:32::i;:::-;32202:163;;;:::o;42009:159::-;;;;;:::o;32624:1966::-;32763:20;32786:13;;32763:36;;32828:1;32814:16;;:2;:16;;;32810:48;;;32839:19;;;;;;;;;;;;;;32810:48;32885:1;32873:8;:13;32869:44;;;32895:18;;;;;;;;;;;;;;32869:44;32926:61;32956:1;32960:2;32964:12;32978:8;32926:21;:61::i;:::-;33299:8;33264:12;:16;33277:2;33264:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33363:8;33323:12;:16;33336:2;33323:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33422:2;33389:11;:25;33401:12;33389:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;33489:15;33439:11;:25;33451:12;33439:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;33522:20;33545:12;33522:35;;33572:11;33601:8;33586:12;:23;33572:37;;33630:4;:23;;;;;33638:15;:2;:13;;;:15::i;:::-;33630:23;33626:832;;;33674:505;33730:12;33726:2;33705:38;;33722:1;33705:38;;;;;;;;;;;;33797:212;33866:1;33899:2;33932:14;;;;;;33977:5;33797:30;:212::i;:::-;33766:365;;34067:40;;;;;;;;;;;;;;33766:365;34174:3;34158:12;:19;;33674:505;;34260:12;34243:13;;:29;34239:43;;34274:8;;;34239:43;33626:832;;;34323:120;34379:14;;;;;;34375:2;34354:40;;34371:1;34354:40;;;;;;;;;;;;34438:3;34422:12;:19;;34323:120;;33626:832;34488:12;34472:13;:28;;;;32624:1966;;34522:60;34551:1;34555:2;34559:12;34573:8;34522:20;:60::i;:::-;32624:1966;;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:655:1:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:2;;;414:1;411;404:12;350:2;450:1;435:238;460:6;457:1;454:13;435:238;;;528:3;557:37;590:3;578:10;557:37;:::i;:::-;552:3;545:50;624:4;619:3;615:14;608:21;;658:4;653:3;649:14;642:21;;495:178;482:1;479;475:9;470:14;;435:238;;;439:14;126:553;;;;;;;:::o;685:343::-;762:5;787:65;803:48;844:6;803:48;:::i;:::-;787:65;:::i;:::-;778:74;;875:6;868:5;861:21;913:4;906:5;902:16;951:3;942:6;937:3;933:16;930:25;927:2;;;968:1;965;958:12;927:2;981:41;1015:6;1010:3;1005;981:41;:::i;:::-;768:260;;;;;;:::o;1034:345::-;1112:5;1137:66;1153:49;1195:6;1153:49;:::i;:::-;1137:66;:::i;:::-;1128:75;;1226:6;1219:5;1212:21;1264:4;1257:5;1253:16;1302:3;1293:6;1288:3;1284:16;1281:25;1278:2;;;1319:1;1316;1309:12;1278:2;1332:41;1366:6;1361:3;1356;1332:41;:::i;:::-;1118:261;;;;;;:::o;1385:139::-;1431:5;1469:6;1456:20;1447:29;;1485:33;1512:5;1485:33;:::i;:::-;1437:87;;;;:::o;1547:367::-;1620:8;1630:6;1680:3;1673:4;1665:6;1661:17;1657:27;1647:2;;1698:1;1695;1688:12;1647:2;1734:6;1721:20;1711:30;;1764:18;1756:6;1753:30;1750:2;;;1796:1;1793;1786:12;1750:2;1833:4;1825:6;1821:17;1809:29;;1887:3;1879:4;1871:6;1867:17;1857:8;1853:32;1850:41;1847:2;;;1904:1;1901;1894:12;1847:2;1637:277;;;;;:::o;1937:303::-;2008:5;2057:3;2050:4;2042:6;2038:17;2034:27;2024:2;;2075:1;2072;2065:12;2024:2;2115:6;2102:20;2140:94;2230:3;2222:6;2215:4;2207:6;2203:17;2140:94;:::i;:::-;2131:103;;2014:226;;;;;:::o;2246:133::-;2289:5;2327:6;2314:20;2305:29;;2343:30;2367:5;2343:30;:::i;:::-;2295:84;;;;:::o;2385:137::-;2430:5;2468:6;2455:20;2446:29;;2484:32;2510:5;2484:32;:::i;:::-;2436:86;;;;:::o;2528:141::-;2584:5;2615:6;2609:13;2600:22;;2631:32;2657:5;2631:32;:::i;:::-;2590:79;;;;:::o;2688:271::-;2743:5;2792:3;2785:4;2777:6;2773:17;2769:27;2759:2;;2810:1;2807;2800:12;2759:2;2850:6;2837:20;2875:78;2949:3;2941:6;2934:4;2926:6;2922:17;2875:78;:::i;:::-;2866:87;;2749:210;;;;;:::o;2979:273::-;3035:5;3084:3;3077:4;3069:6;3065:17;3061:27;3051:2;;3102:1;3099;3092:12;3051:2;3142:6;3129:20;3167:79;3242:3;3234:6;3227:4;3219:6;3215:17;3167:79;:::i;:::-;3158:88;;3041:211;;;;;:::o;3258:139::-;3304:5;3342:6;3329:20;3320:29;;3358:33;3385:5;3358:33;:::i;:::-;3310:87;;;;:::o;3403:262::-;3462:6;3511:2;3499:9;3490:7;3486:23;3482:32;3479:2;;;3527:1;3524;3517:12;3479:2;3570:1;3595:53;3640:7;3631:6;3620:9;3616:22;3595:53;:::i;:::-;3585:63;;3541:117;3469:196;;;;:::o;3671:407::-;3739:6;3747;3796:2;3784:9;3775:7;3771:23;3767:32;3764:2;;;3812:1;3809;3802:12;3764:2;3855:1;3880:53;3925:7;3916:6;3905:9;3901:22;3880:53;:::i;:::-;3870:63;;3826:117;3982:2;4008:53;4053:7;4044:6;4033:9;4029:22;4008:53;:::i;:::-;3998:63;;3953:118;3754:324;;;;;:::o;4084:552::-;4161:6;4169;4177;4226:2;4214:9;4205:7;4201:23;4197:32;4194:2;;;4242:1;4239;4232:12;4194:2;4285:1;4310:53;4355:7;4346:6;4335:9;4331:22;4310:53;:::i;:::-;4300:63;;4256:117;4412:2;4438:53;4483:7;4474:6;4463:9;4459:22;4438:53;:::i;:::-;4428:63;;4383:118;4540:2;4566:53;4611:7;4602:6;4591:9;4587:22;4566:53;:::i;:::-;4556:63;;4511:118;4184:452;;;;;:::o;4642:809::-;4737:6;4745;4753;4761;4810:3;4798:9;4789:7;4785:23;4781:33;4778:2;;;4827:1;4824;4817:12;4778:2;4870:1;4895:53;4940:7;4931:6;4920:9;4916:22;4895:53;:::i;:::-;4885:63;;4841:117;4997:2;5023:53;5068:7;5059:6;5048:9;5044:22;5023:53;:::i;:::-;5013:63;;4968:118;5125:2;5151:53;5196:7;5187:6;5176:9;5172:22;5151:53;:::i;:::-;5141:63;;5096:118;5281:2;5270:9;5266:18;5253:32;5312:18;5304:6;5301:30;5298:2;;;5344:1;5341;5334:12;5298:2;5372:62;5426:7;5417:6;5406:9;5402:22;5372:62;:::i;:::-;5362:72;;5224:220;4768:683;;;;;;;:::o;5457:401::-;5522:6;5530;5579:2;5567:9;5558:7;5554:23;5550:32;5547:2;;;5595:1;5592;5585:12;5547:2;5638:1;5663:53;5708:7;5699:6;5688:9;5684:22;5663:53;:::i;:::-;5653:63;;5609:117;5765:2;5791:50;5833:7;5824:6;5813:9;5809:22;5791:50;:::i;:::-;5781:60;;5736:115;5537:321;;;;;:::o;5864:407::-;5932:6;5940;5989:2;5977:9;5968:7;5964:23;5960:32;5957:2;;;6005:1;6002;5995:12;5957:2;6048:1;6073:53;6118:7;6109:6;6098:9;6094:22;6073:53;:::i;:::-;6063:63;;6019:117;6175:2;6201:53;6246:7;6237:6;6226:9;6222:22;6201:53;:::i;:::-;6191:63;;6146:118;5947:324;;;;;:::o;6277:425::-;6363:6;6371;6420:2;6408:9;6399:7;6395:23;6391:32;6388:2;;;6436:1;6433;6426:12;6388:2;6507:1;6496:9;6492:17;6479:31;6537:18;6529:6;6526:30;6523:2;;;6569:1;6566;6559:12;6523:2;6605:80;6677:7;6668:6;6657:9;6653:22;6605:80;:::i;:::-;6587:98;;;;6450:245;6378:324;;;;;:::o;6708:405::-;6792:6;6841:2;6829:9;6820:7;6816:23;6812:32;6809:2;;;6857:1;6854;6847:12;6809:2;6928:1;6917:9;6913:17;6900:31;6958:18;6950:6;6947:30;6944:2;;;6990:1;6987;6980:12;6944:2;7018:78;7088:7;7079:6;7068:9;7064:22;7018:78;:::i;:::-;7008:88;;6871:235;6799:314;;;;:::o;7119:256::-;7175:6;7224:2;7212:9;7203:7;7199:23;7195:32;7192:2;;;7240:1;7237;7230:12;7192:2;7283:1;7308:50;7350:7;7341:6;7330:9;7326:22;7308:50;:::i;:::-;7298:60;;7254:114;7182:193;;;;:::o;7381:260::-;7439:6;7488:2;7476:9;7467:7;7463:23;7459:32;7456:2;;;7504:1;7501;7494:12;7456:2;7547:1;7572:52;7616:7;7607:6;7596:9;7592:22;7572:52;:::i;:::-;7562:62;;7518:116;7446:195;;;;:::o;7647:282::-;7716:6;7765:2;7753:9;7744:7;7740:23;7736:32;7733:2;;;7781:1;7778;7771:12;7733:2;7824:1;7849:63;7904:7;7895:6;7884:9;7880:22;7849:63;:::i;:::-;7839:73;;7795:127;7723:206;;;;:::o;7935:375::-;8004:6;8053:2;8041:9;8032:7;8028:23;8024:32;8021:2;;;8069:1;8066;8059:12;8021:2;8140:1;8129:9;8125:17;8112:31;8170:18;8162:6;8159:30;8156:2;;;8202:1;8199;8192:12;8156:2;8230:63;8285:7;8276:6;8265:9;8261:22;8230:63;:::i;:::-;8220:73;;8083:220;8011:299;;;;:::o;8316:262::-;8375:6;8424:2;8412:9;8403:7;8399:23;8395:32;8392:2;;;8440:1;8437;8430:12;8392:2;8483:1;8508:53;8553:7;8544:6;8533:9;8529:22;8508:53;:::i;:::-;8498:63;;8454:117;8382:196;;;;:::o;8584:118::-;8671:24;8689:5;8671:24;:::i;:::-;8666:3;8659:37;8649:53;;:::o;8708:109::-;8789:21;8804:5;8789:21;:::i;:::-;8784:3;8777:34;8767:50;;:::o;8823:360::-;8909:3;8937:38;8969:5;8937:38;:::i;:::-;8991:70;9054:6;9049:3;8991:70;:::i;:::-;8984:77;;9070:52;9115:6;9110:3;9103:4;9096:5;9092:16;9070:52;:::i;:::-;9147:29;9169:6;9147:29;:::i;:::-;9142:3;9138:39;9131:46;;8913:270;;;;;:::o;9189:364::-;9277:3;9305:39;9338:5;9305:39;:::i;:::-;9360:71;9424:6;9419:3;9360:71;:::i;:::-;9353:78;;9440:52;9485:6;9480:3;9473:4;9466:5;9462:16;9440:52;:::i;:::-;9517:29;9539:6;9517:29;:::i;:::-;9512:3;9508:39;9501:46;;9281:272;;;;;:::o;9559:377::-;9665:3;9693:39;9726:5;9693:39;:::i;:::-;9748:89;9830:6;9825:3;9748:89;:::i;:::-;9741:96;;9846:52;9891:6;9886:3;9879:4;9872:5;9868:16;9846:52;:::i;:::-;9923:6;9918:3;9914:16;9907:23;;9669:267;;;;;:::o;9942:118::-;10029:24;10047:5;10029:24;:::i;:::-;10024:3;10017:37;10007:53;;:::o;10066:435::-;10246:3;10268:95;10359:3;10350:6;10268:95;:::i;:::-;10261:102;;10380:95;10471:3;10462:6;10380:95;:::i;:::-;10373:102;;10492:3;10485:10;;10250:251;;;;;:::o;10507:222::-;10600:4;10638:2;10627:9;10623:18;10615:26;;10651:71;10719:1;10708:9;10704:17;10695:6;10651:71;:::i;:::-;10605:124;;;;:::o;10735:640::-;10930:4;10968:3;10957:9;10953:19;10945:27;;10982:71;11050:1;11039:9;11035:17;11026:6;10982:71;:::i;:::-;11063:72;11131:2;11120:9;11116:18;11107:6;11063:72;:::i;:::-;11145;11213:2;11202:9;11198:18;11189:6;11145:72;:::i;:::-;11264:9;11258:4;11254:20;11249:2;11238:9;11234:18;11227:48;11292:76;11363:4;11354:6;11292:76;:::i;:::-;11284:84;;10935:440;;;;;;;:::o;11381:210::-;11468:4;11506:2;11495:9;11491:18;11483:26;;11519:65;11581:1;11570:9;11566:17;11557:6;11519:65;:::i;:::-;11473:118;;;;:::o;11597:313::-;11710:4;11748:2;11737:9;11733:18;11725:26;;11797:9;11791:4;11787:20;11783:1;11772:9;11768:17;11761:47;11825:78;11898:4;11889:6;11825:78;:::i;:::-;11817:86;;11715:195;;;;:::o;11916:222::-;12009:4;12047:2;12036:9;12032:18;12024:26;;12060:71;12128:1;12117:9;12113:17;12104:6;12060:71;:::i;:::-;12014:124;;;;:::o;12144:129::-;12178:6;12205:20;;:::i;:::-;12195:30;;12234:33;12262:4;12254:6;12234:33;:::i;:::-;12185:88;;;:::o;12279:75::-;12312:6;12345:2;12339:9;12329:19;;12319:35;:::o;12360:311::-;12437:4;12527:18;12519:6;12516:30;12513:2;;;12549:18;;:::i;:::-;12513:2;12599:4;12591:6;12587:17;12579:25;;12659:4;12653;12649:15;12641:23;;12442:229;;;:::o;12677:307::-;12738:4;12828:18;12820:6;12817:30;12814:2;;;12850:18;;:::i;:::-;12814:2;12888:29;12910:6;12888:29;:::i;:::-;12880:37;;12972:4;12966;12962:15;12954:23;;12743:241;;;:::o;12990:308::-;13052:4;13142:18;13134:6;13131:30;13128:2;;;13164:18;;:::i;:::-;13128:2;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;13057:241;;;:::o;13304:98::-;13355:6;13389:5;13383:12;13373:22;;13362:40;;;:::o;13408:99::-;13460:6;13494:5;13488:12;13478:22;;13467:40;;;:::o;13513:168::-;13596:11;13630:6;13625:3;13618:19;13670:4;13665:3;13661:14;13646:29;;13608:73;;;;:::o;13687:169::-;13771:11;13805:6;13800:3;13793:19;13845:4;13840:3;13836:14;13821:29;;13783:73;;;;:::o;13862:148::-;13964:11;14001:3;13986:18;;13976:34;;;;:::o;14016:305::-;14056:3;14075:20;14093:1;14075:20;:::i;:::-;14070:25;;14109:20;14127:1;14109:20;:::i;:::-;14104:25;;14263:1;14195:66;14191:74;14188:1;14185:81;14182:2;;;14269:18;;:::i;:::-;14182:2;14313:1;14310;14306:9;14299:16;;14060:261;;;;:::o;14327:185::-;14367:1;14384:20;14402:1;14384:20;:::i;:::-;14379:25;;14418:20;14436:1;14418:20;:::i;:::-;14413:25;;14457:1;14447:2;;14462:18;;:::i;:::-;14447:2;14504:1;14501;14497:9;14492:14;;14369:143;;;;:::o;14518:191::-;14558:4;14578:20;14596:1;14578:20;:::i;:::-;14573:25;;14612:20;14630:1;14612:20;:::i;:::-;14607:25;;14651:1;14648;14645:8;14642:2;;;14656:18;;:::i;:::-;14642:2;14701:1;14698;14694:9;14686:17;;14563:146;;;;:::o;14715:96::-;14752:7;14781:24;14799:5;14781:24;:::i;:::-;14770:35;;14760:51;;;:::o;14817:90::-;14851:7;14894:5;14887:13;14880:21;14869:32;;14859:48;;;:::o;14913:149::-;14949:7;14989:66;14982:5;14978:78;14967:89;;14957:105;;;:::o;15068:126::-;15105:7;15145:42;15138:5;15134:54;15123:65;;15113:81;;;:::o;15200:77::-;15237:7;15266:5;15255:16;;15245:32;;;:::o;15283:86::-;15318:7;15358:4;15351:5;15347:16;15336:27;;15326:43;;;:::o;15375:154::-;15459:6;15454:3;15449;15436:30;15521:1;15512:6;15507:3;15503:16;15496:27;15426:103;;;:::o;15535:307::-;15603:1;15613:113;15627:6;15624:1;15621:13;15613:113;;;15712:1;15707:3;15703:11;15697:18;15693:1;15688:3;15684:11;15677:39;15649:2;15646:1;15642:10;15637:15;;15613:113;;;15744:6;15741:1;15738:13;15735:2;;;15824:1;15815:6;15810:3;15806:16;15799:27;15735:2;15584:258;;;;:::o;15848:320::-;15892:6;15929:1;15923:4;15919:12;15909:22;;15976:1;15970:4;15966:12;15997:18;15987:2;;16053:4;16045:6;16041:17;16031:27;;15987:2;16115;16107:6;16104:14;16084:18;16081:38;16078:2;;;16134:18;;:::i;:::-;16078:2;15899:269;;;;:::o;16174:281::-;16257:27;16279:4;16257:27;:::i;:::-;16249:6;16245:40;16387:6;16375:10;16372:22;16351:18;16339:10;16336:34;16333:62;16330:2;;;16398:18;;:::i;:::-;16330:2;16438:10;16434:2;16427:22;16217:238;;;:::o;16461:233::-;16500:3;16523:24;16541:5;16523:24;:::i;:::-;16514:33;;16569:66;16562:5;16559:77;16556:2;;;16639:18;;:::i;:::-;16556:2;16686:1;16679:5;16675:13;16668:20;;16504:190;;;:::o;16700:167::-;16737:3;16760:22;16776:5;16760:22;:::i;:::-;16751:31;;16804:4;16797:5;16794:15;16791:2;;;16812:18;;:::i;:::-;16791:2;16859:1;16852:5;16848:13;16841:20;;16741:126;;;:::o;16873:176::-;16905:1;16922:20;16940:1;16922:20;:::i;:::-;16917:25;;16956:20;16974:1;16956:20;:::i;:::-;16951:25;;16995:1;16985:2;;17000:18;;:::i;:::-;16985:2;17041:1;17038;17034:9;17029:14;;16907:142;;;;:::o;17055:180::-;17103:77;17100:1;17093:88;17200:4;17197:1;17190:15;17224:4;17221:1;17214:15;17241:180;17289:77;17286:1;17279:88;17386:4;17383:1;17376:15;17410:4;17407:1;17400:15;17427:180;17475:77;17472:1;17465:88;17572:4;17569:1;17562:15;17596:4;17593:1;17586:15;17613:180;17661:77;17658:1;17651:88;17758:4;17755:1;17748:15;17782:4;17779:1;17772:15;17799:102;17840:6;17891:2;17887:7;17882:2;17875:5;17871:14;17867:28;17857:38;;17847:54;;;:::o;17907:122::-;17980:24;17998:5;17980:24;:::i;:::-;17973:5;17970:35;17960:2;;18019:1;18016;18009:12;17960:2;17950:79;:::o;18035:116::-;18105:21;18120:5;18105:21;:::i;:::-;18098:5;18095:32;18085:2;;18141:1;18138;18131:12;18085:2;18075:76;:::o;18157:120::-;18229:23;18246:5;18229:23;:::i;:::-;18222:5;18219:34;18209:2;;18267:1;18264;18257:12;18209:2;18199:78;:::o;18283:122::-;18356:24;18374:5;18356:24;:::i;:::-;18349:5;18346:35;18336:2;;18395:1;18392;18385:12;18336:2;18326:79;:::o

Swarm Source

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