ETH Price: $3,243.79 (-0.34%)
Gas: 21 Gwei

Token

Fab Four Gear Genesis VIP Pass (FAB)
 

Overview

Max Total Supply

92 FAB

Holders

56

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
3 FAB
0x1346e5b390ad61c4bb7b1d58b53157f95b3ee893
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:
FabFourGear

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT
// File: @openzeppelin/contracts/utils/Strings.sol

pragma solidity ^0.8.0;

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

    function _setOwner(address newOwner) private {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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



pragma solidity ^0.8.0;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;

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

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



pragma solidity ^0.8.0;


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

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



pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

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

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

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

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

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



pragma solidity ^0.8.0;


/**
 * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension
 * @dev See https://eips.ethereum.org/EIPS/eip-721
 */
interface IERC721Enumerable is IERC721 {
    /**
     * @dev Returns the total amount of tokens stored by the contract.
     */
    function totalSupply() external view returns (uint256);

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

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

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



pragma solidity ^0.8.0;


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

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

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

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



pragma solidity ^0.8.0;








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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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

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



pragma solidity ^0.8.0;



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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

// File: contracts/FabFour.sol


pragma solidity ^0.8.4;




contract FabFourGear is ERC721Enumerable, Ownable{
    using Strings for uint256;
    
    // Constant variables
    // ------------------------------------------------------------------------
    uint256 public constant SUPPLY_HARD_CAP = 4444; // Total amount of FAB
    uint256 public constant PRESALE_SUPPLY = 444; // Total amount of FAB available for presale

    uint256 public constant MAX_CLAIM_PER_WALLET_PRESALE = 2; // Max each address can purchase during presale
    uint256 public constant MAX_CLAIM_PER_WALLET_PUBLIC = 4; // Max amount of FAB per wallet during public sale.
    uint256 public constant MAX_PER_TX_PRESALE = 2; // Max amount of FAB per tx presale
    uint256 public constant MAX_PER_TX_PUBLIC = 4; // Max amount of FAB per tx public sale

    uint256 public constant PRESALE_PRICE = .02 ether;
    uint256 public constant PRICE = 0.04 ether;
    
    //Variable variables
    // ------------------------------------------------------------------------
    uint256 public reservedSupply = 125; // Amount of FAB reserved for the team and fans
    uint256 public presaleMinted = 0;


    // Team addresses
    // ------------------------------------------------------------------------
    address private constant _a1 = 0x9D11BD2eca5f42eE8bed9db5D11f66cffB868927;
    address private constant _a2 = 0x62A10BF70c9eA5c5350A1a0016C273875DD44263;
    address private constant _a3 = 0x1346e5B390AD61C4Bb7B1d58b53157f95B3Ee893;
    address private constant _a4 = 0x52Ea2a1A5FC76cEc50F5616C263F49292102Af64;
    address private constant _a5 = 0xce550745Cfd4F4C85338908670CD6311F7dAb44a;
    address private constant _a6 = 0x4dbDa0BC6C9acf197333847b4d6C052a179b4F24;
    address private constant _a7 = 0xDB2214Ed07d122f11c4d1b89cD002F1f6eA79e4c;
    address private constant _a8 = 0x73FF3b28216C3bea994787A845b202fAC40c92cE;
    address private constant _a9 = 0xFb77701BA36363b750d628bDFbE8C1259aFa95cb;
    address private constant _a10 = 0x8c39F90513B43A21418513eA484d7CBd8261421b;
    

    // State variables
    // ------------------------------------------------------------------------
    bool public isPresaleActive = false;
    bool public isPublicSaleActive = false;


    // Mappings
    // ------------------------------------------------------------------------
    mapping(address => uint256) private _presaleClaimed;
    mapping(address => uint256) private _totalClaimed;
    mapping(address => bool) private _trustedParties;

    // URI variables
    // ------------------------------------------------------------------------
    string private _contractURI;
    string private _baseTokenURI;

    // Events
    // ------------------------------------------------------------------------
    event BaseTokenURIChanged(string baseTokenURI);
    event ContractURIChanged(string contractURI);

    // Constructor
    // ------------------------------------------------------------------------
    constructor(
        string memory _initBaseURI,
        string memory _initContractURI
        ) ERC721("Fab Four Gear Genesis VIP Pass", "FAB") {
            _contractURI = _initContractURI;
            _baseTokenURI = _initBaseURI;
    }


    // Modifiers
    // ------------------------------------------------------------------------
    modifier onlyPresale() { 
        require(isPresaleActive, "PRESALE_NOT_ACTIVE");
        _;
    }

    modifier onlyPublicSale() {
        require(isPublicSaleActive, "PUBLIC_SALE_NOT_ACTIVE");
        _;
    }
    
    modifier onlyTrustedParties(address addr) {
        require(_trustedParties[addr], "NOT_A_TRUSTED_PARTY");
        _;
    }
    
    // Permissions functions
    // ------------------------------------------------------------------------
    function addToTrustedParties(address[] calldata addresses) external onlyOwner {
        for(uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "NULL_ADDRESS");
            require(!_trustedParties[addresses[i]], "DUPLICATE_ENTRY");

            _trustedParties[addresses[i]] = true;
        }
    }

    function removeFromTrustedParties(address[] calldata addresses) external onlyOwner {
        for(uint256 i = 0; i < addresses.length; i++) {
            require(addresses[i] != address(0), "NULL_ADDRESS");
            require(_trustedParties[addresses[i]], "NOT_IN_PRESALE");

            _trustedParties[addresses[i]] = false;
        }
    }

    // Presale functions
    // ------------------------------------------------------------------------
    function hasClaimedPresale(address addr) external view returns (bool) {
        require(addr != address(0), "NULL_ADDRESS");

        return _presaleClaimed[addr] == MAX_CLAIM_PER_WALLET_PRESALE;
    }

    function togglePresaleStatus() external onlyOwner {
        isPresaleActive = !isPresaleActive;
    }

    function togglePublicSaleStatus() external onlyOwner {
        isPublicSaleActive = !isPublicSaleActive;
    }


    // Mint functions
    // ------------------------------------------------------------------------
    function claimReserveNFTs(uint256 quantity, address addr) external onlyOwner {
        require(totalSupply() < SUPPLY_HARD_CAP, "SOLD_OUT");
        require(totalSupply() + quantity <= SUPPLY_HARD_CAP, "EXCEEDS_TOTAL_SUPPLY");
        require(quantity <= reservedSupply, "NO_MORE_RESERVED_TOKENS_AVAILABLE");
        require(quantity > 0, "MUST_MINT_AT_LEAST_ONE_TOKEN");

        for (uint256 i = 0; i < quantity; i++) {
            _safeMint(addr, totalSupply() + 1);
            reservedSupply -= 1;
        }
    }

    function claimPresaleNFTs(uint256 quantity) external payable onlyPresale {
        require(_presaleClaimed[msg.sender] < MAX_CLAIM_PER_WALLET_PRESALE, "ALREADY_CLAIMED");
        require(_presaleClaimed[msg.sender] + quantity <= MAX_CLAIM_PER_WALLET_PRESALE, "EXCEEDS_ALLOCATION");
        require(presaleMinted < PRESALE_SUPPLY, "PRESALE_SOLD_OUT");
        require(presaleMinted + quantity <= PRESALE_SUPPLY, "EXCEEDS_PRESALE_SUPPLY");
        require(PRESALE_PRICE * quantity == msg.value, "INVALID_ETH_AMOUNT");
        require(quantity > 0, "QUANTITY_CANNOT_BE_ZERO");
        require(quantity <= MAX_PER_TX_PRESALE, "EXCEEDS_MAX_MINT");
        require(totalSupply() < SUPPLY_HARD_CAP - reservedSupply, "SOLD_OUT");

        for (uint256 i = 0; i < quantity; i++) {
            _presaleClaimed[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply() + 1);
            presaleMinted += 1;
        }
    }

    function mint(uint256 quantity) external payable onlyPublicSale {
        require(tx.origin == msg.sender, "GO_AWAY_BOT_ORIGIN");
        
        require(totalSupply() < SUPPLY_HARD_CAP - reservedSupply, "SOLD_OUT");
        require(quantity > 0, "QUANTITY_CANNOT_BE_ZERO");
        require(totalSupply() + quantity <= SUPPLY_HARD_CAP - reservedSupply, "EXCEEDS_MAX_SUPPLY");
        require(quantity <= MAX_PER_TX_PUBLIC, "EXCEEDS_MAX_MINT");
        require(_totalClaimed[msg.sender] + _presaleClaimed[msg.sender] + quantity <= MAX_CLAIM_PER_WALLET_PUBLIC, "EXCEEDS_MAX_ALLOWANCE");
        require(PRICE * quantity == msg.value, "INVALID_ETH_AMOUNT");

        for (uint256 i = 0; i < quantity; i++) {
            _totalClaimed[msg.sender] += 1;
            _safeMint(msg.sender, totalSupply() + 1);
        }
    }


    // Base URI Functions
    // ------------------------------------------------------------------------
    function setContractURI(string calldata URI) external onlyOwner {
        _contractURI = URI;
        emit ContractURIChanged(URI);
    }

    function contractURI() public view returns (string memory) {
        return _contractURI;
    }
    
    function setBaseTokenURI(string calldata URI) external onlyOwner {
        _baseTokenURI = URI;
        emit BaseTokenURIChanged(URI);
    }

    function baseTokenURI() public view returns (string memory) {
        return _baseTokenURI;
    }
    
    function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
        require(_exists(tokenId), "Cannot query non-existent token");
        string memory uniqueId = string(abi.encodePacked(tokenId.toString(), ".json"));
        return string(abi.encodePacked(_baseTokenURI, uniqueId));
    }
    
    //Withdrawal functions
    // ------------------------------------------------------------------------
    function withdrawAll() external onlyTrustedParties(msg.sender) {
        uint _a1amount = address(this).balance * 26/100;
        uint _a2amount = address(this).balance * 15/100;
        uint _a3amount = address(this).balance * 15/100;
        uint _a4amount = address(this).balance * 10/100;
        uint _a5amount = address(this).balance * 7/100; 
        uint _a6amount = address(this).balance * 7/100; 
        uint _a7amount = address(this).balance * 5/100; 
        uint _a8amount = address(this).balance * 5/100; 
        uint _a9amount = address(this).balance * 5/100; 
        uint _a10amount = address(this).balance * 5/100; 

        require(payable(_a1).send(_a1amount), "FAILED_TO_SEND_TO_A1");
        require(payable(_a2).send(_a2amount), "FAILED_TO_SEND_TO_A2");
        require(payable(_a3).send(_a3amount), "FAILED_TO_SEND_TO_A3");
        require(payable(_a4).send(_a4amount), "FAILED_TO_SEND_TO_A4");
        require(payable(_a5).send(_a5amount), "FAILED_TO_SEND_TO_A5");
        require(payable(_a6).send(_a6amount), "FAILED_TO_SEND_TO_A6");
        require(payable(_a7).send(_a7amount), "FAILED_TO_SEND_TO_A7");
        require(payable(_a8).send(_a8amount), "FAILED_TO_SEND_TO_A8");
        require(payable(_a9).send(_a9amount), "FAILED_TO_SEND_TO_A9");
        require(payable(_a10).send(_a10amount), "FAILED_TO_SEND_TO_A10");
    }

    function emergencyWithdraw() external onlyTrustedParties(msg.sender) { 
        payable(_a1).transfer(address(this).balance); 
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initContractURI","type":"string"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"baseTokenURI","type":"string"}],"name":"BaseTokenURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"contractURI","type":"string"}],"name":"ContractURIChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_CLAIM_PER_WALLET_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_CLAIM_PER_WALLET_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_PRESALE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_PER_TX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRESALE_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"SUPPLY_HARD_CAP","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"addToTrustedParties","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":"baseTokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"claimPresaleNFTs","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"},{"internalType":"address","name":"addr","type":"address"}],"name":"claimReserveNFTs","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdraw","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":"addr","type":"address"}],"name":"hasClaimedPresale","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"isPresaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"quantity","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"presaleMinted","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"addresses","type":"address[]"}],"name":"removeFromTrustedParties","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedSupply","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":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseTokenURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","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":[],"name":"togglePresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6080604052607d600b556000600c55600d805461ffff191690553480156200002657600080fd5b5060405162003753380380620037538339810160408190526200004991620002c3565b604080518082018252601e81527f46616220466f757220476561722047656e6573697320564950205061737300006020808301918252835180850190945260038452622320a160e91b908401528151919291620000a99160009162000166565b508051620000bf90600190602084019062000166565b505050620000dc620000d66200011060201b60201c565b62000114565b8051620000f190601190602084019062000166565b5081516200010790601290602085019062000166565b50505062000380565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805462000174906200032d565b90600052602060002090601f016020900481019282620001985760008555620001e3565b82601f10620001b357805160ff1916838001178555620001e3565b82800160010185558215620001e3579182015b82811115620001e3578251825591602001919060010190620001c6565b50620001f1929150620001f5565b5090565b5b80821115620001f15760008155600101620001f6565b600082601f8301126200021e57600080fd5b81516001600160401b03808211156200023b576200023b6200036a565b604051601f8301601f19908116603f011681019082821181831017156200026657620002666200036a565b816040528381526020925086838588010111156200028357600080fd5b600091505b83821015620002a7578582018301518183018401529082019062000288565b83821115620002b95760008385830101525b9695505050505050565b60008060408385031215620002d757600080fd5b82516001600160401b0380821115620002ef57600080fd5b620002fd868387016200020c565b935060208501519150808211156200031457600080fd5b5062000323858286016200020c565b9150509250929050565b600181811c908216806200034257607f821691505b602082108114156200036457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b6133c380620003906000396000f3fe6080604052600436106102725760003560e01c806370a082311161014f578063974e6b8f116100c1578063d547cfb71161007a578063d547cfb7146106c9578063db2e21bc146106de578063e8a3d485146106f3578063e985e9c514610708578063f1a63f4914610328578063f2fde38b1461075157600080fd5b8063974e6b8f1461036b578063a0712d6814610641578063a22cb46514610654578063b88d4fde14610674578063b9ad9fde14610694578063c87b56dd146106a957600080fd5b806380ddcc621161011357806380ddcc62146105a8578063853828b6146105be5780638d859f3e146105d35780638da5cb5b146105ee578063938e3d7b1461060c57806395d89b411461062c57600080fd5b806370a0823114610532578063715018a61461055257806373138e4f1461056757806373aee9291461057d5780637bffb4ce1461059357600080fd5b80632a3c37e0116101e857806344f103de116101ac57806344f103de1461048a5780634f6ccce71461049d578063576d4286146104bd57806360d938dc146104dd57806362dc6e21146104f75780636352211e1461051257600080fd5b80632a3c37e0146103f45780632f745c591461041457806330176e131461043457806342842e0e1461045457806344d19d2b1461047457600080fd5b806314a7068a1161023a57806314a7068a1461034b57806317ca13231461036b57806318160ddd146103805780631e84c4131461039557806323b872dd146103b457806326158858146103d457600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806310af8aca14610328575b600080fd5b34801561028357600080fd5b50610297610292366004612e84565b610771565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161079c565b6040516102a391906130de565b3480156102da57600080fd5b506102ee6102e9366004612f1e565b61082e565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612de5565b6108c8565b005b34801561033457600080fd5b5061033d600281565b6040519081526020016102a3565b34801561035757600080fd5b50610297610366366004612c3c565b6109de565b34801561037757600080fd5b5061033d600481565b34801561038c57600080fd5b5060085461033d565b3480156103a157600080fd5b50600d5461029790610100900460ff1681565b3480156103c057600080fd5b506103266103cf366004612c91565b610a25565b3480156103e057600080fd5b506103266103ef366004612f37565b610a56565b34801561040057600080fd5b5061032661040f366004612e0f565b610c04565b34801561042057600080fd5b5061033d61042f366004612de5565b610d77565b34801561044057600080fd5b5061032661044f366004612ebe565b610e0d565b34801561046057600080fd5b5061032661046f366004612c91565b610e81565b34801561048057600080fd5b5061033d600b5481565b610326610498366004612f1e565b610e9c565b3480156104a957600080fd5b5061033d6104b8366004612f1e565b6111b1565b3480156104c957600080fd5b506103266104d8366004612e0f565b611244565b3480156104e957600080fd5b50600d546102979060ff1681565b34801561050357600080fd5b5061033d66470de4df82000081565b34801561051e57600080fd5b506102ee61052d366004612f1e565b6113b5565b34801561053e57600080fd5b5061033d61054d366004612c3c565b61142c565b34801561055e57600080fd5b506103266114b3565b34801561057357600080fd5b5061033d6101bc81565b34801561058957600080fd5b5061033d600c5481565b34801561059f57600080fd5b506103266114e9565b3480156105b457600080fd5b5061033d61115c81565b3480156105ca57600080fd5b50610326611527565b3480156105df57600080fd5b5061033d668e1bc9bf04000081565b3480156105fa57600080fd5b50600a546001600160a01b03166102ee565b34801561061857600080fd5b50610326610627366004612ebe565b611b17565b34801561063857600080fd5b506102c1611b7f565b61032661064f366004612f1e565b611b8e565b34801561066057600080fd5b5061032661066f366004612da9565b611e64565b34801561068057600080fd5b5061032661068f366004612ccd565b611f29565b3480156106a057600080fd5b50610326611f61565b3480156106b557600080fd5b506102c16106c4366004612f1e565b611fa8565b3480156106d557600080fd5b506102c1612066565b3480156106ea57600080fd5b50610326612075565b3480156106ff57600080fd5b506102c161210a565b34801561071457600080fd5b50610297610723366004612c5e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075d57600080fd5b5061032661076c366004612c3c565b612119565b60006001600160e01b0319821663780e9d6360e01b14806107965750610796826121b4565b92915050565b6060600080546107ab9061329f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d79061329f565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108d3826113b5565b9050806001600160a01b0316836001600160a01b031614156109415760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108a3565b336001600160a01b038216148061095d575061095d8133610723565b6109cf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108a3565b6109d98383612204565b505050565b60006001600160a01b038216610a065760405162461bcd60e51b81526004016108a3906130f1565b506001600160a01b03166000908152600e602052604090205460021490565b610a2f3382612272565b610a4b5760405162461bcd60e51b81526004016108a3906131c0565b6109d9838383612369565b600a546001600160a01b03163314610a805760405162461bcd60e51b81526004016108a39061318b565b61115c610a8c60085490565b10610aa95760405162461bcd60e51b81526004016108a390613169565b61115c82610ab660085490565b610ac09190613211565b1115610b055760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016108a3565b600b54821115610b615760405162461bcd60e51b815260206004820152602160248201527f4e4f5f4d4f52455f52455345525645445f544f4b454e535f415641494c41424c6044820152604560f81b60648201526084016108a3565b60008211610bb15760405162461bcd60e51b815260206004820152601c60248201527f4d5553545f4d494e545f41545f4c454153545f4f4e455f544f4b454e0000000060448201526064016108a3565b60005b828110156109d957610bd982610bc960085490565b610bd4906001613211565b612514565b6001600b6000828254610bec919061325c565b90915550819050610bfc816132da565b915050610bb4565b600a546001600160a01b03163314610c2e5760405162461bcd60e51b81526004016108a39061318b565b60005b818110156109d9576000838383818110610c4d57610c4d61334b565b9050602002016020810190610c629190612c3c565b6001600160a01b03161415610c895760405162461bcd60e51b81526004016108a3906130f1565b60106000848484818110610c9f57610c9f61334b565b9050602002016020810190610cb49190612c3c565b6001600160a01b0316815260208101919091526040016000205460ff1615610d105760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016108a3565b600160106000858585818110610d2857610d2861334b565b9050602002016020810190610d3d9190612c3c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610d6f816132da565b915050610c31565b6000610d828361142c565b8210610de45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e375760405162461bcd60e51b81526004016108a39061318b565b610e4360128383612b87565b507f228a3ac0675af69daeaaa5b8d369fe2faae665e7f340f0b78ccbb84e17b4f6948282604051610e759291906130af565b60405180910390a15050565b6109d983838360405180602001604052806000815250611f29565b600d5460ff16610ee35760405162461bcd60e51b815260206004820152601260248201527150524553414c455f4e4f545f41435449564560701b60448201526064016108a3565b336000908152600e6020526040902054600211610f345760405162461bcd60e51b815260206004820152600f60248201526e1053149150511657d0d31052535151608a1b60448201526064016108a3565b336000908152600e6020526040902054600290610f52908390613211565b1115610f955760405162461bcd60e51b815260206004820152601260248201527122ac21a2a2a229afa0a62627a1a0aa24a7a760711b60448201526064016108a3565b6101bc600c5410610fdb5760405162461bcd60e51b815260206004820152601060248201526f14149154d0531157d4d3d31117d3d55560821b60448201526064016108a3565b6101bc81600c54610fec9190613211565b11156110335760405162461bcd60e51b8152602060048201526016602482015275455843454544535f50524553414c455f535550504c5960501b60448201526064016108a3565b346110458266470de4df82000061323d565b146110875760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1551217d05353d5539560721b60448201526064016108a3565b600081116110d15760405162461bcd60e51b81526020600482015260176024820152765155414e544954595f43414e4e4f545f42455f5a45524f60481b60448201526064016108a3565b60028111156111155760405162461bcd60e51b815260206004820152601060248201526f115610d1515114d7d3505617d352539560821b60448201526064016108a3565b600b546111249061115c61325c565b600854106111445760405162461bcd60e51b81526004016108a390613169565b60005b818110156111ad57336000908152600e6020526040812080546001929061116f908490613211565b90915550611182905033610bc960085490565b6001600c60008282546111959190613211565b909155508190506111a5816132da565b915050611147565b5050565b60006111bc60085490565b821061121f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108a3565b600882815481106112325761123261334b565b90600052602060002001549050919050565b600a546001600160a01b0316331461126e5760405162461bcd60e51b81526004016108a39061318b565b60005b818110156109d957600083838381811061128d5761128d61334b565b90506020020160208101906112a29190612c3c565b6001600160a01b031614156112c95760405162461bcd60e51b81526004016108a3906130f1565b601060008484848181106112df576112df61334b565b90506020020160208101906112f49190612c3c565b6001600160a01b0316815260208101919091526040016000205460ff1661134e5760405162461bcd60e51b815260206004820152600e60248201526d4e4f545f494e5f50524553414c4560901b60448201526064016108a3565b6000601060008585858181106113665761136661334b565b905060200201602081019061137b9190612c3c565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113ad816132da565b915050611271565b6000818152600260205260408120546001600160a01b0316806107965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108a3565b60006001600160a01b0382166114975760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108a3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114dd5760405162461bcd60e51b81526004016108a39061318b565b6114e7600061252e565b565b600a546001600160a01b031633146115135760405162461bcd60e51b81526004016108a39061318b565b600d805460ff19811660ff90911615179055565b3360008181526010602052604090205460ff1661157c5760405162461bcd60e51b81526020600482015260136024820152724e4f545f415f545255535445445f504152545960681b60448201526064016108a3565b6000606461158b47601a61323d565b6115959190613229565b9050600060646115a647600f61323d565b6115b09190613229565b9050600060646115c147600f61323d565b6115cb9190613229565b9050600060646115dc47600a61323d565b6115e69190613229565b9050600060646115f747600761323d565b6116019190613229565b90506000606461161247600761323d565b61161c9190613229565b90506000606461162d47600561323d565b6116379190613229565b90506000606461164847600561323d565b6116529190613229565b90506000606461166347600561323d565b61166d9190613229565b90506000606461167e47600561323d565b6116889190613229565b604051909150739d11bd2eca5f42ee8bed9db5d11f66cffb868927908b156108fc02908c906000818181858888f193505050506116fe5760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413160601b60448201526064016108a3565b6040517362a10bf70c9ea5c5350a1a0016c273875dd44263908a156108fc02908b906000818181858888f193505050506117715760405162461bcd60e51b81526020600482015260146024820152732320a4a622a22faa27afa9a2a7222faa27afa09960611b60448201526064016108a3565b604051731346e5b390ad61c4bb7b1d58b53157f95b3ee8939089156108fc02908a906000818181858888f193505050506117e45760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413360601b60448201526064016108a3565b6040517352ea2a1a5fc76cec50f5616c263f49292102af649088156108fc029089906000818181858888f193505050506118575760405162461bcd60e51b815260206004820152601460248201527311905253115117d513d7d4d1539117d513d7d04d60621b60448201526064016108a3565b60405173ce550745cfd4f4c85338908670cd6311f7dab44a9087156108fc029088906000818181858888f193505050506118ca5760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413560601b60448201526064016108a3565b604051734dbda0bc6c9acf197333847b4d6c052a179b4f249086156108fc029087906000818181858888f1935050505061193d5760405162461bcd60e51b81526020600482015260146024820152732320a4a622a22faa27afa9a2a7222faa27afa09b60611b60448201526064016108a3565b60405173db2214ed07d122f11c4d1b89cd002f1f6ea79e4c9085156108fc029086906000818181858888f193505050506119b05760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413760601b60448201526064016108a3565b6040517373ff3b28216c3bea994787a845b202fac40c92ce9084156108fc029085906000818181858888f19350505050611a235760405162461bcd60e51b815260206004820152601460248201527308c8292988a88bea89ebea68a9c88bea89ebe82760631b60448201526064016108a3565b60405173fb77701ba36363b750d628bdfbe8c1259afa95cb9083156108fc029084906000818181858888f19350505050611a965760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413960601b60448201526064016108a3565b604051738c39f90513b43a21418513ea484d7cbd8261421b9082156108fc029083906000818181858888f19350505050611b0a5760405162461bcd60e51b815260206004820152601560248201527404641494c45445f544f5f53454e445f544f5f41313605c1b60448201526064016108a3565b5050505050505050505050565b600a546001600160a01b03163314611b415760405162461bcd60e51b81526004016108a39061318b565b611b4d60118383612b87565b507fd5ee5eaf65263bab5d569890714d123ad48a9e54409d35e71d374f3dd300bba08282604051610e759291906130af565b6060600180546107ab9061329f565b600d54610100900460ff16611bde5760405162461bcd60e51b81526020600482015260166024820152755055424c49435f53414c455f4e4f545f41435449564560501b60448201526064016108a3565b323314611c225760405162461bcd60e51b815260206004820152601260248201527123a7afa0aba0acafa127aa2fa7a924a3a4a760711b60448201526064016108a3565b600b54611c319061115c61325c565b60085410611c515760405162461bcd60e51b81526004016108a390613169565b60008111611c9b5760405162461bcd60e51b81526020600482015260176024820152765155414e544954595f43414e4e4f545f42455f5a45524f60481b60448201526064016108a3565b600b54611caa9061115c61325c565b81611cb460085490565b611cbe9190613211565b1115611d015760405162461bcd60e51b8152602060048201526012602482015271455843454544535f4d41585f535550504c5960701b60448201526064016108a3565b6004811115611d455760405162461bcd60e51b815260206004820152601060248201526f115610d1515114d7d3505617d352539560821b60448201526064016108a3565b336000908152600e6020908152604080832054600f909252909120546004918391611d709190613211565b611d7a9190613211565b1115611dc05760405162461bcd60e51b8152602060048201526015602482015274455843454544535f4d41585f414c4c4f57414e434560581b60448201526064016108a3565b34611dd282668e1bc9bf04000061323d565b14611e145760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1551217d05353d5539560721b60448201526064016108a3565b60005b818110156111ad57336000908152600f60205260408120805460019290611e3f908490613211565b90915550611e52905033610bc960085490565b80611e5c816132da565b915050611e17565b6001600160a01b038216331415611ebd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108a3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f333383612272565b611f4f5760405162461bcd60e51b81526004016108a3906131c0565b611f5b84848484612580565b50505050565b600a546001600160a01b03163314611f8b5760405162461bcd60e51b81526004016108a39061318b565b600d805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b031661200f5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016108a3565b600061201a836125b3565b60405160200161202a9190612fa2565b604051602081830303815290604052905060128160405160200161204f929190612fcb565b604051602081830303815290604052915050919050565b6060601280546107ab9061329f565b3360008181526010602052604090205460ff166120ca5760405162461bcd60e51b81526020600482015260136024820152724e4f545f415f545255535445445f504152545960681b60448201526064016108a3565b604051739d11bd2eca5f42ee8bed9db5d11f66cffb868927904780156108fc02916000818181858888f193505050501580156111ad573d6000803e3d6000fd5b6060601180546107ab9061329f565b600a546001600160a01b031633146121435760405162461bcd60e51b81526004016108a39061318b565b6001600160a01b0381166121a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a3565b6121b18161252e565b50565b60006001600160e01b031982166380ac58cd60e01b14806121e557506001600160e01b03198216635b5e139f60e01b145b8061079657506301ffc9a760e01b6001600160e01b0319831614610796565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612239826113b5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108a3565b60006122f6836113b5565b9050806001600160a01b0316846001600160a01b031614806123315750836001600160a01b03166123268461082e565b6001600160a01b0316145b8061236157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661237c826113b5565b6001600160a01b0316146123e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108a3565b6001600160a01b0382166124465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108a3565b6124518383836126b1565b61245c600082612204565b6001600160a01b038316600090815260036020526040812080546001929061248590849061325c565b90915550506001600160a01b03821660009081526003602052604081208054600192906124b3908490613211565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111ad828260405180602001604052806000815250612769565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61258b848484612369565b6125978484848461279c565b611f5b5760405162461bcd60e51b81526004016108a390613117565b6060816125d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561260157806125eb816132da565b91506125fa9050600a83613229565b91506125db565b60008167ffffffffffffffff81111561261c5761261c613361565b6040519080825280601f01601f191660200182016040528015612646576020820181803683370190505b5090505b84156123615761265b60018361325c565b9150612668600a866132f5565b612673906030613211565b60f81b8183815181106126885761268861334b565b60200101906001600160f81b031916908160001a9053506126aa600a86613229565b945061264a565b6001600160a01b03831661270c5761270781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61272f565b816001600160a01b0316836001600160a01b03161461272f5761272f83826128a9565b6001600160a01b038216612746576109d981612946565b826001600160a01b0316826001600160a01b0316146109d9576109d982826129f5565b6127738383612a39565b612780600084848461279c565b6109d95760405162461bcd60e51b81526004016108a390613117565b60006001600160a01b0384163b1561289e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127e0903390899088908890600401613072565b602060405180830381600087803b1580156127fa57600080fd5b505af192505050801561282a575060408051601f3d908101601f1916820190925261282791810190612ea1565b60015b612884573d808015612858576040519150601f19603f3d011682016040523d82523d6000602084013e61285d565b606091505b50805161287c5760405162461bcd60e51b81526004016108a390613117565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612361565b506001949350505050565b600060016128b68461142c565b6128c0919061325c565b600083815260076020526040902054909150808214612913576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129589060019061325c565b600083815260096020526040812054600880549394509092849081106129805761298061334b565b9060005260206000200154905080600883815481106129a1576129a161334b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129d9576129d9613335565b6001900381819060005260206000200160009055905550505050565b6000612a008361142c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612a8f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108a3565b6000818152600260205260409020546001600160a01b031615612af45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108a3565b612b00600083836126b1565b6001600160a01b0382166000908152600360205260408120805460019290612b29908490613211565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b939061329f565b90600052602060002090601f016020900481019282612bb55760008555612bfb565b82601f10612bce5782800160ff19823516178555612bfb565b82800160010185558215612bfb579182015b82811115612bfb578235825591602001919060010190612be0565b50612c07929150612c0b565b5090565b5b80821115612c075760008155600101612c0c565b80356001600160a01b0381168114612c3757600080fd5b919050565b600060208284031215612c4e57600080fd5b612c5782612c20565b9392505050565b60008060408385031215612c7157600080fd5b612c7a83612c20565b9150612c8860208401612c20565b90509250929050565b600080600060608486031215612ca657600080fd5b612caf84612c20565b9250612cbd60208501612c20565b9150604084013590509250925092565b60008060008060808587031215612ce357600080fd5b612cec85612c20565b9350612cfa60208601612c20565b925060408501359150606085013567ffffffffffffffff80821115612d1e57600080fd5b818701915087601f830112612d3257600080fd5b813581811115612d4457612d44613361565b604051601f8201601f19908116603f01168101908382118183101715612d6c57612d6c613361565b816040528281528a6020848701011115612d8557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612dbc57600080fd5b612dc583612c20565b915060208301358015158114612dda57600080fd5b809150509250929050565b60008060408385031215612df857600080fd5b612e0183612c20565b946020939093013593505050565b60008060208385031215612e2257600080fd5b823567ffffffffffffffff80821115612e3a57600080fd5b818501915085601f830112612e4e57600080fd5b813581811115612e5d57600080fd5b8660208260051b8501011115612e7257600080fd5b60209290920196919550909350505050565b600060208284031215612e9657600080fd5b8135612c5781613377565b600060208284031215612eb357600080fd5b8151612c5781613377565b60008060208385031215612ed157600080fd5b823567ffffffffffffffff80821115612ee957600080fd5b818501915085601f830112612efd57600080fd5b813581811115612f0c57600080fd5b866020828501011115612e7257600080fd5b600060208284031215612f3057600080fd5b5035919050565b60008060408385031215612f4a57600080fd5b82359150612c8860208401612c20565b60008151808452612f72816020860160208601613273565b601f01601f19169290920160200192915050565b60008151612f98818560208601613273565b9290920192915050565b60008251612fb4818460208701613273565b64173539b7b760d91b920191825250600501919050565b600080845481600182811c915080831680612fe757607f831692505b602080841082141561300757634e487b7160e01b86526022600452602486fd5b81801561301b576001811461302c57613059565b60ff19861689528489019650613059565b60008b81526020902060005b868110156130515781548b820152908501908301613038565b505084890196505b5050505050506130698185612f86565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130a590830184612f5a565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000612c576020830184612f5a565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526008908201526714d3d31117d3d55560c21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561322457613224613309565b500190565b6000826132385761323861331f565b500490565b600081600019048311821515161561325757613257613309565b500290565b60008282101561326e5761326e613309565b500390565b60005b8381101561328e578181015183820152602001613276565b83811115611f5b5750506000910152565b600181811c908216806132b357607f821691505b602082108114156132d457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132ee576132ee613309565b5060010190565b6000826133045761330461331f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146121b157600080fdfea2646970667358221220dbfc5f54ef450100d1eca69226ef749d32ee1627c4286935914b8ea9f9d1d65564736f6c63430008070033000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d524d7068557856565367456662746339706e5a6d384c354738677843774e515570445a4543687577486f57412f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5336706d665434646457507459705739533467464566354a5138756845386e54526d5331706a3258444c6a522f00000000000000000000

Deployed Bytecode

0x6080604052600436106102725760003560e01c806370a082311161014f578063974e6b8f116100c1578063d547cfb71161007a578063d547cfb7146106c9578063db2e21bc146106de578063e8a3d485146106f3578063e985e9c514610708578063f1a63f4914610328578063f2fde38b1461075157600080fd5b8063974e6b8f1461036b578063a0712d6814610641578063a22cb46514610654578063b88d4fde14610674578063b9ad9fde14610694578063c87b56dd146106a957600080fd5b806380ddcc621161011357806380ddcc62146105a8578063853828b6146105be5780638d859f3e146105d35780638da5cb5b146105ee578063938e3d7b1461060c57806395d89b411461062c57600080fd5b806370a0823114610532578063715018a61461055257806373138e4f1461056757806373aee9291461057d5780637bffb4ce1461059357600080fd5b80632a3c37e0116101e857806344f103de116101ac57806344f103de1461048a5780634f6ccce71461049d578063576d4286146104bd57806360d938dc146104dd57806362dc6e21146104f75780636352211e1461051257600080fd5b80632a3c37e0146103f45780632f745c591461041457806330176e131461043457806342842e0e1461045457806344d19d2b1461047457600080fd5b806314a7068a1161023a57806314a7068a1461034b57806317ca13231461036b57806318160ddd146103805780631e84c4131461039557806323b872dd146103b457806326158858146103d457600080fd5b806301ffc9a71461027757806306fdde03146102ac578063081812fc146102ce578063095ea7b31461030657806310af8aca14610328575b600080fd5b34801561028357600080fd5b50610297610292366004612e84565b610771565b60405190151581526020015b60405180910390f35b3480156102b857600080fd5b506102c161079c565b6040516102a391906130de565b3480156102da57600080fd5b506102ee6102e9366004612f1e565b61082e565b6040516001600160a01b0390911681526020016102a3565b34801561031257600080fd5b50610326610321366004612de5565b6108c8565b005b34801561033457600080fd5b5061033d600281565b6040519081526020016102a3565b34801561035757600080fd5b50610297610366366004612c3c565b6109de565b34801561037757600080fd5b5061033d600481565b34801561038c57600080fd5b5060085461033d565b3480156103a157600080fd5b50600d5461029790610100900460ff1681565b3480156103c057600080fd5b506103266103cf366004612c91565b610a25565b3480156103e057600080fd5b506103266103ef366004612f37565b610a56565b34801561040057600080fd5b5061032661040f366004612e0f565b610c04565b34801561042057600080fd5b5061033d61042f366004612de5565b610d77565b34801561044057600080fd5b5061032661044f366004612ebe565b610e0d565b34801561046057600080fd5b5061032661046f366004612c91565b610e81565b34801561048057600080fd5b5061033d600b5481565b610326610498366004612f1e565b610e9c565b3480156104a957600080fd5b5061033d6104b8366004612f1e565b6111b1565b3480156104c957600080fd5b506103266104d8366004612e0f565b611244565b3480156104e957600080fd5b50600d546102979060ff1681565b34801561050357600080fd5b5061033d66470de4df82000081565b34801561051e57600080fd5b506102ee61052d366004612f1e565b6113b5565b34801561053e57600080fd5b5061033d61054d366004612c3c565b61142c565b34801561055e57600080fd5b506103266114b3565b34801561057357600080fd5b5061033d6101bc81565b34801561058957600080fd5b5061033d600c5481565b34801561059f57600080fd5b506103266114e9565b3480156105b457600080fd5b5061033d61115c81565b3480156105ca57600080fd5b50610326611527565b3480156105df57600080fd5b5061033d668e1bc9bf04000081565b3480156105fa57600080fd5b50600a546001600160a01b03166102ee565b34801561061857600080fd5b50610326610627366004612ebe565b611b17565b34801561063857600080fd5b506102c1611b7f565b61032661064f366004612f1e565b611b8e565b34801561066057600080fd5b5061032661066f366004612da9565b611e64565b34801561068057600080fd5b5061032661068f366004612ccd565b611f29565b3480156106a057600080fd5b50610326611f61565b3480156106b557600080fd5b506102c16106c4366004612f1e565b611fa8565b3480156106d557600080fd5b506102c1612066565b3480156106ea57600080fd5b50610326612075565b3480156106ff57600080fd5b506102c161210a565b34801561071457600080fd5b50610297610723366004612c5e565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561075d57600080fd5b5061032661076c366004612c3c565b612119565b60006001600160e01b0319821663780e9d6360e01b14806107965750610796826121b4565b92915050565b6060600080546107ab9061329f565b80601f01602080910402602001604051908101604052809291908181526020018280546107d79061329f565b80156108245780601f106107f957610100808354040283529160200191610824565b820191906000526020600020905b81548152906001019060200180831161080757829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b03166108ac5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084015b60405180910390fd5b506000908152600460205260409020546001600160a01b031690565b60006108d3826113b5565b9050806001600160a01b0316836001600160a01b031614156109415760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016108a3565b336001600160a01b038216148061095d575061095d8133610723565b6109cf5760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016108a3565b6109d98383612204565b505050565b60006001600160a01b038216610a065760405162461bcd60e51b81526004016108a3906130f1565b506001600160a01b03166000908152600e602052604090205460021490565b610a2f3382612272565b610a4b5760405162461bcd60e51b81526004016108a3906131c0565b6109d9838383612369565b600a546001600160a01b03163314610a805760405162461bcd60e51b81526004016108a39061318b565b61115c610a8c60085490565b10610aa95760405162461bcd60e51b81526004016108a390613169565b61115c82610ab660085490565b610ac09190613211565b1115610b055760405162461bcd60e51b8152602060048201526014602482015273455843454544535f544f54414c5f535550504c5960601b60448201526064016108a3565b600b54821115610b615760405162461bcd60e51b815260206004820152602160248201527f4e4f5f4d4f52455f52455345525645445f544f4b454e535f415641494c41424c6044820152604560f81b60648201526084016108a3565b60008211610bb15760405162461bcd60e51b815260206004820152601c60248201527f4d5553545f4d494e545f41545f4c454153545f4f4e455f544f4b454e0000000060448201526064016108a3565b60005b828110156109d957610bd982610bc960085490565b610bd4906001613211565b612514565b6001600b6000828254610bec919061325c565b90915550819050610bfc816132da565b915050610bb4565b600a546001600160a01b03163314610c2e5760405162461bcd60e51b81526004016108a39061318b565b60005b818110156109d9576000838383818110610c4d57610c4d61334b565b9050602002016020810190610c629190612c3c565b6001600160a01b03161415610c895760405162461bcd60e51b81526004016108a3906130f1565b60106000848484818110610c9f57610c9f61334b565b9050602002016020810190610cb49190612c3c565b6001600160a01b0316815260208101919091526040016000205460ff1615610d105760405162461bcd60e51b815260206004820152600f60248201526e4455504c49434154455f454e54525960881b60448201526064016108a3565b600160106000858585818110610d2857610d2861334b565b9050602002016020810190610d3d9190612c3c565b6001600160a01b031681526020810191909152604001600020805460ff191691151591909117905580610d6f816132da565b915050610c31565b6000610d828361142c565b8210610de45760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016108a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600a546001600160a01b03163314610e375760405162461bcd60e51b81526004016108a39061318b565b610e4360128383612b87565b507f228a3ac0675af69daeaaa5b8d369fe2faae665e7f340f0b78ccbb84e17b4f6948282604051610e759291906130af565b60405180910390a15050565b6109d983838360405180602001604052806000815250611f29565b600d5460ff16610ee35760405162461bcd60e51b815260206004820152601260248201527150524553414c455f4e4f545f41435449564560701b60448201526064016108a3565b336000908152600e6020526040902054600211610f345760405162461bcd60e51b815260206004820152600f60248201526e1053149150511657d0d31052535151608a1b60448201526064016108a3565b336000908152600e6020526040902054600290610f52908390613211565b1115610f955760405162461bcd60e51b815260206004820152601260248201527122ac21a2a2a229afa0a62627a1a0aa24a7a760711b60448201526064016108a3565b6101bc600c5410610fdb5760405162461bcd60e51b815260206004820152601060248201526f14149154d0531157d4d3d31117d3d55560821b60448201526064016108a3565b6101bc81600c54610fec9190613211565b11156110335760405162461bcd60e51b8152602060048201526016602482015275455843454544535f50524553414c455f535550504c5960501b60448201526064016108a3565b346110458266470de4df82000061323d565b146110875760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1551217d05353d5539560721b60448201526064016108a3565b600081116110d15760405162461bcd60e51b81526020600482015260176024820152765155414e544954595f43414e4e4f545f42455f5a45524f60481b60448201526064016108a3565b60028111156111155760405162461bcd60e51b815260206004820152601060248201526f115610d1515114d7d3505617d352539560821b60448201526064016108a3565b600b546111249061115c61325c565b600854106111445760405162461bcd60e51b81526004016108a390613169565b60005b818110156111ad57336000908152600e6020526040812080546001929061116f908490613211565b90915550611182905033610bc960085490565b6001600c60008282546111959190613211565b909155508190506111a5816132da565b915050611147565b5050565b60006111bc60085490565b821061121f5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016108a3565b600882815481106112325761123261334b565b90600052602060002001549050919050565b600a546001600160a01b0316331461126e5760405162461bcd60e51b81526004016108a39061318b565b60005b818110156109d957600083838381811061128d5761128d61334b565b90506020020160208101906112a29190612c3c565b6001600160a01b031614156112c95760405162461bcd60e51b81526004016108a3906130f1565b601060008484848181106112df576112df61334b565b90506020020160208101906112f49190612c3c565b6001600160a01b0316815260208101919091526040016000205460ff1661134e5760405162461bcd60e51b815260206004820152600e60248201526d4e4f545f494e5f50524553414c4560901b60448201526064016108a3565b6000601060008585858181106113665761136661334b565b905060200201602081019061137b9190612c3c565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806113ad816132da565b915050611271565b6000818152600260205260408120546001600160a01b0316806107965760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016108a3565b60006001600160a01b0382166114975760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016108a3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b031633146114dd5760405162461bcd60e51b81526004016108a39061318b565b6114e7600061252e565b565b600a546001600160a01b031633146115135760405162461bcd60e51b81526004016108a39061318b565b600d805460ff19811660ff90911615179055565b3360008181526010602052604090205460ff1661157c5760405162461bcd60e51b81526020600482015260136024820152724e4f545f415f545255535445445f504152545960681b60448201526064016108a3565b6000606461158b47601a61323d565b6115959190613229565b9050600060646115a647600f61323d565b6115b09190613229565b9050600060646115c147600f61323d565b6115cb9190613229565b9050600060646115dc47600a61323d565b6115e69190613229565b9050600060646115f747600761323d565b6116019190613229565b90506000606461161247600761323d565b61161c9190613229565b90506000606461162d47600561323d565b6116379190613229565b90506000606461164847600561323d565b6116529190613229565b90506000606461166347600561323d565b61166d9190613229565b90506000606461167e47600561323d565b6116889190613229565b604051909150739d11bd2eca5f42ee8bed9db5d11f66cffb868927908b156108fc02908c906000818181858888f193505050506116fe5760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413160601b60448201526064016108a3565b6040517362a10bf70c9ea5c5350a1a0016c273875dd44263908a156108fc02908b906000818181858888f193505050506117715760405162461bcd60e51b81526020600482015260146024820152732320a4a622a22faa27afa9a2a7222faa27afa09960611b60448201526064016108a3565b604051731346e5b390ad61c4bb7b1d58b53157f95b3ee8939089156108fc02908a906000818181858888f193505050506117e45760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413360601b60448201526064016108a3565b6040517352ea2a1a5fc76cec50f5616c263f49292102af649088156108fc029089906000818181858888f193505050506118575760405162461bcd60e51b815260206004820152601460248201527311905253115117d513d7d4d1539117d513d7d04d60621b60448201526064016108a3565b60405173ce550745cfd4f4c85338908670cd6311f7dab44a9087156108fc029088906000818181858888f193505050506118ca5760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413560601b60448201526064016108a3565b604051734dbda0bc6c9acf197333847b4d6c052a179b4f249086156108fc029087906000818181858888f1935050505061193d5760405162461bcd60e51b81526020600482015260146024820152732320a4a622a22faa27afa9a2a7222faa27afa09b60611b60448201526064016108a3565b60405173db2214ed07d122f11c4d1b89cd002f1f6ea79e4c9085156108fc029086906000818181858888f193505050506119b05760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413760601b60448201526064016108a3565b6040517373ff3b28216c3bea994787a845b202fac40c92ce9084156108fc029085906000818181858888f19350505050611a235760405162461bcd60e51b815260206004820152601460248201527308c8292988a88bea89ebea68a9c88bea89ebe82760631b60448201526064016108a3565b60405173fb77701ba36363b750d628bdfbe8c1259afa95cb9083156108fc029084906000818181858888f19350505050611a965760405162461bcd60e51b81526020600482015260146024820152734641494c45445f544f5f53454e445f544f5f413960601b60448201526064016108a3565b604051738c39f90513b43a21418513ea484d7cbd8261421b9082156108fc029083906000818181858888f19350505050611b0a5760405162461bcd60e51b815260206004820152601560248201527404641494c45445f544f5f53454e445f544f5f41313605c1b60448201526064016108a3565b5050505050505050505050565b600a546001600160a01b03163314611b415760405162461bcd60e51b81526004016108a39061318b565b611b4d60118383612b87565b507fd5ee5eaf65263bab5d569890714d123ad48a9e54409d35e71d374f3dd300bba08282604051610e759291906130af565b6060600180546107ab9061329f565b600d54610100900460ff16611bde5760405162461bcd60e51b81526020600482015260166024820152755055424c49435f53414c455f4e4f545f41435449564560501b60448201526064016108a3565b323314611c225760405162461bcd60e51b815260206004820152601260248201527123a7afa0aba0acafa127aa2fa7a924a3a4a760711b60448201526064016108a3565b600b54611c319061115c61325c565b60085410611c515760405162461bcd60e51b81526004016108a390613169565b60008111611c9b5760405162461bcd60e51b81526020600482015260176024820152765155414e544954595f43414e4e4f545f42455f5a45524f60481b60448201526064016108a3565b600b54611caa9061115c61325c565b81611cb460085490565b611cbe9190613211565b1115611d015760405162461bcd60e51b8152602060048201526012602482015271455843454544535f4d41585f535550504c5960701b60448201526064016108a3565b6004811115611d455760405162461bcd60e51b815260206004820152601060248201526f115610d1515114d7d3505617d352539560821b60448201526064016108a3565b336000908152600e6020908152604080832054600f909252909120546004918391611d709190613211565b611d7a9190613211565b1115611dc05760405162461bcd60e51b8152602060048201526015602482015274455843454544535f4d41585f414c4c4f57414e434560581b60448201526064016108a3565b34611dd282668e1bc9bf04000061323d565b14611e145760405162461bcd60e51b81526020600482015260126024820152711253959053125117d1551217d05353d5539560721b60448201526064016108a3565b60005b818110156111ad57336000908152600f60205260408120805460019290611e3f908490613211565b90915550611e52905033610bc960085490565b80611e5c816132da565b915050611e17565b6001600160a01b038216331415611ebd5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016108a3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611f333383612272565b611f4f5760405162461bcd60e51b81526004016108a3906131c0565b611f5b84848484612580565b50505050565b600a546001600160a01b03163314611f8b5760405162461bcd60e51b81526004016108a39061318b565b600d805461ff001981166101009182900460ff1615909102179055565b6000818152600260205260409020546060906001600160a01b031661200f5760405162461bcd60e51b815260206004820152601f60248201527f43616e6e6f74207175657279206e6f6e2d6578697374656e7420746f6b656e0060448201526064016108a3565b600061201a836125b3565b60405160200161202a9190612fa2565b604051602081830303815290604052905060128160405160200161204f929190612fcb565b604051602081830303815290604052915050919050565b6060601280546107ab9061329f565b3360008181526010602052604090205460ff166120ca5760405162461bcd60e51b81526020600482015260136024820152724e4f545f415f545255535445445f504152545960681b60448201526064016108a3565b604051739d11bd2eca5f42ee8bed9db5d11f66cffb868927904780156108fc02916000818181858888f193505050501580156111ad573d6000803e3d6000fd5b6060601180546107ab9061329f565b600a546001600160a01b031633146121435760405162461bcd60e51b81526004016108a39061318b565b6001600160a01b0381166121a85760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016108a3565b6121b18161252e565b50565b60006001600160e01b031982166380ac58cd60e01b14806121e557506001600160e01b03198216635b5e139f60e01b145b8061079657506301ffc9a760e01b6001600160e01b0319831614610796565b600081815260046020526040902080546001600160a01b0319166001600160a01b0384169081179091558190612239826113b5565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166122eb5760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016108a3565b60006122f6836113b5565b9050806001600160a01b0316846001600160a01b031614806123315750836001600160a01b03166123268461082e565b6001600160a01b0316145b8061236157506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff165b949350505050565b826001600160a01b031661237c826113b5565b6001600160a01b0316146123e45760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016108a3565b6001600160a01b0382166124465760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016108a3565b6124518383836126b1565b61245c600082612204565b6001600160a01b038316600090815260036020526040812080546001929061248590849061325c565b90915550506001600160a01b03821660009081526003602052604081208054600192906124b3908490613211565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b6111ad828260405180602001604052806000815250612769565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b61258b848484612369565b6125978484848461279c565b611f5b5760405162461bcd60e51b81526004016108a390613117565b6060816125d75750506040805180820190915260018152600360fc1b602082015290565b8160005b811561260157806125eb816132da565b91506125fa9050600a83613229565b91506125db565b60008167ffffffffffffffff81111561261c5761261c613361565b6040519080825280601f01601f191660200182016040528015612646576020820181803683370190505b5090505b84156123615761265b60018361325c565b9150612668600a866132f5565b612673906030613211565b60f81b8183815181106126885761268861334b565b60200101906001600160f81b031916908160001a9053506126aa600a86613229565b945061264a565b6001600160a01b03831661270c5761270781600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b61272f565b816001600160a01b0316836001600160a01b03161461272f5761272f83826128a9565b6001600160a01b038216612746576109d981612946565b826001600160a01b0316826001600160a01b0316146109d9576109d982826129f5565b6127738383612a39565b612780600084848461279c565b6109d95760405162461bcd60e51b81526004016108a390613117565b60006001600160a01b0384163b1561289e57604051630a85bd0160e11b81526001600160a01b0385169063150b7a02906127e0903390899088908890600401613072565b602060405180830381600087803b1580156127fa57600080fd5b505af192505050801561282a575060408051601f3d908101601f1916820190925261282791810190612ea1565b60015b612884573d808015612858576040519150601f19603f3d011682016040523d82523d6000602084013e61285d565b606091505b50805161287c5760405162461bcd60e51b81526004016108a390613117565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050612361565b506001949350505050565b600060016128b68461142c565b6128c0919061325c565b600083815260076020526040902054909150808214612913576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b6008546000906129589060019061325c565b600083815260096020526040812054600880549394509092849081106129805761298061334b565b9060005260206000200154905080600883815481106129a1576129a161334b565b60009182526020808320909101929092558281526009909152604080822084905585825281205560088054806129d9576129d9613335565b6001900381819060005260206000200160009055905550505050565b6000612a008361142c565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b6001600160a01b038216612a8f5760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016108a3565b6000818152600260205260409020546001600160a01b031615612af45760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016108a3565b612b00600083836126b1565b6001600160a01b0382166000908152600360205260408120805460019290612b29908490613211565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b828054612b939061329f565b90600052602060002090601f016020900481019282612bb55760008555612bfb565b82601f10612bce5782800160ff19823516178555612bfb565b82800160010185558215612bfb579182015b82811115612bfb578235825591602001919060010190612be0565b50612c07929150612c0b565b5090565b5b80821115612c075760008155600101612c0c565b80356001600160a01b0381168114612c3757600080fd5b919050565b600060208284031215612c4e57600080fd5b612c5782612c20565b9392505050565b60008060408385031215612c7157600080fd5b612c7a83612c20565b9150612c8860208401612c20565b90509250929050565b600080600060608486031215612ca657600080fd5b612caf84612c20565b9250612cbd60208501612c20565b9150604084013590509250925092565b60008060008060808587031215612ce357600080fd5b612cec85612c20565b9350612cfa60208601612c20565b925060408501359150606085013567ffffffffffffffff80821115612d1e57600080fd5b818701915087601f830112612d3257600080fd5b813581811115612d4457612d44613361565b604051601f8201601f19908116603f01168101908382118183101715612d6c57612d6c613361565b816040528281528a6020848701011115612d8557600080fd5b82602086016020830137600060208483010152809550505050505092959194509250565b60008060408385031215612dbc57600080fd5b612dc583612c20565b915060208301358015158114612dda57600080fd5b809150509250929050565b60008060408385031215612df857600080fd5b612e0183612c20565b946020939093013593505050565b60008060208385031215612e2257600080fd5b823567ffffffffffffffff80821115612e3a57600080fd5b818501915085601f830112612e4e57600080fd5b813581811115612e5d57600080fd5b8660208260051b8501011115612e7257600080fd5b60209290920196919550909350505050565b600060208284031215612e9657600080fd5b8135612c5781613377565b600060208284031215612eb357600080fd5b8151612c5781613377565b60008060208385031215612ed157600080fd5b823567ffffffffffffffff80821115612ee957600080fd5b818501915085601f830112612efd57600080fd5b813581811115612f0c57600080fd5b866020828501011115612e7257600080fd5b600060208284031215612f3057600080fd5b5035919050565b60008060408385031215612f4a57600080fd5b82359150612c8860208401612c20565b60008151808452612f72816020860160208601613273565b601f01601f19169290920160200192915050565b60008151612f98818560208601613273565b9290920192915050565b60008251612fb4818460208701613273565b64173539b7b760d91b920191825250600501919050565b600080845481600182811c915080831680612fe757607f831692505b602080841082141561300757634e487b7160e01b86526022600452602486fd5b81801561301b576001811461302c57613059565b60ff19861689528489019650613059565b60008b81526020902060005b868110156130515781548b820152908501908301613038565b505084890196505b5050505050506130698185612f86565b95945050505050565b6001600160a01b03858116825284166020820152604081018390526080606082018190526000906130a590830184612f5a565b9695505050505050565b60208152816020820152818360408301376000818301604090810191909152601f909201601f19160101919050565b602081526000612c576020830184612f5a565b6020808252600c908201526b4e554c4c5f4144445245535360a01b604082015260600190565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b60208082526008908201526714d3d31117d3d55560c21b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b6000821982111561322457613224613309565b500190565b6000826132385761323861331f565b500490565b600081600019048311821515161561325757613257613309565b500290565b60008282101561326e5761326e613309565b500390565b60005b8381101561328e578181015183820152602001613276565b83811115611f5b5750506000910152565b600181811c908216806132b357607f821691505b602082108114156132d457634e487b7160e01b600052602260045260246000fd5b50919050565b60006000198214156132ee576132ee613309565b5060010190565b6000826133045761330461331f565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052603160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146121b157600080fdfea2646970667358221220dbfc5f54ef450100d1eca69226ef749d32ee1627c4286935914b8ea9f9d1d65564736f6c63430008070033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000a00000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d524d7068557856565367456662746339706e5a6d384c354738677843774e515570445a4543687577486f57412f000000000000000000000000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5336706d665434646457507459705739533467464566354a5138756845386e54526d5331706a3258444c6a522f00000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmRMphUxVVSgEfbtc9pnZm8L5G8gxCwNQUpDZEChuwHoWA/
Arg [1] : _initContractURI (string): ipfs://QmS6pmfT4ddWPtYpW9S4gFEf5JQ8uhE8nTRmS1pj2XDLjR/

-----Encoded View---------------
8 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000a0
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [3] : 697066733a2f2f516d524d7068557856565367456662746339706e5a6d384c35
Arg [4] : 4738677843774e515570445a4543687577486f57412f00000000000000000000
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [6] : 697066733a2f2f516d5336706d66543464645750745970573953346746456635
Arg [7] : 4a5138756845386e54526d5331706a3258444c6a522f00000000000000000000


Deployed Bytecode Sourcemap

43213:10108:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36996:224;;;;;;;;;;-1:-1:-1;36996:224:0;;;;;:::i;:::-;;:::i;:::-;;;7845:14:1;;7838:22;7820:41;;7808:2;7793:18;36996:224:0;;;;;;;;24888:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;26447:221::-;;;;;;;;;;-1:-1:-1;26447:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;7143:32:1;;;7125:51;;7113:2;7098:18;26447:221:0;6979:203:1;25970:411:0;;;;;;;;;;-1:-1:-1;25970:411:0;;;;;:::i;:::-;;:::i;:::-;;43589:56;;;;;;;;;;;;43644:1;43589:56;;;;;26272:25:1;;;26260:2;26245:18;43589:56:0;26126:177:1;47857:205:0;;;;;;;;;;-1:-1:-1;47857:205:0;;;;;:::i;:::-;;:::i;43903:45::-;;;;;;;;;;;;43947:1;43903:45;;37636:113;;;;;;;;;;-1:-1:-1;37724:10:0;:17;37636:113;;45408:38;;;;;;;;;;-1:-1:-1;45408:38:0;;;;;;;;;;;27337:339;;;;;;;;;;-1:-1:-1;27337:339:0;;;;;:::i;:::-;;:::i;48407:528::-;;;;;;;;;;-1:-1:-1;48407:528:0;;;;;:::i;:::-;;:::i;47038:346::-;;;;;;;;;;-1:-1:-1;47038:346:0;;;;;:::i;:::-;;:::i;37304:256::-;;;;;;;;;;-1:-1:-1;37304:256:0;;;;;:::i;:::-;;:::i;51093:143::-;;;;;;;;;;-1:-1:-1;51093:143:0;;;;;:::i;:::-;;:::i;27747:185::-;;;;;;;;;;-1:-1:-1;27747:185:0;;;;;:::i;:::-;;:::i;44215:35::-;;;;;;;;;;;;;;;;48943:934;;;;;;:::i;:::-;;:::i;37826:233::-;;;;;;;;;;-1:-1:-1;37826:233:0;;;;;:::i;:::-;;:::i;47392:350::-;;;;;;;;;;-1:-1:-1;47392:350:0;;;;;:::i;:::-;;:::i;45366:35::-;;;;;;;;;;-1:-1:-1;45366:35:0;;;;;;;;43997:49;;;;;;;;;;;;44037:9;43997:49;;24582:239;;;;;;;;;;-1:-1:-1;24582:239:0;;;;;:::i;:::-;;:::i;24312:208::-;;;;;;;;;;-1:-1:-1;24312:208:0;;;;;:::i;:::-;;:::i;4587:94::-;;;;;;;;;;;;;:::i;43491:44::-;;;;;;;;;;;;43532:3;43491:44;;44305:32;;;;;;;;;;;;;;;;48070:103;;;;;;;;;;;;;:::i;43415:46::-;;;;;;;;;;;;43457:4;43415:46;;51799:1377;;;;;;;;;;;;;:::i;44053:42::-;;;;;;;;;;;;44085:10;44053:42;;3936:87;;;;;;;;;;-1:-1:-1;4009:6:0;;-1:-1:-1;;;;;4009:6:0;3936:87;;50836:140;;;;;;;;;;-1:-1:-1;50836:140:0;;;;;:::i;:::-;;:::i;25057:104::-;;;;;;;;;;;;;:::i;49885:833::-;;;;;;:::i;:::-;;:::i;26740:295::-;;;;;;;;;;-1:-1:-1;26740:295:0;;;;;:::i;:::-;;:::i;28003:328::-;;;;;;;;;;-1:-1:-1;28003:328:0;;;;;:::i;:::-;;:::i;48181:112::-;;;;;;;;;;;;;:::i;51355:323::-;;;;;;;;;;-1:-1:-1;51355:323:0;;;;;:::i;:::-;;:::i;51244:99::-;;;;;;;;;;;;;:::i;53184:134::-;;;;;;;;;;;;;:::i;50984:97::-;;;;;;;;;;;;;:::i;27106:164::-;;;;;;;;;;-1:-1:-1;27106:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;27227:25:0;;;27203:4;27227:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;27106:164;4836:192;;;;;;;;;;-1:-1:-1;4836:192:0;;;;;:::i;:::-;;:::i;36996:224::-;37098:4;-1:-1:-1;;;;;;37122:50:0;;-1:-1:-1;;;37122:50:0;;:90;;;37176:36;37200:11;37176:23;:36::i;:::-;37115:97;36996:224;-1:-1:-1;;36996:224:0:o;24888:100::-;24942:13;24975:5;24968:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24888:100;:::o;26447:221::-;26523:7;29930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29930:16:0;26543:73;;;;-1:-1:-1;;;26543:73:0;;20070:2:1;26543:73:0;;;20052:21:1;20109:2;20089:18;;;20082:30;20148:34;20128:18;;;20121:62;-1:-1:-1;;;20199:18:1;;;20192:42;20251:19;;26543:73:0;;;;;;;;;-1:-1:-1;26636:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;26636:24:0;;26447:221::o;25970:411::-;26051:13;26067:23;26082:7;26067:14;:23::i;:::-;26051:39;;26115:5;-1:-1:-1;;;;;26109:11:0;:2;-1:-1:-1;;;;;26109:11:0;;;26101:57;;;;-1:-1:-1;;;26101:57:0;;22663:2:1;26101:57:0;;;22645:21:1;22702:2;22682:18;;;22675:30;22741:34;22721:18;;;22714:62;-1:-1:-1;;;22792:18:1;;;22785:31;22833:19;;26101:57:0;22461:397:1;26101:57:0;2804:10;-1:-1:-1;;;;;26193:21:0;;;;:62;;-1:-1:-1;26218:37:0;26235:5;2804:10;27106:164;:::i;26218:37::-;26171:168;;;;-1:-1:-1;;;26171:168:0;;16033:2:1;26171:168:0;;;16015:21:1;16072:2;16052:18;;;16045:30;16111:34;16091:18;;;16084:62;16182:26;16162:18;;;16155:54;16226:19;;26171:168:0;15831:420:1;26171:168:0;26352:21;26361:2;26365:7;26352:8;:21::i;:::-;26040:341;25970:411;;:::o;47857:205::-;47921:4;-1:-1:-1;;;;;47946:18:0;;47938:43;;;;-1:-1:-1;;;47938:43:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;;48001:21:0;;;;;:15;:21;;;;;;43644:1;48001:53;;47857:205::o;27337:339::-;27532:41;2804:10;27565:7;27532:18;:41::i;:::-;27524:103;;;;-1:-1:-1;;;27524:103:0;;;;;;;:::i;:::-;27640:28;27650:4;27656:2;27660:7;27640:9;:28::i;48407:528::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;43457:4:::1;48503:13;37724:10:::0;:17;;37636:113;48503:13:::1;:31;48495:52;;;;-1:-1:-1::0;;;48495:52:0::1;;;;;;;:::i;:::-;43457:4;48582:8;48566:13;37724:10:::0;:17;;37636:113;48566:13:::1;:24;;;;:::i;:::-;:43;;48558:76;;;::::0;-1:-1:-1;;;48558:76:0;;18666:2:1;48558:76:0::1;::::0;::::1;18648:21:1::0;18705:2;18685:18;;;18678:30;-1:-1:-1;;;18724:18:1;;;18717:50;18784:18;;48558:76:0::1;18464:344:1::0;48558:76:0::1;48665:14;;48653:8;:26;;48645:72;;;::::0;-1:-1:-1;;;48645:72:0;;9794:2:1;48645:72:0::1;::::0;::::1;9776:21:1::0;9833:2;9813:18;;;9806:30;9872:34;9852:18;;;9845:62;-1:-1:-1;;;9923:18:1;;;9916:31;9964:19;;48645:72:0::1;9592:397:1::0;48645:72:0::1;48747:1;48736:8;:12;48728:53;;;::::0;-1:-1:-1;;;48728:53:0;;17962:2:1;48728:53:0::1;::::0;::::1;17944:21:1::0;18001:2;17981:18;;;17974:30;18040;18020:18;;;18013:58;18088:18;;48728:53:0::1;17760:352:1::0;48728:53:0::1;48799:9;48794:134;48818:8;48814:1;:12;48794:134;;;48848:34;48858:4;48864:13;37724:10:::0;:17;;37636:113;48864:13:::1;:17;::::0;48880:1:::1;48864:17;:::i;:::-;48848:9;:34::i;:::-;48915:1;48897:14;;:19;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;48828:3:0;;-1:-1:-1;48828:3:0::1;::::0;::::1;:::i;:::-;;;;48794:134;;47038:346:::0;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;47131:9:::1;47127:250;47146:20:::0;;::::1;47127:250;;;47220:1;47196:9:::0;;47206:1;47196:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47196:26:0::1;;;47188:51;;;;-1:-1:-1::0;;;47188:51:0::1;;;;;;;:::i;:::-;47263:15;:29;47279:9;;47289:1;47279:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47263:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47263:29:0;;::::1;;47262:30;47254:58;;;::::0;-1:-1:-1;;;47254:58:0;;14993:2:1;47254:58:0::1;::::0;::::1;14975:21:1::0;15032:2;15012:18;;;15005:30;-1:-1:-1;;;15051:18:1;;;15044:45;15106:18;;47254:58:0::1;14791:339:1::0;47254:58:0::1;47361:4;47329:15;:29;47345:9;;47355:1;47345:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47329:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47329:29:0;:36;;-1:-1:-1;;47329:36:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47168:3;::::1;::::0;::::1;:::i;:::-;;;;47127:250;;37304:256:::0;37401:7;37437:23;37454:5;37437:16;:23::i;:::-;37429:5;:31;37421:87;;;;-1:-1:-1;;;37421:87:0;;9382:2:1;37421:87:0;;;9364:21:1;9421:2;9401:18;;;9394:30;9460:34;9440:18;;;9433:62;-1:-1:-1;;;9511:18:1;;;9504:41;9562:19;;37421:87:0;9180:407:1;37421:87:0;-1:-1:-1;;;;;;37526:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37304:256::o;51093:143::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;51169:19:::1;:13;51185:3:::0;;51169:19:::1;:::i;:::-;;51204:24;51224:3;;51204:24;;;;;;;:::i;:::-;;;;;;;;51093:143:::0;;:::o;27747:185::-;27885:39;27902:4;27908:2;27912:7;27885:39;;;;;;;;;;;;:16;:39::i;48943:934::-;46601:15;;;;46593:46;;;;-1:-1:-1;;;46593:46:0;;12077:2:1;46593:46:0;;;12059:21:1;12116:2;12096:18;;;12089:30;-1:-1:-1;;;12135:18:1;;;12128:48;12193:18;;46593:46:0;11875:342:1;46593:46:0;49051:10:::1;49035:27;::::0;;;:15:::1;:27;::::0;;;;;43644:1:::1;-1:-1:-1::0;49027:86:0::1;;;::::0;-1:-1:-1;;;49027:86:0;;25984:2:1;49027:86:0::1;::::0;::::1;25966:21:1::0;26023:2;26003:18;;;25996:30;-1:-1:-1;;;26042:18:1;;;26035:45;26097:18;;49027:86:0::1;25782:339:1::0;49027:86:0::1;49148:10;49132:27;::::0;;;:15:::1;:27;::::0;;;;;43644:1:::1;::::0;49132:38:::1;::::0;49162:8;;49132:38:::1;:::i;:::-;:70;;49124:101;;;::::0;-1:-1:-1;;;49124:101:0;;23414:2:1;49124:101:0::1;::::0;::::1;23396:21:1::0;23453:2;23433:18;;;23426:30;-1:-1:-1;;;23472:18:1;;;23465:48;23530:18;;49124:101:0::1;23212:342:1::0;49124:101:0::1;43532:3;49244:13;;:30;49236:59;;;::::0;-1:-1:-1;;;49236:59:0;;15688:2:1;49236:59:0::1;::::0;::::1;15670:21:1::0;15727:2;15707:18;;;15700:30;-1:-1:-1;;;15746:18:1;;;15739:46;15802:18;;49236:59:0::1;15486:340:1::0;49236:59:0::1;43532:3;49330:8;49314:13;;:24;;;;:::i;:::-;:42;;49306:77;;;::::0;-1:-1:-1;;;49306:77:0;;15337:2:1;49306:77:0::1;::::0;::::1;15319:21:1::0;15376:2;15356:18;;;15349:30;-1:-1:-1;;;15395:18:1;;;15388:52;15457:18;;49306:77:0::1;15135:346:1::0;49306:77:0::1;49430:9;49402:24;49418:8:::0;44037:9:::1;49402:24;:::i;:::-;:37;49394:68;;;::::0;-1:-1:-1;;;49394:68:0;;24942:2:1;49394:68:0::1;::::0;::::1;24924:21:1::0;24981:2;24961:18;;;24954:30;-1:-1:-1;;;25000:18:1;;;24993:48;25058:18;;49394:68:0::1;24740:342:1::0;49394:68:0::1;49492:1;49481:8;:12;49473:48;;;::::0;-1:-1:-1;;;49473:48:0;;25632:2:1;49473:48:0::1;::::0;::::1;25614:21:1::0;25671:2;25651:18;;;25644:30;-1:-1:-1;;;25690:18:1;;;25683:53;25753:18;;49473:48:0::1;25430:347:1::0;49473:48:0::1;43859:1;49540:8;:30;;49532:59;;;::::0;-1:-1:-1;;;49532:59:0;;19015:2:1;49532:59:0::1;::::0;::::1;18997:21:1::0;19054:2;19034:18;;;19027:30;-1:-1:-1;;;19073:18:1;;;19066:46;19129:18;;49532:59:0::1;18813:340:1::0;49532:59:0::1;49644:14;::::0;49626:32:::1;::::0;43457:4:::1;49626:32;:::i;:::-;37724:10:::0;:17;49610:48:::1;49602:69;;;;-1:-1:-1::0;;;49602:69:0::1;;;;;;;:::i;:::-;49689:9;49684:186;49708:8;49704:1;:12;49684:186;;;49754:10;49738:27;::::0;;;:15:::1;:27;::::0;;;;:32;;49769:1:::1;::::0;49738:27;:32:::1;::::0;49769:1;;49738:32:::1;:::i;:::-;::::0;;;-1:-1:-1;49785:40:0::1;::::0;-1:-1:-1;49795:10:0::1;49807:13;37724:10:::0;:17;;37636:113;49785:40:::1;49857:1;49840:13;;:18;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;49718:3:0;;-1:-1:-1;49718:3:0::1;::::0;::::1;:::i;:::-;;;;49684:186;;;;48943:934:::0;:::o;37826:233::-;37901:7;37937:30;37724:10;:17;;37636:113;37937:30;37929:5;:38;37921:95;;;;-1:-1:-1;;;37921:95:0;;24179:2:1;37921:95:0;;;24161:21:1;24218:2;24198:18;;;24191:30;24257:34;24237:18;;;24230:62;-1:-1:-1;;;24308:18:1;;;24301:42;24360:19;;37921:95:0;23977:408:1;37921:95:0;38034:10;38045:5;38034:17;;;;;;;;:::i;:::-;;;;;;;;;38027:24;;37826:233;;;:::o;47392:350::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;47490:9:::1;47486:249;47505:20:::0;;::::1;47486:249;;;47579:1;47555:9:::0;;47565:1;47555:12;;::::1;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47555:26:0::1;;;47547:51;;;;-1:-1:-1::0;;;47547:51:0::1;;;;;;;:::i;:::-;47621:15;:29;47637:9;;47647:1;47637:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47621:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47621:29:0;;::::1;;47613:56;;;::::0;-1:-1:-1;;;47613:56:0;;25289:2:1;47613:56:0::1;::::0;::::1;25271:21:1::0;25328:2;25308:18;;;25301:30;-1:-1:-1;;;25347:18:1;;;25340:44;25401:18;;47613:56:0::1;25087:338:1::0;47613:56:0::1;47718:5;47686:15;:29;47702:9;;47712:1;47702:12;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;47686:29:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;47686:29:0;:37;;-1:-1:-1;;47686:37:0::1;::::0;::::1;;::::0;;;::::1;::::0;;47527:3;::::1;::::0;::::1;:::i;:::-;;;;47486:249;;24582:239:::0;24654:7;24690:16;;;:7;:16;;;;;;-1:-1:-1;;;;;24690:16:0;24725:19;24717:73;;;;-1:-1:-1;;;24717:73:0;;16869:2:1;24717:73:0;;;16851:21:1;16908:2;16888:18;;;16881:30;16947:34;16927:18;;;16920:62;-1:-1:-1;;;16998:18:1;;;16991:39;17047:19;;24717:73:0;16667:405:1;24312:208:0;24384:7;-1:-1:-1;;;;;24412:19:0;;24404:74;;;;-1:-1:-1;;;24404:74:0;;16458:2:1;24404:74:0;;;16440:21:1;16497:2;16477:18;;;16470:30;16536:34;16516:18;;;16509:62;-1:-1:-1;;;16587:18:1;;;16580:40;16637:19;;24404:74:0;16256:406:1;24404:74:0;-1:-1:-1;;;;;;24496:16:0;;;;;:9;:16;;;;;;;24312:208::o;4587:94::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;4652:21:::1;4670:1;4652:9;:21::i;:::-;4587:94::o:0;48070:103::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;48150:15:::1;::::0;;-1:-1:-1;;48131:34:0;::::1;48150:15;::::0;;::::1;48149:16;48131:34;::::0;;48070:103::o;51799:1377::-;51850:10;46850:21;;;;:15;:21;;;;;;;;46842:53;;;;-1:-1:-1;;;46842:53:0;;9034:2:1;46842:53:0;;;9016:21:1;9073:2;9053:18;;;9046:30;-1:-1:-1;;;9092:18:1;;;9085:49;9151:18;;46842:53:0;8832:343:1;46842:53:0;51873:14:::1;51917:3;51890:26;:21;51914:2;51890:26;:::i;:::-;:30;;;;:::i;:::-;51873:47:::0;-1:-1:-1;51931:14:0::1;51975:3;51948:26;:21;51972:2;51948:26;:::i;:::-;:30;;;;:::i;:::-;51931:47:::0;-1:-1:-1;51989:14:0::1;52033:3;52006:26;:21;52030:2;52006:26;:::i;:::-;:30;;;;:::i;:::-;51989:47:::0;-1:-1:-1;52047:14:0::1;52091:3;52064:26;:21;52088:2;52064:26;:::i;:::-;:30;;;;:::i;:::-;52047:47:::0;-1:-1:-1;52105:14:0::1;52148:3;52122:25;:21;52146:1;52122:25;:::i;:::-;:29;;;;:::i;:::-;52105:46:::0;-1:-1:-1;52163:14:0::1;52206:3;52180:25;:21;52204:1;52180:25;:::i;:::-;:29;;;;:::i;:::-;52163:46:::0;-1:-1:-1;52221:14:0::1;52264:3;52238:25;:21;52262:1;52238:25;:::i;:::-;:29;;;;:::i;:::-;52221:46:::0;-1:-1:-1;52279:14:0::1;52322:3;52296:25;:21;52320:1;52296:25;:::i;:::-;:29;;;;:::i;:::-;52279:46:::0;-1:-1:-1;52337:14:0::1;52380:3;52354:25;:21;52378:1;52354:25;:::i;:::-;:29;;;;:::i;:::-;52337:46:::0;-1:-1:-1;52395:15:0::1;52439:3;52413:25;:21;52437:1;52413:25;:::i;:::-;:29;;;;:::i;:::-;52464:28;::::0;52395:47;;-1:-1:-1;44483:42:0::1;::::0;52464:28;::::1;;;::::0;52482:9;;52464:28:::1;::::0;;;52482:9;44483:42;52464:28;::::1;;;;;;52456:61;;;::::0;-1:-1:-1;;;52456:61:0;;22314:2:1;52456:61:0::1;::::0;::::1;22296:21:1::0;22353:2;22333:18;;;22326:30;-1:-1:-1;;;22372:18:1;;;22365:50;22432:18;;52456:61:0::1;22112:344:1::0;52456:61:0::1;52536:28;::::0;44563:42:::1;::::0;52536:28;::::1;;;::::0;52554:9;;52536:28:::1;::::0;;;52554:9;44563:42;52536:28;::::1;;;;;;52528:61;;;::::0;-1:-1:-1;;;52528:61:0;;23065:2:1;52528:61:0::1;::::0;::::1;23047:21:1::0;23104:2;23084:18;;;23077:30;-1:-1:-1;;;23123:18:1;;;23116:50;23183:18;;52528:61:0::1;22863:344:1::0;52528:61:0::1;52608:28;::::0;44643:42:::1;::::0;52608:28;::::1;;;::::0;52626:9;;52608:28:::1;::::0;;;52626:9;44643:42;52608:28;::::1;;;;;;52600:61;;;::::0;-1:-1:-1;;;52600:61:0;;19721:2:1;52600:61:0::1;::::0;::::1;19703:21:1::0;19760:2;19740:18;;;19733:30;-1:-1:-1;;;19779:18:1;;;19772:50;19839:18;;52600:61:0::1;19519:344:1::0;52600:61:0::1;52680:28;::::0;44723:42:::1;::::0;52680:28;::::1;;;::::0;52698:9;;52680:28:::1;::::0;;;52698:9;44723:42;52680:28;::::1;;;;;;52672:61;;;::::0;-1:-1:-1;;;52672:61:0;;11022:2:1;52672:61:0::1;::::0;::::1;11004:21:1::0;11061:2;11041:18;;;11034:30;-1:-1:-1;;;11080:18:1;;;11073:50;11140:18;;52672:61:0::1;10820:344:1::0;52672:61:0::1;52752:28;::::0;44803:42:::1;::::0;52752:28;::::1;;;::::0;52770:9;;52752:28:::1;::::0;;;52770:9;44803:42;52752:28;::::1;;;;;;52744:61;;;::::0;-1:-1:-1;;;52744:61:0;;13183:2:1;52744:61:0::1;::::0;::::1;13165:21:1::0;13222:2;13202:18;;;13195:30;-1:-1:-1;;;13241:18:1;;;13234:50;13301:18;;52744:61:0::1;12981:344:1::0;52744:61:0::1;52824:28;::::0;44883:42:::1;::::0;52824:28;::::1;;;::::0;52842:9;;52824:28:::1;::::0;;;52842:9;44883:42;52824:28;::::1;;;;;;52816:61;;;::::0;-1:-1:-1;;;52816:61:0;;13881:2:1;52816:61:0::1;::::0;::::1;13863:21:1::0;13920:2;13900:18;;;13893:30;-1:-1:-1;;;13939:18:1;;;13932:50;13999:18;;52816:61:0::1;13679:344:1::0;52816:61:0::1;52896:28;::::0;44963:42:::1;::::0;52896:28;::::1;;;::::0;52914:9;;52896:28:::1;::::0;;;52914:9;44963:42;52896:28;::::1;;;;;;52888:61;;;::::0;-1:-1:-1;;;52888:61:0;;13532:2:1;52888:61:0::1;::::0;::::1;13514:21:1::0;13571:2;13551:18;;;13544:30;-1:-1:-1;;;13590:18:1;;;13583:50;13650:18;;52888:61:0::1;13330:344:1::0;52888:61:0::1;52968:28;::::0;45043:42:::1;::::0;52968:28;::::1;;;::::0;52986:9;;52968:28:::1;::::0;;;52986:9;45043:42;52968:28;::::1;;;;;;52960:61;;;::::0;-1:-1:-1;;;52960:61:0;;20844:2:1;52960:61:0::1;::::0;::::1;20826:21:1::0;20883:2;20863:18;;;20856:30;-1:-1:-1;;;20902:18:1;;;20895:50;20962:18;;52960:61:0::1;20642:344:1::0;52960:61:0::1;53040:28;::::0;45123:42:::1;::::0;53040:28;::::1;;;::::0;53058:9;;53040:28:::1;::::0;;;53058:9;45123:42;53040:28;::::1;;;;;;53032:61;;;::::0;-1:-1:-1;;;53032:61:0;;11728:2:1;53032:61:0::1;::::0;::::1;11710:21:1::0;11767:2;11747:18;;;11740:30;-1:-1:-1;;;11786:18:1;;;11779:50;11846:18;;53032:61:0::1;11526:344:1::0;53032:61:0::1;53112:30;::::0;45204:42:::1;::::0;53112:30;::::1;;;::::0;53131:10;;53112:30:::1;::::0;;;53131:10;45204:42;53112:30;::::1;;;;;;53104:64;;;::::0;-1:-1:-1;;;53104:64:0;;24592:2:1;53104:64:0::1;::::0;::::1;24574:21:1::0;24631:2;24611:18;;;24604:30;-1:-1:-1;;;24650:18:1;;;24643:51;24711:18;;53104:64:0::1;24390:345:1::0;53104:64:0::1;51862:1314;;;;;;;;;;51799:1377:::0;:::o;50836:140::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;50911:18:::1;:12;50926:3:::0;;50911:18:::1;:::i;:::-;;50945:23;50964:3;;50945:23;;;;;;;:::i;25057:104::-:0;25113:13;25146:7;25139:14;;;;;:::i;49885:833::-;46712:18;;;;;;;46704:53;;;;-1:-1:-1;;;46704:53:0;;21963:2:1;46704:53:0;;;21945:21:1;22002:2;21982:18;;;21975:30;-1:-1:-1;;;22021:18:1;;;22014:52;22083:18;;46704:53:0;21761:346:1;46704:53:0;49968:9:::1;49981:10;49968:23;49960:54;;;::::0;-1:-1:-1;;;49960:54:0;;18319:2:1;49960:54:0::1;::::0;::::1;18301:21:1::0;18358:2;18338:18;;;18331:30;-1:-1:-1;;;18377:18:1;;;18370:48;18435:18;;49960:54:0::1;18117:342:1::0;49960:54:0::1;50077:14;::::0;50059:32:::1;::::0;43457:4:::1;50059:32;:::i;:::-;37724:10:::0;:17;50043:48:::1;50035:69;;;;-1:-1:-1::0;;;50035:69:0::1;;;;;;;:::i;:::-;50134:1;50123:8;:12;50115:48;;;::::0;-1:-1:-1;;;50115:48:0;;25632:2:1;50115:48:0::1;::::0;::::1;25614:21:1::0;25671:2;25651:18;;;25644:30;-1:-1:-1;;;25690:18:1;;;25683:53;25753:18;;50115:48:0::1;25430:347:1::0;50115:48:0::1;50228:14;::::0;50210:32:::1;::::0;43457:4:::1;50210:32;:::i;:::-;50198:8;50182:13;37724:10:::0;:17;;37636:113;50182:13:::1;:24;;;;:::i;:::-;:60;;50174:91;;;::::0;-1:-1:-1;;;50174:91:0;;17279:2:1;50174:91:0::1;::::0;::::1;17261:21:1::0;17318:2;17298:18;;;17291:30;-1:-1:-1;;;17337:18:1;;;17330:48;17395:18;;50174:91:0::1;17077:342:1::0;50174:91:0::1;43947:1;50284:8;:29;;50276:58;;;::::0;-1:-1:-1;;;50276:58:0;;19015:2:1;50276:58:0::1;::::0;::::1;18997:21:1::0;19054:2;19034:18;;;19027:30;-1:-1:-1;;;19073:18:1;;;19066:46;19129:18;;50276:58:0::1;18813:340:1::0;50276:58:0::1;50397:10;50381:27;::::0;;;:15:::1;:27;::::0;;;;;;;;50353:13:::1;:25:::0;;;;;;;43754:1:::1;::::0;50411:8;;50353:55:::1;::::0;50381:27;50353:55:::1;:::i;:::-;:66;;;;:::i;:::-;:97;;50345:131;;;::::0;-1:-1:-1;;;50345:131:0;;14230:2:1;50345:131:0::1;::::0;::::1;14212:21:1::0;14269:2;14249:18;;;14242:30;-1:-1:-1;;;14288:18:1;;;14281:51;14349:18;;50345:131:0::1;14028:345:1::0;50345:131:0::1;50515:9;50495:16;50503:8:::0;44085:10:::1;50495:16;:::i;:::-;:29;50487:60;;;::::0;-1:-1:-1;;;50487:60:0;;24942:2:1;50487:60:0::1;::::0;::::1;24924:21:1::0;24981:2;24961:18;;;24954:30;-1:-1:-1;;;25000:18:1;;;24993:48;25058:18;;50487:60:0::1;24740:342:1::0;50487:60:0::1;50565:9;50560:151;50584:8;50580:1;:12;50560:151;;;50628:10;50614:25;::::0;;;:13:::1;:25;::::0;;;;:30;;50643:1:::1;::::0;50614:25;:30:::1;::::0;50643:1;;50614:30:::1;:::i;:::-;::::0;;;-1:-1:-1;50659:40:0::1;::::0;-1:-1:-1;50669:10:0::1;50681:13;37724:10:::0;:17;;37636:113;50659:40:::1;50594:3:::0;::::1;::::0;::::1;:::i;:::-;;;;50560:151;;26740:295:::0;-1:-1:-1;;;;;26843:24:0;;2804:10;26843:24;;26835:62;;;;-1:-1:-1;;;26835:62:0;;12829:2:1;26835:62:0;;;12811:21:1;12868:2;12848:18;;;12841:30;12907:27;12887:18;;;12880:55;12952:18;;26835:62:0;12627:349:1;26835:62:0;2804:10;26910:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26910:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26910:53:0;;;;;;;;;;26979:48;;7820:41:1;;;26910:42:0;;2804:10;26979:48;;7793:18:1;26979:48:0;;;;;;;26740:295;;:::o;28003:328::-;28178:41;2804:10;28211:7;28178:18;:41::i;:::-;28170:103;;;;-1:-1:-1;;;28170:103:0;;;;;;;:::i;:::-;28284:39;28298:4;28304:2;28308:7;28317:5;28284:13;:39::i;:::-;28003:328;;;;:::o;48181:112::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;48267:18:::1;::::0;;-1:-1:-1;;48245:40:0;::::1;48267:18;::::0;;;::::1;;;48266:19;48245:40:::0;;::::1;;::::0;;48181:112::o;51355:323::-;29906:4;29930:16;;;:7;:16;;;;;;51428:13;;-1:-1:-1;;;;;29930:16:0;51454:60;;;;-1:-1:-1;;;51454:60:0;;21603:2:1;51454:60:0;;;21585:21:1;21642:2;21622:18;;;21615:30;21681:33;21661:18;;;21654:61;21732:18;;51454:60:0;21401:355:1;51454:60:0;51525:22;51574:18;:7;:16;:18::i;:::-;51557:45;;;;;;;;:::i;:::-;;;;;;;;;;;;;51525:78;;51645:13;51660:8;51628:41;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51614:56;;;51355:323;;;:::o;51244:99::-;51289:13;51322;51315:20;;;;;:::i;53184:134::-;53241:10;46850:21;;;;:15;:21;;;;;;;;46842:53;;;;-1:-1:-1;;;46842:53:0;;9034:2:1;46842:53:0;;;9016:21:1;9073:2;9053:18;;;9046:30;-1:-1:-1;;;9092:18:1;;;9085:49;9151:18;;46842:53:0;8832:343:1;46842:53:0;53265:44:::1;::::0;44483:42:::1;::::0;53287:21:::1;53265:44:::0;::::1;;;::::0;::::1;::::0;;;53287:21;44483:42;53265:44;::::1;;;;;;;;;;;;;::::0;::::1;;;;50984:97:::0;51028:13;51061:12;51054:19;;;;;:::i;4836:192::-;4009:6;;-1:-1:-1;;;;;4009:6:0;2804:10;4156:23;4148:68;;;;-1:-1:-1;;;4148:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;4925:22:0;::::1;4917:73;;;::::0;-1:-1:-1;;;4917:73:0;;10615:2:1;4917:73:0::1;::::0;::::1;10597:21:1::0;10654:2;10634:18;;;10627:30;10693:34;10673:18;;;10666:62;-1:-1:-1;;;10744:18:1;;;10737:36;10790:19;;4917:73:0::1;10413:402:1::0;4917:73:0::1;5001:19;5011:8;5001:9;:19::i;:::-;4836:192:::0;:::o;23943:305::-;24045:4;-1:-1:-1;;;;;;24082:40:0;;-1:-1:-1;;;24082:40:0;;:105;;-1:-1:-1;;;;;;;24139:48:0;;-1:-1:-1;;;24139:48:0;24082:105;:158;;;-1:-1:-1;;;;;;;;;;16031:40:0;;;24204:36;15922:157;33823:174;33898:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33898:29:0;-1:-1:-1;;;;;33898:29:0;;;;;;;;:24;;33952:23;33898:24;33952:14;:23::i;:::-;-1:-1:-1;;;;;33943:46:0;;;;;;;;;;;33823:174;;:::o;30135:348::-;30228:4;29930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29930:16:0;30245:73;;;;-1:-1:-1;;;30245:73:0;;14580:2:1;30245:73:0;;;14562:21:1;14619:2;14599:18;;;14592:30;14658:34;14638:18;;;14631:62;-1:-1:-1;;;14709:18:1;;;14702:42;14761:19;;30245:73:0;14378:408:1;30245:73:0;30329:13;30345:23;30360:7;30345:14;:23::i;:::-;30329:39;;30398:5;-1:-1:-1;;;;;30387:16:0;:7;-1:-1:-1;;;;;30387:16:0;;:51;;;;30431:7;-1:-1:-1;;;;;30407:31:0;:20;30419:7;30407:11;:20::i;:::-;-1:-1:-1;;;;;30407:31:0;;30387:51;:87;;;-1:-1:-1;;;;;;27227:25:0;;;27203:4;27227:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;30442:32;30379:96;30135:348;-1:-1:-1;;;;30135:348:0:o;33127:578::-;33286:4;-1:-1:-1;;;;;33259:31:0;:23;33274:7;33259:14;:23::i;:::-;-1:-1:-1;;;;;33259:31:0;;33251:85;;;;-1:-1:-1;;;33251:85:0;;21193:2:1;33251:85:0;;;21175:21:1;21232:2;21212:18;;;21205:30;21271:34;21251:18;;;21244:62;-1:-1:-1;;;21322:18:1;;;21315:39;21371:19;;33251:85:0;20991:405:1;33251:85:0;-1:-1:-1;;;;;33355:16:0;;33347:65;;;;-1:-1:-1;;;33347:65:0;;12424:2:1;33347:65:0;;;12406:21:1;12463:2;12443:18;;;12436:30;12502:34;12482:18;;;12475:62;-1:-1:-1;;;12553:18:1;;;12546:34;12597:19;;33347:65:0;12222:400:1;33347:65:0;33425:39;33446:4;33452:2;33456:7;33425:20;:39::i;:::-;33529:29;33546:1;33550:7;33529:8;:29::i;:::-;-1:-1:-1;;;;;33571:15:0;;;;;;:9;:15;;;;;:20;;33590:1;;33571:15;:20;;33590:1;;33571:20;:::i;:::-;;;;-1:-1:-1;;;;;;;33602:13:0;;;;;;:9;:13;;;;;:18;;33619:1;;33602:13;:18;;33619:1;;33602:18;:::i;:::-;;;;-1:-1:-1;;33631:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;33631:21:0;-1:-1:-1;;;;;33631:21:0;;;;;;;;;33670:27;;33631:16;;33670:27;;;;;;;33127:578;;;:::o;30825:110::-;30901:26;30911:2;30915:7;30901:26;;;;;;;;;;;;:9;:26::i;5036:173::-;5111:6;;;-1:-1:-1;;;;;5128:17:0;;;-1:-1:-1;;;;;;5128:17:0;;;;;;;5161:40;;5111:6;;;5128:17;5111:6;;5161:40;;5092:16;;5161:40;5081:128;5036:173;:::o;29213:315::-;29370:28;29380:4;29386:2;29390:7;29370:9;:28::i;:::-;29417:48;29440:4;29446:2;29450:7;29459:5;29417:22;:48::i;:::-;29409:111;;;;-1:-1:-1;;;29409:111:0;;;;;;;:::i;340:723::-;396:13;617:10;613:53;;-1:-1:-1;;644:10:0;;;;;;;;;;;;-1:-1:-1;;;644:10:0;;;;;340:723::o;613:53::-;691:5;676:12;732:78;739:9;;732:78;;765:8;;;;:::i;:::-;;-1:-1:-1;788:10:0;;-1:-1:-1;796:2:0;788:10;;:::i;:::-;;;732:78;;;820:19;852:6;842:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;842:17:0;;820:39;;870:154;877:10;;870:154;;904:11;914:1;904:11;;:::i;:::-;;-1:-1:-1;973:10:0;981:2;973:5;:10;:::i;:::-;960:24;;:2;:24;:::i;:::-;947:39;;930:6;937;930:14;;;;;;;;:::i;:::-;;;;:56;-1:-1:-1;;;;;930:56:0;;;;;;;;-1:-1:-1;1001:11:0;1010:2;1001:11;;:::i;:::-;;;870:154;;38672:589;-1:-1:-1;;;;;38878:18:0;;38874:187;;38913:40;38945:7;40088:10;:17;;40061:24;;;;:15;:24;;;;;:44;;;40116:24;;;;;;;;;;;;39984:164;38913:40;38874:187;;;38983:2;-1:-1:-1;;;;;38975:10:0;:4;-1:-1:-1;;;;;38975:10:0;;38971:90;;39002:47;39035:4;39041:7;39002:32;:47::i;:::-;-1:-1:-1;;;;;39075:16:0;;39071:183;;39108:45;39145:7;39108:36;:45::i;39071:183::-;39181:4;-1:-1:-1;;;;;39175:10:0;:2;-1:-1:-1;;;;;39175:10:0;;39171:83;;39202:40;39230:2;39234:7;39202:27;:40::i;31162:321::-;31292:18;31298:2;31302:7;31292:5;:18::i;:::-;31343:54;31374:1;31378:2;31382:7;31391:5;31343:22;:54::i;:::-;31321:154;;;;-1:-1:-1;;;31321:154:0;;;;;;;:::i;34562:799::-;34717:4;-1:-1:-1;;;;;34738:13:0;;6305:20;6353:8;34734:620;;34774:72;;-1:-1:-1;;;34774:72:0;;-1:-1:-1;;;;;34774:36:0;;;;;:72;;2804:10;;34825:4;;34831:7;;34840:5;;34774:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34774:72:0;;;;;;;;-1:-1:-1;;34774:72:0;;;;;;;;;;;;:::i;:::-;;;34770:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;35016:13:0;;35012:272;;35059:60;;-1:-1:-1;;;35059:60:0;;;;;;;:::i;35012:272::-;35234:6;35228:13;35219:6;35215:2;35211:15;35204:38;34770:529;-1:-1:-1;;;;;;34897:51:0;-1:-1:-1;;;34897:51:0;;-1:-1:-1;34890:58:0;;34734:620;-1:-1:-1;35338:4:0;34562:799;;;;;;:::o;40775:988::-;41041:22;41091:1;41066:22;41083:4;41066:16;:22::i;:::-;:26;;;;:::i;:::-;41103:18;41124:26;;;:17;:26;;;;;;41041:51;;-1:-1:-1;41257:28:0;;;41253:328;;-1:-1:-1;;;;;41324:18:0;;41302:19;41324:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41375:30;;;;;;:44;;;41492:30;;:17;:30;;;;;:43;;;41253:328;-1:-1:-1;41677:26:0;;;;:17;:26;;;;;;;;41670:33;;;-1:-1:-1;;;;;41721:18:0;;;;;:12;:18;;;;;:34;;;;;;;41714:41;40775:988::o;42058:1079::-;42336:10;:17;42311:22;;42336:21;;42356:1;;42336:21;:::i;:::-;42368:18;42389:24;;;:15;:24;;;;;;42762:10;:26;;42311:46;;-1:-1:-1;42389:24:0;;42311:46;;42762:26;;;;;;:::i;:::-;;;;;;;;;42740:48;;42826:11;42801:10;42812;42801:22;;;;;;;;:::i;:::-;;;;;;;;;;;;:36;;;;42906:28;;;:15;:28;;;;;;;:41;;;43078:24;;;;;43071:31;43113:10;:16;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;42129:1008;;;42058:1079;:::o;39562:221::-;39647:14;39664:20;39681:2;39664:16;:20::i;:::-;-1:-1:-1;;;;;39695:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39740:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39562:221:0:o;31819:382::-;-1:-1:-1;;;;;31899:16:0;;31891:61;;;;-1:-1:-1;;;31891:61:0;;19360:2:1;31891:61:0;;;19342:21:1;;;19379:18;;;19372:30;19438:34;19418:18;;;19411:62;19490:18;;31891:61:0;19158:356:1;31891:61:0;29906:4;29930:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29930:16:0;:30;31963:58;;;;-1:-1:-1;;;31963:58:0;;11371:2:1;31963:58:0;;;11353:21:1;11410:2;11390:18;;;11383:30;11449;11429:18;;;11422:58;11497:18;;31963:58:0;11169:352:1;31963:58:0;32034:45;32063:1;32067:2;32071:7;32034:20;:45::i;:::-;-1:-1:-1;;;;;32092:13:0;;;;;;:9;:13;;;;;:18;;32109:1;;32092:13;:18;;32109:1;;32092:18;:::i;:::-;;;;-1:-1:-1;;32121:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32121:21:0;-1:-1:-1;;;;;32121:21:0;;;;;;;;32160:33;;32121:16;;;32160:33;;32121:16;;32160:33;31819:382;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;14:173:1;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:186::-;251:6;304:2;292:9;283:7;279:23;275:32;272:52;;;320:1;317;310:12;272:52;343:29;362:9;343:29;:::i;:::-;333:39;192:186;-1:-1:-1;;;192:186:1:o;383:260::-;451:6;459;512:2;500:9;491:7;487:23;483:32;480:52;;;528:1;525;518:12;480:52;551:29;570:9;551:29;:::i;:::-;541:39;;599:38;633:2;622:9;618:18;599:38;:::i;:::-;589:48;;383:260;;;;;:::o;648:328::-;725:6;733;741;794:2;782:9;773:7;769:23;765:32;762:52;;;810:1;807;800:12;762:52;833:29;852:9;833:29;:::i;:::-;823:39;;881:38;915:2;904:9;900:18;881:38;:::i;:::-;871:48;;966:2;955:9;951:18;938:32;928:42;;648:328;;;;;:::o;981:1138::-;1076:6;1084;1092;1100;1153:3;1141:9;1132:7;1128:23;1124:33;1121:53;;;1170:1;1167;1160:12;1121:53;1193:29;1212:9;1193:29;:::i;:::-;1183:39;;1241:38;1275:2;1264:9;1260:18;1241:38;:::i;:::-;1231:48;;1326:2;1315:9;1311:18;1298:32;1288:42;;1381:2;1370:9;1366:18;1353:32;1404:18;1445:2;1437:6;1434:14;1431:34;;;1461:1;1458;1451:12;1431:34;1499:6;1488:9;1484:22;1474:32;;1544:7;1537:4;1533:2;1529:13;1525:27;1515:55;;1566:1;1563;1556:12;1515:55;1602:2;1589:16;1624:2;1620;1617:10;1614:36;;;1630:18;;:::i;:::-;1705:2;1699:9;1673:2;1759:13;;-1:-1:-1;;1755:22:1;;;1779:2;1751:31;1747:40;1735:53;;;1803:18;;;1823:22;;;1800:46;1797:72;;;1849:18;;:::i;:::-;1889:10;1885:2;1878:22;1924:2;1916:6;1909:18;1964:7;1959:2;1954;1950;1946:11;1942:20;1939:33;1936:53;;;1985:1;1982;1975:12;1936:53;2041:2;2036;2032;2028:11;2023:2;2015:6;2011:15;1998:46;2086:1;2081:2;2076;2068:6;2064:15;2060:24;2053:35;2107:6;2097:16;;;;;;;981:1138;;;;;;;:::o;2124:347::-;2189:6;2197;2250:2;2238:9;2229:7;2225:23;2221:32;2218:52;;;2266:1;2263;2256:12;2218:52;2289:29;2308:9;2289:29;:::i;:::-;2279:39;;2368:2;2357:9;2353:18;2340:32;2415:5;2408:13;2401:21;2394:5;2391:32;2381:60;;2437:1;2434;2427:12;2381:60;2460:5;2450:15;;;2124:347;;;;;:::o;2476:254::-;2544:6;2552;2605:2;2593:9;2584:7;2580:23;2576:32;2573:52;;;2621:1;2618;2611:12;2573:52;2644:29;2663:9;2644:29;:::i;:::-;2634:39;2720:2;2705:18;;;;2692:32;;-1:-1:-1;;;2476:254:1:o;2735:615::-;2821:6;2829;2882:2;2870:9;2861:7;2857:23;2853:32;2850:52;;;2898:1;2895;2888:12;2850:52;2938:9;2925:23;2967:18;3008:2;3000:6;2997:14;2994:34;;;3024:1;3021;3014:12;2994:34;3062:6;3051:9;3047:22;3037:32;;3107:7;3100:4;3096:2;3092:13;3088:27;3078:55;;3129:1;3126;3119:12;3078:55;3169:2;3156:16;3195:2;3187:6;3184:14;3181:34;;;3211:1;3208;3201:12;3181:34;3264:7;3259:2;3249:6;3246:1;3242:14;3238:2;3234:23;3230:32;3227:45;3224:65;;;3285:1;3282;3275:12;3224:65;3316:2;3308:11;;;;;3338:6;;-1:-1:-1;2735:615:1;;-1:-1:-1;;;;2735:615:1:o;3355:245::-;3413:6;3466:2;3454:9;3445:7;3441:23;3437:32;3434:52;;;3482:1;3479;3472:12;3434:52;3521:9;3508:23;3540:30;3564:5;3540:30;:::i;3605:249::-;3674:6;3727:2;3715:9;3706:7;3702:23;3698:32;3695:52;;;3743:1;3740;3733:12;3695:52;3775:9;3769:16;3794:30;3818:5;3794:30;:::i;3859:592::-;3930:6;3938;3991:2;3979:9;3970:7;3966:23;3962:32;3959:52;;;4007:1;4004;3997:12;3959:52;4047:9;4034:23;4076:18;4117:2;4109:6;4106:14;4103:34;;;4133:1;4130;4123:12;4103:34;4171:6;4160:9;4156:22;4146:32;;4216:7;4209:4;4205:2;4201:13;4197:27;4187:55;;4238:1;4235;4228:12;4187:55;4278:2;4265:16;4304:2;4296:6;4293:14;4290:34;;;4320:1;4317;4310:12;4290:34;4365:7;4360:2;4351:6;4347:2;4343:15;4339:24;4336:37;4333:57;;;4386:1;4383;4376:12;4456:180;4515:6;4568:2;4556:9;4547:7;4543:23;4539:32;4536:52;;;4584:1;4581;4574:12;4536:52;-1:-1:-1;4607:23:1;;4456:180;-1:-1:-1;4456:180:1:o;4641:254::-;4709:6;4717;4770:2;4758:9;4749:7;4745:23;4741:32;4738:52;;;4786:1;4783;4776:12;4738:52;4822:9;4809:23;4799:33;;4851:38;4885:2;4874:9;4870:18;4851:38;:::i;4900:257::-;4941:3;4979:5;4973:12;5006:6;5001:3;4994:19;5022:63;5078:6;5071:4;5066:3;5062:14;5055:4;5048:5;5044:16;5022:63;:::i;:::-;5139:2;5118:15;-1:-1:-1;;5114:29:1;5105:39;;;;5146:4;5101:50;;4900:257;-1:-1:-1;;4900:257:1:o;5162:185::-;5204:3;5242:5;5236:12;5257:52;5302:6;5297:3;5290:4;5283:5;5279:16;5257:52;:::i;:::-;5325:16;;;;;5162:185;-1:-1:-1;;5162:185:1:o;5352:443::-;5584:3;5622:6;5616:13;5638:53;5684:6;5679:3;5672:4;5664:6;5660:17;5638:53;:::i;:::-;-1:-1:-1;;;5713:16:1;;5738:22;;;-1:-1:-1;5787:1:1;5776:13;;5352:443;-1:-1:-1;5352:443:1:o;5800:1174::-;5976:3;6005:1;6038:6;6032:13;6068:3;6090:1;6118:9;6114:2;6110:18;6100:28;;6178:2;6167:9;6163:18;6200;6190:61;;6244:4;6236:6;6232:17;6222:27;;6190:61;6270:2;6318;6310:6;6307:14;6287:18;6284:38;6281:165;;;-1:-1:-1;;;6345:33:1;;6401:4;6398:1;6391:15;6431:4;6352:3;6419:17;6281:165;6462:18;6489:104;;;;6607:1;6602:320;;;;6455:467;;6489:104;-1:-1:-1;;6522:24:1;;6510:37;;6567:16;;;;-1:-1:-1;6489:104:1;;6602:320;26381:1;26374:14;;;26418:4;26405:18;;6697:1;6711:165;6725:6;6722:1;6719:13;6711:165;;;6803:14;;6790:11;;;6783:35;6846:16;;;;6740:10;;6711:165;;;6715:3;;6905:6;6900:3;6896:16;6889:23;;6455:467;;;;;;;6938:30;6964:3;6956:6;6938:30;:::i;:::-;6931:37;5800:1174;-1:-1:-1;;;;;5800:1174:1:o;7187:488::-;-1:-1:-1;;;;;7456:15:1;;;7438:34;;7508:15;;7503:2;7488:18;;7481:43;7555:2;7540:18;;7533:34;;;7603:3;7598:2;7583:18;;7576:31;;;7381:4;;7624:45;;7649:19;;7641:6;7624:45;:::i;:::-;7616:53;7187:488;-1:-1:-1;;;;;;7187:488:1:o;7872:390::-;8031:2;8020:9;8013:21;8070:6;8065:2;8054:9;8050:18;8043:34;8127:6;8119;8114:2;8103:9;8099:18;8086:48;8183:1;8154:22;;;8178:2;8150:31;;;8143:42;;;;8246:2;8225:15;;;-1:-1:-1;;8221:29:1;8206:45;8202:54;;7872:390;-1:-1:-1;7872:390:1:o;8267:219::-;8416:2;8405:9;8398:21;8379:4;8436:44;8476:2;8465:9;8461:18;8453:6;8436:44;:::i;8491:336::-;8693:2;8675:21;;;8732:2;8712:18;;;8705:30;-1:-1:-1;;;8766:2:1;8751:18;;8744:42;8818:2;8803:18;;8491:336::o;9994:414::-;10196:2;10178:21;;;10235:2;10215:18;;;10208:30;10274:34;10269:2;10254:18;;10247:62;-1:-1:-1;;;10340:2:1;10325:18;;10318:48;10398:3;10383:19;;9994:414::o;17424:331::-;17626:2;17608:21;;;17665:1;17645:18;;;17638:29;-1:-1:-1;;;17698:2:1;17683:18;;17676:38;17746:2;17731:18;;17424:331::o;20281:356::-;20483:2;20465:21;;;20502:18;;;20495:30;20561:34;20556:2;20541:18;;20534:62;20628:2;20613:18;;20281:356::o;23559:413::-;23761:2;23743:21;;;23800:2;23780:18;;;23773:30;23839:34;23834:2;23819:18;;23812:62;-1:-1:-1;;;23905:2:1;23890:18;;23883:47;23962:3;23947:19;;23559:413::o;26434:128::-;26474:3;26505:1;26501:6;26498:1;26495:13;26492:39;;;26511:18;;:::i;:::-;-1:-1:-1;26547:9:1;;26434:128::o;26567:120::-;26607:1;26633;26623:35;;26638:18;;:::i;:::-;-1:-1:-1;26672:9:1;;26567:120::o;26692:168::-;26732:7;26798:1;26794;26790:6;26786:14;26783:1;26780:21;26775:1;26768:9;26761:17;26757:45;26754:71;;;26805:18;;:::i;:::-;-1:-1:-1;26845:9:1;;26692:168::o;26865:125::-;26905:4;26933:1;26930;26927:8;26924:34;;;26938:18;;:::i;:::-;-1:-1:-1;26975:9:1;;26865:125::o;26995:258::-;27067:1;27077:113;27091:6;27088:1;27085:13;27077:113;;;27167:11;;;27161:18;27148:11;;;27141:39;27113:2;27106:10;27077:113;;;27208:6;27205:1;27202:13;27199:48;;;-1:-1:-1;;27243:1:1;27225:16;;27218:27;26995:258::o;27258:380::-;27337:1;27333:12;;;;27380;;;27401:61;;27455:4;27447:6;27443:17;27433:27;;27401:61;27508:2;27500:6;27497:14;27477:18;27474:38;27471:161;;;27554:10;27549:3;27545:20;27542:1;27535:31;27589:4;27586:1;27579:15;27617:4;27614:1;27607:15;27471:161;;27258:380;;;:::o;27643:135::-;27682:3;-1:-1:-1;;27703:17:1;;27700:43;;;27723:18;;:::i;:::-;-1:-1:-1;27770:1:1;27759:13;;27643:135::o;27783:112::-;27815:1;27841;27831:35;;27846:18;;:::i;:::-;-1:-1:-1;27880:9:1;;27783:112::o;27900:127::-;27961:10;27956:3;27952:20;27949:1;27942:31;27992:4;27989:1;27982:15;28016:4;28013:1;28006:15;28032:127;28093:10;28088:3;28084:20;28081:1;28074:31;28124:4;28121:1;28114:15;28148:4;28145:1;28138:15;28164:127;28225:10;28220:3;28216:20;28213:1;28206:31;28256:4;28253:1;28246:15;28280:4;28277:1;28270:15;28296:127;28357:10;28352:3;28348:20;28345:1;28338:31;28388:4;28385:1;28378:15;28412:4;28409:1;28402:15;28428:127;28489:10;28484:3;28480:20;28477:1;28470:31;28520:4;28517:1;28510:15;28544:4;28541:1;28534:15;28560:131;-1:-1:-1;;;;;;28634:32:1;;28624:43;;28614:71;;28681:1;28678;28671:12

Swarm Source

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