ETH Price: $3,363.16 (-1.57%)
Gas: 6 Gwei

Token

Women Tribe (WT)
 

Overview

Max Total Supply

10,000 WT

Holders

5,117

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
1 WT
0x926c510c49e4b4d9a4624cdeacf0f2b097d7c2c5
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

Women Tribe is a collection of 10,000 NFTs that were created to help women embrace their inner divinity and power.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WomenTribeNFT

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, Unlicense license

Contract Source Code (Solidity Multiple files format)

File 14 of 14: WomenTribe_NFT.sol
// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.4;

import "./ERC721A.sol";
import "./Ownable.sol";
import "./SafeMath.sol";
import "./Strings.sol";
import "./MerkleProof.sol";

contract WomenTribeNFT is ERC721A, Ownable {
    using Strings for uint256;
    using SafeMath for uint256;

    string private baseURI;
    string private notRevealedUri;
    string public constant baseExtension = ".json";
    uint256 private reservedMinted = 0;

    uint256 public constant WT_MINT_MAX_AMOUNT = 3;
    uint256 public constant WT_MINT_PRICE = 0.04 ether;
    uint256 public constant WT_MAX_RESERVED_COUNT = 286; // Reserving 286 tokens for the team
    uint256 public constant WT_TOTAL_SUPPLY = 10000;

    bool public isPresaleLive = false; // True only when presale is active
    bool public isPublicSaleLive = false; // Covers the period of general public sales
    bool public revealed = false;

    bytes32 private merkleRootHash;

    // Team wallet addresses
    address private constant WALLET1 =
        0x8c70A6fd46D4e11A62D3f9E81E2d33a82fa89f82;
    address private constant WALLET2 =
        0xCBc0ACAC84A25AdD42e908b6932F0678C82FbD45;
    address private constant WALLET3 =
        0x7e503EFCBFb64E8f451e88F8AB438e20a88062c3;
    address private constant WALLET4 =
        0x695Bca9eE4F78cC1049565f9FaC504fc27f02fA2;
    address private constant WALLET5 =
        0xDe3bc9E504Ca4F0E81fAbc1f37160E9ff4Bf90D2;
    address private constant WALLET_TREASURY =
        0x9A5FE78EE5B4F5A8BAFfF54854822435c68f306c;

    // -----------------------------------------------------------
    // CONSTRUCTOR
    constructor(
        string memory _initBaseURI,
        string memory _initNotRevealedUri,
        bytes32 _initMerkleRootHash
    ) ERC721A("Women Tribe", "WT") {
        setBaseURI(_initBaseURI);
        setNotRevealedURI(_initNotRevealedUri);
        setMerkleRootHash(_initMerkleRootHash);
    }

    // ------------------------------------------
    // MINTING
    function mintPresale(uint256 _mintAmount, bytes32[] calldata _merkleProof)
        external
        payable
    {
        require(isPresaleLive, "the presale is not open yet");
        require(_mintAmount > 0, "amount to mint should be a positive number");

        address minter = _msgSender();
        require(tx.origin == minter, "contracts are not allowed to mint");

        uint256 newMintsPerAddress = _numberMinted(msg.sender) + _mintAmount;
        require(
            newMintsPerAddress <= WT_MINT_MAX_AMOUNT,
            "cannot mint the amount requested"
        );

        require(WT_MINT_PRICE * _mintAmount <= msg.value, "insufficient funds");

        bytes32 leafHash = keccak256(abi.encodePacked(msg.sender));
        require(
            MerkleProof.verify(_merkleProof, merkleRootHash, leafHash),
            "your wallet is not in the presale list"
        );

        uint256 supply = currentIndex;
        require(
            supply + _mintAmount <= WT_TOTAL_SUPPLY,
            "the collection is sold out"
        );

        _mint(msg.sender, _mintAmount, "", false);
    }

    function mintPublicSale(uint256 _mintAmount) external payable {
        require(isPublicSaleLive, "the public sale is not open yet");
        require(_mintAmount > 0, "amount to mint should be a positive number");

        address minter = _msgSender();
        require(tx.origin == minter, "contracts are not allowed to mint");

        uint256 newMintsPerAddress = _numberMinted(msg.sender) + _mintAmount;
        require(
            newMintsPerAddress <= WT_MINT_MAX_AMOUNT,
            "cannot mint the amount requested"
        );

        require(WT_MINT_PRICE * _mintAmount <= msg.value, "insufficient funds");

        uint256 supply = currentIndex;
        require(
            supply + _mintAmount <= WT_TOTAL_SUPPLY,
            "the collection is sold out"
        );

        _mint(msg.sender, _mintAmount, "", false);
    }

    // Minting reserved tokens to the treasury wallet
    function mintReserved(uint256 _mintAmount) external onlyOwner {
        require(_mintAmount > 0, "amount to mint should be a positive number");
        require(
            reservedMinted + _mintAmount <= WT_MAX_RESERVED_COUNT,
            "cannot mint the amount requested"
        );

        uint256 supply = currentIndex;
        require(
            supply + _mintAmount <= WT_TOTAL_SUPPLY,
            "the collection is sold out"
        );

        _mint(WALLET_TREASURY, _mintAmount, "", false);
    }

    // ------------------------------------------
    // ASSETS ACCESS MANAGEMENT

    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        require(
            _exists(tokenId),
            "ERC721Metadata: URI query for nonexistent token"
        );

        if (revealed == false) {
            return notRevealedUri;
        }
        uint256 assetIndex = tokenId + 1;

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

    // -----------------------------------------------------------
    // LAUNCH COTROLS
    function reveal(bool _state) external onlyOwner {
        revealed = _state;
    }

    function setPresaleStatus(bool _state) external onlyOwner {
        isPresaleLive = _state;
    }

    function setPublicSaleStatus(bool _state) external onlyOwner {
        isPublicSaleLive = _state;
    }

    // -----------------------------------------------------------
    // SETTERS

    function setMerkleRootHash(bytes32 _rootHash) public onlyOwner {
        merkleRootHash = _rootHash;
    }

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

    function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
        notRevealedUri = _notRevealedURI;
    }

    // -----------------------------------------------------------
    // ADMINISTRATION
    function withdraw() external onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "No assets to withdraw");

        uint256 withdrawal1 = balance.mul(60).div(100);
        uint256 withdrawal2 = balance.mul(5).div(100);
        uint256 withdrawal3 = balance.mul(10).div(100);
        uint256 withdrawal4 = balance.mul(5).div(100);
        uint256 withdrawal5 = balance.mul(3).div(100);

        _withdraw(WALLET1, withdrawal1);
        _withdraw(WALLET2, withdrawal2);
        _withdraw(WALLET3, withdrawal3);
        _withdraw(WALLET4, withdrawal4);
        _withdraw(WALLET5, withdrawal5);

        // Send the rest to the team vault
        _withdraw(WALLET_TREASURY, address(this).balance);
    }

    function contractBalance() external view onlyOwner returns (uint256) {
        return address(this).balance;
    }

    function _withdraw(address _address, uint256 _amount) private {
        payable(_address).transfer(_amount);
    }

    function reservedCount() external view onlyOwner returns (uint256) {
        return reservedMinted;
    }
}

File 1 of 14: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (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 2 of 14: Context.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

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

File 3 of 14: ERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 4 of 14: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.0;

import "./IERC721.sol";
import "./IERC721Receiver.sol";
import "./IERC721Metadata.sol";
import "./IERC721Enumerable.sol";
import "./Address.sol";
import "./Context.sol";
import "./Strings.sol";
import "./ERC165.sol";

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

    struct TokenOwnership {
        address addr;
        uint64 startTimestamp;
    }

    struct AddressData {
        uint128 balance;
        uint128 numberMinted;
    }

    uint256 internal currentIndex;

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}.
     * This read function is O(totalSupply). If calling from a separate contract, be sure to test gas first.
     * It may also degrade with extremely large collection sizes (e.g >> 10000), test for your use case.
     */
    function tokenOfOwnerByIndex(address owner, uint256 index)
        public
        view
        override
        returns (uint256)
    {
        require(index < balanceOf(owner), "ERC721A: owner index out of bounds");
        uint256 numMintedSoFar = totalSupply();
        uint256 tokenIdsIdx;
        address currOwnershipAddr;

        // Counter overflow is impossible as the loop breaks when uint256 i is equal to another uint256 numMintedSoFar.
        unchecked {
            for (uint256 i; i < numMintedSoFar; i++) {
                TokenOwnership memory ownership = _ownerships[i];
                if (ownership.addr != address(0)) {
                    currOwnershipAddr = ownership.addr;
                }
                if (currOwnershipAddr == owner) {
                    if (tokenIdsIdx == index) {
                        return i;
                    }
                    tokenIdsIdx++;
                }
            }
        }

        revert("ERC721A: unable to get token of owner by index");
    }

    /**
     * @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 ||
            interfaceId == type(IERC721Enumerable).interfaceId ||
            super.supportsInterface(interfaceId);
    }

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

    function _numberMinted(address owner) internal view returns (uint256) {
        require(
            owner != address(0),
            "ERC721A: number minted query for the zero address"
        );
        return uint256(_addressData[owner].numberMinted);
    }

    /**
     * Gas spent here starts off proportional to the maximum mint batch size.
     * It gradually moves to O(1) as tokens get transferred around in the collection over time.
     */
    function ownershipOf(uint256 tokenId)
        internal
        view
        returns (TokenOwnership memory)
    {
        require(_exists(tokenId), "ERC721A: owner query for nonexistent token");

        unchecked {
            for (uint256 curr = tokenId; curr >= 0; curr--) {
                TokenOwnership memory ownership = _ownerships[curr];
                if (ownership.addr != address(0)) {
                    return ownership;
                }
            }
        }

        revert("ERC721A: unable to determine the owner of token");
    }

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        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 override {
        address owner = ERC721A.ownerOf(tokenId);
        require(to != owner, "ERC721A: approval to current owner");

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

    /**
     * @dev See {IERC721-setApprovalForAll}.
     */
    function setApprovalForAll(address operator, bool approved)
        public
        override
    {
        require(operator != _msgSender(), "ERC721A: 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 override {
        _transfer(from, to, tokenId);
    }

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public override {
        _transfer(from, to, tokenId);
        require(
            _checkOnERC721Received(from, to, tokenId, _data),
            "ERC721A: 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`),
     */
    function _exists(uint256 tokenId) internal view returns (bool) {
        return tokenId < currentIndex;
    }

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

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

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

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

        // Overflows are incredibly unrealistic.
        // balance or numberMinted overflow if current value of either + quantity > 3.4e38 (2**128) - 1
        // updatedIndex overflows if currentIndex + quantity > 1.56e77 (2**256) - 1
        unchecked {
            _addressData[to].balance += uint128(quantity);
            _addressData[to].numberMinted += uint128(quantity);

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

            uint256 updatedIndex = startTokenId;

            for (uint256 i; i < quantity; i++) {
                emit Transfer(address(0), to, updatedIndex);
                if (safe) {
                    require(
                        _checkOnERC721Received(
                            address(0),
                            to,
                            updatedIndex,
                            _data
                        ),
                        "ERC721A: transfer to non ERC721Receiver implementer"
                    );
                }

                updatedIndex++;
            }

            currentIndex = updatedIndex;
        }

        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

    /**
     * @dev Transfers `tokenId` from `from` to `to`.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - `tokenId` token must be owned by `from`.
     *
     * Emits a {Transfer} event.
     */
    function _transfer(
        address from,
        address to,
        uint256 tokenId
    ) private {
        TokenOwnership memory prevOwnership = ownershipOf(tokenId);

        bool isApprovedOrOwner = (_msgSender() == prevOwnership.addr ||
            getApproved(tokenId) == _msgSender() ||
            isApprovedForAll(prevOwnership.addr, _msgSender()));

        require(
            isApprovedOrOwner,
            "ERC721A: transfer caller is not owner nor approved"
        );

        require(
            prevOwnership.addr == from,
            "ERC721A: transfer from incorrect owner"
        );
        require(to != address(0), "ERC721A: transfer to the zero address");

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

            // If the ownership slot of tokenId+1 is not explicitly set, that means the transfer initiator owns it.
            // Set the slot of tokenId+1 explicitly in storage to maintain correctness for ownerOf(tokenId+1) calls.
            uint256 nextTokenId = tokenId + 1;
            if (_ownerships[nextTokenId].addr == address(0)) {
                if (_exists(nextTokenId)) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

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

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

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

    /**
     * @dev Hook that is called before a set of serially-ordered token ids are about to be transferred. This includes minting.
     *
     * startTokenId - the first token id to be transferred
     * quantity - the amount to be transferred
     *
     * Calling conditions:
     *
     * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be
     * transferred to `to`.
     * - When `from` is zero, `tokenId` will be minted for `to`.
     */
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}

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

File 5 of 14: IERC165.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol)

pragma solidity ^0.8.0;

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

File 6 of 14: IERC721.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;

import "./IERC165.sol";

/**
 * @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 7 of 14: IERC721Enumerable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC721/extensions/IERC721Enumerable.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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);

    /**
     * @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 8 of 14: IERC721Metadata.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/extensions/IERC721Metadata.sol)

pragma solidity ^0.8.0;

import "./IERC721.sol";

/**
 * @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 9 of 14: IERC721Receiver.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

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

File 10 of 14: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

    /**
     * @dev Returns the rebuilt hash obtained by traversing a Merklee tree up
     * from `leaf` using `proof`. A `proof` is valid if and only if the rebuilt
     * hash matches the root of the tree. When processing the proof, the pairs
     * of leafs & pre-images are assumed to be sorted.
     *
     * _Available since v4.4._
     */
    function processProof(bytes32[] memory proof, bytes32 leaf) internal pure returns (bytes32) {
        bytes32 computedHash = leaf;
        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];
            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }
        return computedHash;
    }
}

File 11 of 14: Ownable.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;

import "./Context.sol";

/**
 * @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() {
        _transferOwnership(_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 {
        _transferOwnership(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"
        );
        _transferOwnership(newOwner);
    }

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

File 12 of 14: SafeMath.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol)

pragma solidity ^0.8.0;

// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.

/**
 * @dev Wrappers over Solidity's arithmetic operations.
 *
 * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
 * now has built in overflow checking.
 */
library SafeMath {
    /**
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            uint256 c = a + b;
            if (c < a) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the substraction of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b > a) return (false, 0);
            return (true, a - b);
        }
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     *
     * _Available since v3.4._
     */
    function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            // Gas optimization: this is cheaper than requiring 'a' not being zero, but the
            // benefit is lost if 'b' is also tested.
            // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
            if (a == 0) return (true, 0);
            uint256 c = a * b;
            if (c / a != b) return (false, 0);
            return (true, c);
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     *
     * _Available since v3.4._
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * @dev Returns the addition of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     *
     * Requirements:
     *
     * - Addition cannot overflow.
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting on
     * overflow (when the result is negative).
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * overflow.
     *
     * Counterpart to Solidity's `*` operator.
     *
     * Requirements:
     *
     * - Multiplication cannot overflow.
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator.
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting when dividing by zero.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * overflow (when the result is negative).
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * Counterpart to Solidity's `-` operator.
     *
     * Requirements:
     *
     * - Subtraction cannot overflow.
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     * division by zero. The result is rounded towards zero.
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * reverting with custom message when dividing by zero.
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     *
     * - The divisor cannot be zero.
     */
    function mod(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a % b;
        }
    }
}

File 13 of 14: Strings.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Strings.sol)

pragma solidity ^0.8.0;

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

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

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

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

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_initBaseURI","type":"string"},{"internalType":"string","name":"_initNotRevealedUri","type":"string"},{"internalType":"bytes32","name":"_initMerkleRootHash","type":"bytes32"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"WT_MAX_RESERVED_COUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WT_MINT_MAX_AMOUNT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WT_MINT_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WT_TOTAL_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"baseExtension","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"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":"isPresaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isPublicSaleLive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"mintPresale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintPublicSale","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mintReserved","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reservedCount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"_newBaseURI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_rootHash","type":"bytes32"}],"name":"setMerkleRootHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPresaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPublicSaleStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526000600a556000600b60006101000a81548160ff0219169083151502179055506000600b60016101000a81548160ff0219169083151502179055506000600b60026101000a81548160ff0219169083151502179055503480156200006757600080fd5b5060405162005b7c38038062005b7c83398181016040528101906200008d9190620005a9565b6040518060400160405280600b81526020017f576f6d656e2054726962650000000000000000000000000000000000000000008152506040518060400160405280600281526020017f575400000000000000000000000000000000000000000000000000000000000081525081600190805190602001906200011192919062000470565b5080600290805190602001906200012a92919062000470565b5050506200014d620001416200018960201b60201c565b6200019160201b60201c565b6200015e836200025760201b60201c565b6200016f826200030260201b60201c565b6200018081620003ad60201b60201c565b50505062000848565b600033905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002676200018960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff166200028d6200044660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1614620002e6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620002dd9062000658565b60405180910390fd5b8060089080519060200190620002fe92919062000470565b5050565b620003126200018960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003386200044660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff161462000391576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003889062000658565b60405180910390fd5b8060099080519060200190620003a992919062000470565b5050565b620003bd6200018960201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620003e36200044660201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200043c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004339062000658565b60405180910390fd5b80600c8190555050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b8280546200047e906200072a565b90600052602060002090601f016020900481019282620004a25760008555620004ee565b82601f10620004bd57805160ff1916838001178555620004ee565b82800160010185558215620004ee579182015b82811115620004ed578251825591602001919060010190620004d0565b5b509050620004fd919062000501565b5090565b5b808211156200051c57600081600090555060010162000502565b5090565b6000620005376200053184620006a3565b6200067a565b9050828152602081018484840111156200055057600080fd5b6200055d848285620006f4565b509392505050565b60008151905062000576816200082e565b92915050565b600082601f8301126200058e57600080fd5b8151620005a084826020860162000520565b91505092915050565b600080600060608486031215620005bf57600080fd5b600084015167ffffffffffffffff811115620005da57600080fd5b620005e8868287016200057c565b935050602084015167ffffffffffffffff8111156200060657600080fd5b62000614868287016200057c565b9250506040620006278682870162000565565b9150509250925092565b600062000640602083620006d9565b91506200064d8262000805565b602082019050919050565b60006020820190508181036000830152620006738162000631565b9050919050565b60006200068662000699565b905062000694828262000760565b919050565b6000604051905090565b600067ffffffffffffffff821115620006c157620006c0620007c5565b5b620006cc82620007f4565b9050602081019050919050565b600082825260208201905092915050565b6000819050919050565b60005b8381101562000714578082015181840152602081019050620006f7565b8381111562000724576000848401525b50505050565b600060028204905060018216806200074357607f821691505b602082108114156200075a576200075962000796565b5b50919050565b6200076b82620007f4565b810181811067ffffffffffffffff821117156200078d576200078c620007c5565b5b80604052505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6200083981620006ea565b81146200084557600080fd5b50565b61532480620008586000396000f3fe6080604052600436106102305760003560e01c8063862330711161012e578063b423fe67116100ab578063e985e9c51161006f578063e985e9c51461080d578063ed0925ec1461084a578063f187e0c914610875578063f2c4ce1e146108a0578063f2fde38b146108c957610230565b8063b423fe6714610728578063b88d4fde14610751578063c38f76171461077a578063c6682862146107a5578063c87b56dd146107d057610230565b806395d89b41116100f257806395d89b41146106575780639a5d140b146106825780639ba411b1146106ab5780639f3c5636146106d4578063a22cb465146106ff57610230565b806386233071146105845780638895283f146105af5780638b7afe2e146105d85780638da5cb5b14610603578063940cd05b1461062e57610230565b80633ccfd60b116101bc5780635a5e5d58116101805780635a5e5d58146104ac5780636352211e146104c857806370a0823114610505578063715018a6146105425780637770bcfa1461055957610230565b80633ccfd60b146103db57806342842e0e146103f25780634f6ccce71461041b578063518302271461045857806355f804b31461048357610230565b80630c0a6b5e116102035780630c0a6b5e1461030357806318160ddd1461031f57806323b872dd1461034a5780632c9ad1fb146103735780632f745c591461039e57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613b54565b6108f2565b604051610269919061423c565b60405180910390f35b34801561027e57600080fd5b50610287610a3c565b6040516102949190614257565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613be7565b610ace565b6040516102d191906141d5565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613ac6565b610b53565b005b61031d60048036038101906103189190613c10565b610c6c565b005b34801561032b57600080fd5b50610334610f5c565b6040516103419190614619565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c91906139c0565b610f65565b005b34801561037f57600080fd5b50610388610f75565b604051610395919061423c565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190613ac6565b610f88565b6040516103d29190614619565b60405180910390f35b3480156103e757600080fd5b506103f061117a565b005b3480156103fe57600080fd5b50610419600480360381019061041491906139c0565b6113d1565b005b34801561042757600080fd5b50610442600480360381019061043d9190613be7565b6113f1565b60405161044f9190614619565b60405180910390f35b34801561046457600080fd5b5061046d611444565b60405161047a919061423c565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613ba6565b611457565b005b6104c660048036038101906104c19190613be7565b6114ed565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613be7565b611722565b6040516104fc91906141d5565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061395b565b611738565b6040516105399190614619565b60405180910390f35b34801561054e57600080fd5b50610557611821565b005b34801561056557600080fd5b5061056e6118a9565b60405161057b9190614619565b60405180910390f35b34801561059057600080fd5b506105996118af565b6040516105a6919061423c565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613b02565b6118c2565b005b3480156105e457600080fd5b506105ed61195b565b6040516105fa9190614619565b60405180910390f35b34801561060f57600080fd5b506106186119df565b60405161062591906141d5565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190613b02565b611a09565b005b34801561066357600080fd5b5061066c611aa2565b6040516106799190614257565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190613be7565b611b34565b005b3480156106b757600080fd5b506106d260048036038101906106cd9190613b2b565b611ccf565b005b3480156106e057600080fd5b506106e9611d55565b6040516106f69190614619565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190613a8a565b611d60565b005b34801561073457600080fd5b5061074f600480360381019061074a9190613b02565b611ee1565b005b34801561075d57600080fd5b5061077860048036038101906107739190613a0f565b611f7a565b005b34801561078657600080fd5b5061078f611fd6565b60405161079c9190614619565b60405180910390f35b3480156107b157600080fd5b506107ba61205c565b6040516107c79190614257565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613be7565b612095565b6040516108049190614257565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613984565b6122b7565b604051610841919061423c565b60405180910390f35b34801561085657600080fd5b5061085f61234b565b60405161086c9190614619565b60405180910390f35b34801561088157600080fd5b5061088a612350565b6040516108979190614619565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613ba6565b612356565b005b3480156108d557600080fd5b506108f060048036038101906108eb919061395b565b6123ec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a355750610a34826124e4565b5b9050919050565b606060018054610a4b906148d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a77906148d3565b8015610ac45780601f10610a9957610100808354040283529160200191610ac4565b820191906000526020600020905b815481529060010190602001808311610aa757829003601f168201915b5050505050905090565b6000610ad98261254e565b610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f906145d9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5e82611722565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc6906144d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bee61255b565b73ffffffffffffffffffffffffffffffffffffffff161480610c1d5750610c1c81610c1761255b565b6122b7565b5b610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390614359565b60405180910390fd5b610c67838383612563565b505050565b600b60009054906101000a900460ff16610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb2906143b9565b60405180910390fd5b60008311610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590614499565b60405180910390fd5b6000610d0861255b565b90508073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f906144b9565b60405180910390fd5b600084610d8433612615565b610d8e91906146fe565b90506003811115610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90614379565b60405180910390fd5b3485668e1bc9bf040000610de89190614785565b1115610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906144f9565b60405180910390fd5b600033604051602001610e3c919061415d565b604051602081830303815290604052805190602001209050610ea2858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836126fe565b610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed8906142d9565b60405180910390fd5b6000805490506127108782610ef691906146fe565b1115610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e906143d9565b60405180910390fd5b610f533388604051806020016040528060008152506000612715565b50505050505050565b60008054905090565b610f70838383612a93565b505050565b600b60009054906101000a900460ff1681565b6000610f9383611738565b8210610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90614279565b60405180910390fd5b6000610fde610f5c565b905060008060005b83811015611138576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110d857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561112a5786841415611121578195505050505050611174565b83806001019450505b508080600101915050610fe6565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90614599565b60405180910390fd5b92915050565b61118261255b565b73ffffffffffffffffffffffffffffffffffffffff166111a06119df565b73ffffffffffffffffffffffffffffffffffffffff16146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90614419565b60405180910390fd5b60004790506000811161123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906145f9565b60405180910390fd5b60006112676064611259603c85612fd390919063ffffffff16565b612fe990919063ffffffff16565b905060006112926064611284600586612fd390919063ffffffff16565b612fe990919063ffffffff16565b905060006112bd60646112af600a87612fd390919063ffffffff16565b612fe990919063ffffffff16565b905060006112e860646112da600588612fd390919063ffffffff16565b612fe990919063ffffffff16565b905060006113136064611305600389612fd390919063ffffffff16565b612fe990919063ffffffff16565b9050611333738c70a6fd46d4e11a62d3f9e81e2d33a82fa89f8286612fff565b61135173cbc0acac84a25add42e908b6932f0678c82fbd4585612fff565b61136f737e503efcbfb64e8f451e88f8ab438e20a88062c384612fff565b61138d73695bca9ee4f78cc1049565f9fac504fc27f02fa283612fff565b6113ab73de3bc9e504ca4f0e81fabc1f37160e9ff4bf90d282612fff565b6113c9739a5fe78ee5b4f5a8bafff54854822435c68f306c47612fff565b505050505050565b6113ec83838360405180602001604052806000815250611f7a565b505050565b60006113fb610f5c565b821061143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906142f9565b60405180910390fd5b819050919050565b600b60029054906101000a900460ff1681565b61145f61255b565b73ffffffffffffffffffffffffffffffffffffffff1661147d6119df565b73ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614419565b60405180910390fd5b80600890805190602001906114e99291906136e6565b5050565b600b60019054906101000a900460ff1661153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390614559565b60405180910390fd5b6000811161157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690614499565b60405180910390fd5b600061158961255b565b90508073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f0906144b9565b60405180910390fd5b60008261160533612615565b61160f91906146fe565b90506003811115611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614379565b60405180910390fd5b3483668e1bc9bf0400006116699190614785565b11156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a1906144f9565b60405180910390fd5b60008054905061271084826116bf91906146fe565b1115611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906143d9565b60405180910390fd5b61171c3385604051806020016040528060008152506000612715565b50505050565b600061172d8261304a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090614399565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61182961255b565b73ffffffffffffffffffffffffffffffffffffffff166118476119df565b73ffffffffffffffffffffffffffffffffffffffff161461189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490614419565b60405180910390fd5b6118a760006131e4565b565b61011e81565b600b60019054906101000a900460ff1681565b6118ca61255b565b73ffffffffffffffffffffffffffffffffffffffff166118e86119df565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614419565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b600061196561255b565b73ffffffffffffffffffffffffffffffffffffffff166119836119df565b73ffffffffffffffffffffffffffffffffffffffff16146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090614419565b60405180910390fd5b47905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a1161255b565b73ffffffffffffffffffffffffffffffffffffffff16611a2f6119df565b73ffffffffffffffffffffffffffffffffffffffff1614611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90614419565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060028054611ab1906148d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611add906148d3565b8015611b2a5780601f10611aff57610100808354040283529160200191611b2a565b820191906000526020600020905b815481529060010190602001808311611b0d57829003601f168201915b5050505050905090565b611b3c61255b565b73ffffffffffffffffffffffffffffffffffffffff16611b5a6119df565b73ffffffffffffffffffffffffffffffffffffffff1614611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790614419565b60405180910390fd5b60008111611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90614499565b60405180910390fd5b61011e81600a54611c0491906146fe565b1115611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614379565b60405180910390fd5b6000805490506127108282611c5a91906146fe565b1115611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c92906143d9565b60405180910390fd5b611ccb739a5fe78ee5b4f5a8bafff54854822435c68f306c83604051806020016040528060008152506000612715565b5050565b611cd761255b565b73ffffffffffffffffffffffffffffffffffffffff16611cf56119df565b73ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290614419565b60405180910390fd5b80600c8190555050565b668e1bc9bf04000081565b611d6861255b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614459565b60405180910390fd5b8060066000611de361255b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e9061255b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ed5919061423c565b60405180910390a35050565b611ee961255b565b73ffffffffffffffffffffffffffffffffffffffff16611f076119df565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490614419565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b611f85848484612a93565b611f91848484846132aa565b611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790614519565b60405180910390fd5b50505050565b6000611fe061255b565b73ffffffffffffffffffffffffffffffffffffffff16611ffe6119df565b73ffffffffffffffffffffffffffffffffffffffff1614612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90614419565b60405180910390fd5b600a54905090565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606120a08261254e565b6120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d690614439565b60405180910390fd5b60001515600b60029054906101000a900460ff161515141561218d5760098054612108906148d3565b80601f0160208091040260200160405190810160405280929190818152602001828054612134906148d3565b80156121815780601f1061215657610100808354040283529160200191612181565b820191906000526020600020905b81548152906001019060200180831161216457829003601f168201915b505050505090506122b2565b600060018361219c91906146fe565b90506000600880546121ad906148d3565b80601f01602080910402602001604051908101604052809291908181526020018280546121d9906148d3565b80156122265780601f106121fb57610100808354040283529160200191612226565b820191906000526020600020905b81548152906001019060200180831161220957829003601f168201915b50505050509050600081511161224b57604051806020016040528060008152506122ad565b8061225583613441565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161229d939291906141a4565b6040516020818303038152906040525b925050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600381565b61271081565b61235e61255b565b73ffffffffffffffffffffffffffffffffffffffff1661237c6119df565b73ffffffffffffffffffffffffffffffffffffffff16146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990614419565b60405180910390fd5b80600990805190602001906123e89291906136e6565b5050565b6123f461255b565b73ffffffffffffffffffffffffffffffffffffffff166124126119df565b73ffffffffffffffffffffffffffffffffffffffff1614612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90614419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf90614299565b60405180910390fd5b6124e1816131e4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d90614339565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60008261270b85846135ee565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561278b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278290614539565b60405180910390fd5b60008414156127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c690614579565b60405180910390fd5b6127dc60008683876136c7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a7657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612a6157612a2160008884886132aa565b612a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5790614519565b60405180910390fd5b5b818060010192505080806001019150506129aa565b508060008190555050612a8c60008683876136cd565b5050505050565b6000612a9e8261304a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612ac561255b565b73ffffffffffffffffffffffffffffffffffffffff161480612b215750612aea61255b565b73ffffffffffffffffffffffffffffffffffffffff16612b0984610ace565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b3d5750612b3c8260000151612b3761255b565b6122b7565b5b905080612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690614479565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be8906143f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5890614319565b60405180910390fd5b612c6e85858560016136c7565b612c7e6000848460000151612563565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f6357612ec28161254e565b15612f625782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fcc85858560016136cd565b5050505050565b60008183612fe19190614785565b905092915050565b60008183612ff79190614754565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613045573d6000803e3d6000fd5b505050565b61305261376c565b61305b8261254e565b61309a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613091906142b9565b60405180910390fd5b60008290505b600081106131a3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131945780925050506131df565b508080600190039150506130a0565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d6906145b9565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006132cb8473ffffffffffffffffffffffffffffffffffffffff166136d3565b15613434578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132f461255b565b8786866040518563ffffffff1660e01b815260040161331694939291906141f0565b602060405180830381600087803b15801561333057600080fd5b505af192505050801561336157506040513d601f19601f8201168201806040525081019061335e9190613b7d565b60015b6133e4573d8060008114613391576040519150601f19603f3d011682016040523d82523d6000602084013e613396565b606091505b506000815114156133dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d390614519565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613439565b600190505b949350505050565b60606000821415613489576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135e9565b600082905060005b600082146134bb5780806134a490614936565b915050600a826134b49190614754565b9150613491565b60008167ffffffffffffffff8111156134fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561352f5781602001600182028036833780820191505090505b5090505b600085146135e25760018261354891906147df565b9150600a8561355791906149ad565b603061356391906146fe565b60f81b81838151811061359f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135db9190614754565b9450613533565b8093505050505b919050565b60008082905060005b84518110156136bc57600085828151811061363b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161367c57828160405160200161365f929190614178565b6040516020818303038152906040528051906020012092506136a8565b808360405160200161368f929190614178565b6040516020818303038152906040528051906020012092505b5080806136b490614936565b9150506135f7565b508091505092915050565b50505050565b50505050565b600080823b905060008111915050919050565b8280546136f2906148d3565b90600052602060002090601f016020900481019282613714576000855561375b565b82601f1061372d57805160ff191683800117855561375b565b8280016001018555821561375b579182015b8281111561375a57825182559160200191906001019061373f565b5b50905061376891906137a6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137bf5760008160009055506001016137a7565b5090565b60006137d66137d184614659565b614634565b9050828152602081018484840111156137ee57600080fd5b6137f9848285614891565b509392505050565b600061381461380f8461468a565b614634565b90508281526020810184848401111561382c57600080fd5b613837848285614891565b509392505050565b60008135905061384e8161527b565b92915050565b60008083601f84011261386657600080fd5b8235905067ffffffffffffffff81111561387f57600080fd5b60208301915083602082028301111561389757600080fd5b9250929050565b6000813590506138ad81615292565b92915050565b6000813590506138c2816152a9565b92915050565b6000813590506138d7816152c0565b92915050565b6000815190506138ec816152c0565b92915050565b600082601f83011261390357600080fd5b81356139138482602086016137c3565b91505092915050565b600082601f83011261392d57600080fd5b813561393d848260208601613801565b91505092915050565b600081359050613955816152d7565b92915050565b60006020828403121561396d57600080fd5b600061397b8482850161383f565b91505092915050565b6000806040838503121561399757600080fd5b60006139a58582860161383f565b92505060206139b68582860161383f565b9150509250929050565b6000806000606084860312156139d557600080fd5b60006139e38682870161383f565b93505060206139f48682870161383f565b9250506040613a0586828701613946565b9150509250925092565b60008060008060808587031215613a2557600080fd5b6000613a338782880161383f565b9450506020613a448782880161383f565b9350506040613a5587828801613946565b925050606085013567ffffffffffffffff811115613a7257600080fd5b613a7e878288016138f2565b91505092959194509250565b60008060408385031215613a9d57600080fd5b6000613aab8582860161383f565b9250506020613abc8582860161389e565b9150509250929050565b60008060408385031215613ad957600080fd5b6000613ae78582860161383f565b9250506020613af885828601613946565b9150509250929050565b600060208284031215613b1457600080fd5b6000613b228482850161389e565b91505092915050565b600060208284031215613b3d57600080fd5b6000613b4b848285016138b3565b91505092915050565b600060208284031215613b6657600080fd5b6000613b74848285016138c8565b91505092915050565b600060208284031215613b8f57600080fd5b6000613b9d848285016138dd565b91505092915050565b600060208284031215613bb857600080fd5b600082013567ffffffffffffffff811115613bd257600080fd5b613bde8482850161391c565b91505092915050565b600060208284031215613bf957600080fd5b6000613c0784828501613946565b91505092915050565b600080600060408486031215613c2557600080fd5b6000613c3386828701613946565b935050602084013567ffffffffffffffff811115613c5057600080fd5b613c5c86828701613854565b92509250509250925092565b613c7181614813565b82525050565b613c88613c8382614813565b61497f565b82525050565b613c9781614825565b82525050565b613cae613ca982614831565b614991565b82525050565b6000613cbf826146bb565b613cc981856146d1565b9350613cd98185602086016148a0565b613ce281614a9a565b840191505092915050565b6000613cf8826146c6565b613d0281856146e2565b9350613d128185602086016148a0565b613d1b81614a9a565b840191505092915050565b6000613d31826146c6565b613d3b81856146f3565b9350613d4b8185602086016148a0565b80840191505092915050565b6000613d646022836146e2565b9150613d6f82614ab8565b604082019050919050565b6000613d876026836146e2565b9150613d9282614b07565b604082019050919050565b6000613daa602a836146e2565b9150613db582614b56565b604082019050919050565b6000613dcd6026836146e2565b9150613dd882614ba5565b604082019050919050565b6000613df06023836146e2565b9150613dfb82614bf4565b604082019050919050565b6000613e136025836146e2565b9150613e1e82614c43565b604082019050919050565b6000613e366031836146e2565b9150613e4182614c92565b604082019050919050565b6000613e596039836146e2565b9150613e6482614ce1565b604082019050919050565b6000613e7c6020836146e2565b9150613e8782614d30565b602082019050919050565b6000613e9f602b836146e2565b9150613eaa82614d59565b604082019050919050565b6000613ec2601b836146e2565b9150613ecd82614da8565b602082019050919050565b6000613ee5601a836146e2565b9150613ef082614dd1565b602082019050919050565b6000613f086026836146e2565b9150613f1382614dfa565b604082019050919050565b6000613f2b6020836146e2565b9150613f3682614e49565b602082019050919050565b6000613f4e602f836146e2565b9150613f5982614e72565b604082019050919050565b6000613f71601a836146e2565b9150613f7c82614ec1565b602082019050919050565b6000613f946032836146e2565b9150613f9f82614eea565b604082019050919050565b6000613fb7602a836146e2565b9150613fc282614f39565b604082019050919050565b6000613fda6021836146e2565b9150613fe582614f88565b604082019050919050565b6000613ffd6022836146e2565b915061400882614fd7565b604082019050919050565b60006140206012836146e2565b915061402b82615026565b602082019050919050565b60006140436033836146e2565b915061404e8261504f565b604082019050919050565b60006140666021836146e2565b91506140718261509e565b604082019050919050565b6000614089601f836146e2565b9150614094826150ed565b602082019050919050565b60006140ac6028836146e2565b91506140b782615116565b604082019050919050565b60006140cf602e836146e2565b91506140da82615165565b604082019050919050565b60006140f2602f836146e2565b91506140fd826151b4565b604082019050919050565b6000614115602d836146e2565b915061412082615203565b604082019050919050565b60006141386015836146e2565b915061414382615252565b602082019050919050565b61415781614887565b82525050565b60006141698284613c77565b60148201915081905092915050565b60006141848285613c9d565b6020820191506141948284613c9d565b6020820191508190509392505050565b60006141b08286613d26565b91506141bc8285613d26565b91506141c88284613d26565b9150819050949350505050565b60006020820190506141ea6000830184613c68565b92915050565b60006080820190506142056000830187613c68565b6142126020830186613c68565b61421f604083018561414e565b81810360608301526142318184613cb4565b905095945050505050565b60006020820190506142516000830184613c8e565b92915050565b600060208201905081810360008301526142718184613ced565b905092915050565b6000602082019050818103600083015261429281613d57565b9050919050565b600060208201905081810360008301526142b281613d7a565b9050919050565b600060208201905081810360008301526142d281613d9d565b9050919050565b600060208201905081810360008301526142f281613dc0565b9050919050565b6000602082019050818103600083015261431281613de3565b9050919050565b6000602082019050818103600083015261433281613e06565b9050919050565b6000602082019050818103600083015261435281613e29565b9050919050565b6000602082019050818103600083015261437281613e4c565b9050919050565b6000602082019050818103600083015261439281613e6f565b9050919050565b600060208201905081810360008301526143b281613e92565b9050919050565b600060208201905081810360008301526143d281613eb5565b9050919050565b600060208201905081810360008301526143f281613ed8565b9050919050565b6000602082019050818103600083015261441281613efb565b9050919050565b6000602082019050818103600083015261443281613f1e565b9050919050565b6000602082019050818103600083015261445281613f41565b9050919050565b6000602082019050818103600083015261447281613f64565b9050919050565b6000602082019050818103600083015261449281613f87565b9050919050565b600060208201905081810360008301526144b281613faa565b9050919050565b600060208201905081810360008301526144d281613fcd565b9050919050565b600060208201905081810360008301526144f281613ff0565b9050919050565b6000602082019050818103600083015261451281614013565b9050919050565b6000602082019050818103600083015261453281614036565b9050919050565b6000602082019050818103600083015261455281614059565b9050919050565b600060208201905081810360008301526145728161407c565b9050919050565b600060208201905081810360008301526145928161409f565b9050919050565b600060208201905081810360008301526145b2816140c2565b9050919050565b600060208201905081810360008301526145d2816140e5565b9050919050565b600060208201905081810360008301526145f281614108565b9050919050565b600060208201905081810360008301526146128161412b565b9050919050565b600060208201905061462e600083018461414e565b92915050565b600061463e61464f565b905061464a8282614905565b919050565b6000604051905090565b600067ffffffffffffffff82111561467457614673614a6b565b5b61467d82614a9a565b9050602081019050919050565b600067ffffffffffffffff8211156146a5576146a4614a6b565b5b6146ae82614a9a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061470982614887565b915061471483614887565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614749576147486149de565b5b828201905092915050565b600061475f82614887565b915061476a83614887565b92508261477a57614779614a0d565b5b828204905092915050565b600061479082614887565b915061479b83614887565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147d4576147d36149de565b5b828202905092915050565b60006147ea82614887565b91506147f583614887565b925082821015614808576148076149de565b5b828203905092915050565b600061481e82614867565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148be5780820151818401526020810190506148a3565b838111156148cd576000848401525b50505050565b600060028204905060018216806148eb57607f821691505b602082108114156148ff576148fe614a3c565b5b50919050565b61490e82614a9a565b810181811067ffffffffffffffff8211171561492d5761492c614a6b565b5b80604052505050565b600061494182614887565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614974576149736149de565b5b600182019050919050565b600061498a8261499b565b9050919050565b6000819050919050565b60006149a682614aab565b9050919050565b60006149b882614887565b91506149c383614887565b9250826149d3576149d2614a0d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f796f75722077616c6c6574206973206e6f7420696e207468652070726573616c60008201527f65206c6973740000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f63616e6e6f74206d696e742074686520616d6f756e7420726571756573746564600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f7468652070726573616c65206973206e6f74206f70656e207965740000000000600082015250565b7f74686520636f6c6c656374696f6e20697320736f6c64206f7574000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f616d6f756e7420746f206d696e742073686f756c64206265206120706f73697460008201527f697665206e756d62657200000000000000000000000000000000000000000000602082015250565b7f636f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f746865207075626c69632073616c65206973206e6f74206f70656e2079657400600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f2061737365747320746f2077697468647261770000000000000000000000600082015250565b61528481614813565b811461528f57600080fd5b50565b61529b81614825565b81146152a657600080fd5b50565b6152b281614831565b81146152bd57600080fd5b50565b6152c98161483b565b81146152d457600080fd5b50565b6152e081614887565b81146152eb57600080fd5b5056fea2646970667358221220876f9f14bcb8f9e5dbaed8746922f9245379e5afa01847e46cd837feb080203064736f6c63430008040033000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0ca182cd1d7517760bdcc0532aa1a976bb7725e9203638d5b6b1310413f61eddd0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5965326478354478766737793277715a7138517a416b693354514c51354b6b477141445751636b38563877752f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6145476a6a5a65705367315043446971507459764a6e707a4e5a4461353476415a356b394e72355053546e632f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102305760003560e01c8063862330711161012e578063b423fe67116100ab578063e985e9c51161006f578063e985e9c51461080d578063ed0925ec1461084a578063f187e0c914610875578063f2c4ce1e146108a0578063f2fde38b146108c957610230565b8063b423fe6714610728578063b88d4fde14610751578063c38f76171461077a578063c6682862146107a5578063c87b56dd146107d057610230565b806395d89b41116100f257806395d89b41146106575780639a5d140b146106825780639ba411b1146106ab5780639f3c5636146106d4578063a22cb465146106ff57610230565b806386233071146105845780638895283f146105af5780638b7afe2e146105d85780638da5cb5b14610603578063940cd05b1461062e57610230565b80633ccfd60b116101bc5780635a5e5d58116101805780635a5e5d58146104ac5780636352211e146104c857806370a0823114610505578063715018a6146105425780637770bcfa1461055957610230565b80633ccfd60b146103db57806342842e0e146103f25780634f6ccce71461041b578063518302271461045857806355f804b31461048357610230565b80630c0a6b5e116102035780630c0a6b5e1461030357806318160ddd1461031f57806323b872dd1461034a5780632c9ad1fb146103735780632f745c591461039e57610230565b806301ffc9a71461023557806306fdde0314610272578063081812fc1461029d578063095ea7b3146102da575b600080fd5b34801561024157600080fd5b5061025c60048036038101906102579190613b54565b6108f2565b604051610269919061423c565b60405180910390f35b34801561027e57600080fd5b50610287610a3c565b6040516102949190614257565b60405180910390f35b3480156102a957600080fd5b506102c460048036038101906102bf9190613be7565b610ace565b6040516102d191906141d5565b60405180910390f35b3480156102e657600080fd5b5061030160048036038101906102fc9190613ac6565b610b53565b005b61031d60048036038101906103189190613c10565b610c6c565b005b34801561032b57600080fd5b50610334610f5c565b6040516103419190614619565b60405180910390f35b34801561035657600080fd5b50610371600480360381019061036c91906139c0565b610f65565b005b34801561037f57600080fd5b50610388610f75565b604051610395919061423c565b60405180910390f35b3480156103aa57600080fd5b506103c560048036038101906103c09190613ac6565b610f88565b6040516103d29190614619565b60405180910390f35b3480156103e757600080fd5b506103f061117a565b005b3480156103fe57600080fd5b50610419600480360381019061041491906139c0565b6113d1565b005b34801561042757600080fd5b50610442600480360381019061043d9190613be7565b6113f1565b60405161044f9190614619565b60405180910390f35b34801561046457600080fd5b5061046d611444565b60405161047a919061423c565b60405180910390f35b34801561048f57600080fd5b506104aa60048036038101906104a59190613ba6565b611457565b005b6104c660048036038101906104c19190613be7565b6114ed565b005b3480156104d457600080fd5b506104ef60048036038101906104ea9190613be7565b611722565b6040516104fc91906141d5565b60405180910390f35b34801561051157600080fd5b5061052c6004803603810190610527919061395b565b611738565b6040516105399190614619565b60405180910390f35b34801561054e57600080fd5b50610557611821565b005b34801561056557600080fd5b5061056e6118a9565b60405161057b9190614619565b60405180910390f35b34801561059057600080fd5b506105996118af565b6040516105a6919061423c565b60405180910390f35b3480156105bb57600080fd5b506105d660048036038101906105d19190613b02565b6118c2565b005b3480156105e457600080fd5b506105ed61195b565b6040516105fa9190614619565b60405180910390f35b34801561060f57600080fd5b506106186119df565b60405161062591906141d5565b60405180910390f35b34801561063a57600080fd5b5061065560048036038101906106509190613b02565b611a09565b005b34801561066357600080fd5b5061066c611aa2565b6040516106799190614257565b60405180910390f35b34801561068e57600080fd5b506106a960048036038101906106a49190613be7565b611b34565b005b3480156106b757600080fd5b506106d260048036038101906106cd9190613b2b565b611ccf565b005b3480156106e057600080fd5b506106e9611d55565b6040516106f69190614619565b60405180910390f35b34801561070b57600080fd5b5061072660048036038101906107219190613a8a565b611d60565b005b34801561073457600080fd5b5061074f600480360381019061074a9190613b02565b611ee1565b005b34801561075d57600080fd5b5061077860048036038101906107739190613a0f565b611f7a565b005b34801561078657600080fd5b5061078f611fd6565b60405161079c9190614619565b60405180910390f35b3480156107b157600080fd5b506107ba61205c565b6040516107c79190614257565b60405180910390f35b3480156107dc57600080fd5b506107f760048036038101906107f29190613be7565b612095565b6040516108049190614257565b60405180910390f35b34801561081957600080fd5b50610834600480360381019061082f9190613984565b6122b7565b604051610841919061423c565b60405180910390f35b34801561085657600080fd5b5061085f61234b565b60405161086c9190614619565b60405180910390f35b34801561088157600080fd5b5061088a612350565b6040516108979190614619565b60405180910390f35b3480156108ac57600080fd5b506108c760048036038101906108c29190613ba6565b612356565b005b3480156108d557600080fd5b506108f060048036038101906108eb919061395b565b6123ec565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109bd57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a2557507f780e9d63000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610a355750610a34826124e4565b5b9050919050565b606060018054610a4b906148d3565b80601f0160208091040260200160405190810160405280929190818152602001828054610a77906148d3565b8015610ac45780601f10610a9957610100808354040283529160200191610ac4565b820191906000526020600020905b815481529060010190602001808311610aa757829003601f168201915b5050505050905090565b6000610ad98261254e565b610b18576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0f906145d9565b60405180910390fd5b6005600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610b5e82611722565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610bcf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bc6906144d9565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610bee61255b565b73ffffffffffffffffffffffffffffffffffffffff161480610c1d5750610c1c81610c1761255b565b6122b7565b5b610c5c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5390614359565b60405180910390fd5b610c67838383612563565b505050565b600b60009054906101000a900460ff16610cbb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb2906143b9565b60405180910390fd5b60008311610cfe576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cf590614499565b60405180910390fd5b6000610d0861255b565b90508073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614610d78576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6f906144b9565b60405180910390fd5b600084610d8433612615565b610d8e91906146fe565b90506003811115610dd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcb90614379565b60405180910390fd5b3485668e1bc9bf040000610de89190614785565b1115610e29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e20906144f9565b60405180910390fd5b600033604051602001610e3c919061415d565b604051602081830303815290604052805190602001209050610ea2858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600c54836126fe565b610ee1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ed8906142d9565b60405180910390fd5b6000805490506127108782610ef691906146fe565b1115610f37576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f2e906143d9565b60405180910390fd5b610f533388604051806020016040528060008152506000612715565b50505050505050565b60008054905090565b610f70838383612a93565b505050565b600b60009054906101000a900460ff1681565b6000610f9383611738565b8210610fd4576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fcb90614279565b60405180910390fd5b6000610fde610f5c565b905060008060005b83811015611138576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146110d857806000015192505b8773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141561112a5786841415611121578195505050505050611174565b83806001019450505b508080600101915050610fe6565b506040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161116b90614599565b60405180910390fd5b92915050565b61118261255b565b73ffffffffffffffffffffffffffffffffffffffff166111a06119df565b73ffffffffffffffffffffffffffffffffffffffff16146111f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ed90614419565b60405180910390fd5b60004790506000811161123e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611235906145f9565b60405180910390fd5b60006112676064611259603c85612fd390919063ffffffff16565b612fe990919063ffffffff16565b905060006112926064611284600586612fd390919063ffffffff16565b612fe990919063ffffffff16565b905060006112bd60646112af600a87612fd390919063ffffffff16565b612fe990919063ffffffff16565b905060006112e860646112da600588612fd390919063ffffffff16565b612fe990919063ffffffff16565b905060006113136064611305600389612fd390919063ffffffff16565b612fe990919063ffffffff16565b9050611333738c70a6fd46d4e11a62d3f9e81e2d33a82fa89f8286612fff565b61135173cbc0acac84a25add42e908b6932f0678c82fbd4585612fff565b61136f737e503efcbfb64e8f451e88f8ab438e20a88062c384612fff565b61138d73695bca9ee4f78cc1049565f9fac504fc27f02fa283612fff565b6113ab73de3bc9e504ca4f0e81fabc1f37160e9ff4bf90d282612fff565b6113c9739a5fe78ee5b4f5a8bafff54854822435c68f306c47612fff565b505050505050565b6113ec83838360405180602001604052806000815250611f7a565b505050565b60006113fb610f5c565b821061143c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611433906142f9565b60405180910390fd5b819050919050565b600b60029054906101000a900460ff1681565b61145f61255b565b73ffffffffffffffffffffffffffffffffffffffff1661147d6119df565b73ffffffffffffffffffffffffffffffffffffffff16146114d3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ca90614419565b60405180910390fd5b80600890805190602001906114e99291906136e6565b5050565b600b60019054906101000a900460ff1661153c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161153390614559565b60405180910390fd5b6000811161157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690614499565b60405180910390fd5b600061158961255b565b90508073ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff16146115f9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115f0906144b9565b60405180910390fd5b60008261160533612615565b61160f91906146fe565b90506003811115611655576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161164c90614379565b60405180910390fd5b3483668e1bc9bf0400006116699190614785565b11156116aa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116a1906144f9565b60405180910390fd5b60008054905061271084826116bf91906146fe565b1115611700576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116f7906143d9565b60405180910390fd5b61171c3385604051806020016040528060008152506000612715565b50505050565b600061172d8261304a565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156117a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a090614399565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b61182961255b565b73ffffffffffffffffffffffffffffffffffffffff166118476119df565b73ffffffffffffffffffffffffffffffffffffffff161461189d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189490614419565b60405180910390fd5b6118a760006131e4565b565b61011e81565b600b60019054906101000a900460ff1681565b6118ca61255b565b73ffffffffffffffffffffffffffffffffffffffff166118e86119df565b73ffffffffffffffffffffffffffffffffffffffff161461193e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161193590614419565b60405180910390fd5b80600b60006101000a81548160ff02191690831515021790555050565b600061196561255b565b73ffffffffffffffffffffffffffffffffffffffff166119836119df565b73ffffffffffffffffffffffffffffffffffffffff16146119d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119d090614419565b60405180910390fd5b47905090565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b611a1161255b565b73ffffffffffffffffffffffffffffffffffffffff16611a2f6119df565b73ffffffffffffffffffffffffffffffffffffffff1614611a85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7c90614419565b60405180910390fd5b80600b60026101000a81548160ff02191690831515021790555050565b606060028054611ab1906148d3565b80601f0160208091040260200160405190810160405280929190818152602001828054611add906148d3565b8015611b2a5780601f10611aff57610100808354040283529160200191611b2a565b820191906000526020600020905b815481529060010190602001808311611b0d57829003601f168201915b5050505050905090565b611b3c61255b565b73ffffffffffffffffffffffffffffffffffffffff16611b5a6119df565b73ffffffffffffffffffffffffffffffffffffffff1614611bb0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ba790614419565b60405180910390fd5b60008111611bf3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bea90614499565b60405180910390fd5b61011e81600a54611c0491906146fe565b1115611c45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c3c90614379565b60405180910390fd5b6000805490506127108282611c5a91906146fe565b1115611c9b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c92906143d9565b60405180910390fd5b611ccb739a5fe78ee5b4f5a8bafff54854822435c68f306c83604051806020016040528060008152506000612715565b5050565b611cd761255b565b73ffffffffffffffffffffffffffffffffffffffff16611cf56119df565b73ffffffffffffffffffffffffffffffffffffffff1614611d4b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d4290614419565b60405180910390fd5b80600c8190555050565b668e1bc9bf04000081565b611d6861255b565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dcd90614459565b60405180910390fd5b8060066000611de361255b565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611e9061255b565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ed5919061423c565b60405180910390a35050565b611ee961255b565b73ffffffffffffffffffffffffffffffffffffffff16611f076119df565b73ffffffffffffffffffffffffffffffffffffffff1614611f5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f5490614419565b60405180910390fd5b80600b60016101000a81548160ff02191690831515021790555050565b611f85848484612a93565b611f91848484846132aa565b611fd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fc790614519565b60405180910390fd5b50505050565b6000611fe061255b565b73ffffffffffffffffffffffffffffffffffffffff16611ffe6119df565b73ffffffffffffffffffffffffffffffffffffffff1614612054576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161204b90614419565b60405180910390fd5b600a54905090565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525081565b60606120a08261254e565b6120df576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120d690614439565b60405180910390fd5b60001515600b60029054906101000a900460ff161515141561218d5760098054612108906148d3565b80601f0160208091040260200160405190810160405280929190818152602001828054612134906148d3565b80156121815780601f1061215657610100808354040283529160200191612181565b820191906000526020600020905b81548152906001019060200180831161216457829003601f168201915b505050505090506122b2565b600060018361219c91906146fe565b90506000600880546121ad906148d3565b80601f01602080910402602001604051908101604052809291908181526020018280546121d9906148d3565b80156122265780601f106121fb57610100808354040283529160200191612226565b820191906000526020600020905b81548152906001019060200180831161220957829003601f168201915b50505050509050600081511161224b57604051806020016040528060008152506122ad565b8061225583613441565b6040518060400160405280600581526020017f2e6a736f6e00000000000000000000000000000000000000000000000000000081525060405160200161229d939291906141a4565b6040516020818303038152906040525b925050505b919050565b6000600660008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600381565b61271081565b61235e61255b565b73ffffffffffffffffffffffffffffffffffffffff1661237c6119df565b73ffffffffffffffffffffffffffffffffffffffff16146123d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123c990614419565b60405180910390fd5b80600990805190602001906123e89291906136e6565b5050565b6123f461255b565b73ffffffffffffffffffffffffffffffffffffffff166124126119df565b73ffffffffffffffffffffffffffffffffffffffff1614612468576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245f90614419565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156124d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124cf90614299565b60405180910390fd5b6124e1816131e4565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000805482109050919050565b600033905090565b826005600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612686576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267d90614339565b60405180910390fd5b600460008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160109054906101000a90046fffffffffffffffffffffffffffffffff166fffffffffffffffffffffffffffffffff169050919050565b60008261270b85846135ee565b1490509392505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff16141561278b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161278290614539565b60405180910390fd5b60008414156127cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127c690614579565b60405180910390fd5b6127dc60008683876136c7565b83600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff16021790555083600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160108282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550846003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060005b85811015612a7657818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48315612a6157612a2160008884886132aa565b612a60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a5790614519565b60405180910390fd5b5b818060010192505080806001019150506129aa565b508060008190555050612a8c60008683876136cd565b5050505050565b6000612a9e8261304a565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612ac561255b565b73ffffffffffffffffffffffffffffffffffffffff161480612b215750612aea61255b565b73ffffffffffffffffffffffffffffffffffffffff16612b0984610ace565b73ffffffffffffffffffffffffffffffffffffffff16145b80612b3d5750612b3c8260000151612b3761255b565b6122b7565b5b905080612b7f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b7690614479565b60405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff1614612bf1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612be8906143f9565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612c61576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c5890614319565b60405180910390fd5b612c6e85858560016136c7565b612c7e6000848460000151612563565b6001600460008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160392506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff1602179055506001600460008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a90046fffffffffffffffffffffffffffffffff160192506101000a8154816fffffffffffffffffffffffffffffffff02191690836fffffffffffffffffffffffffffffffff160217905550836003600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426003600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166003600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612f6357612ec28161254e565b15612f625782600001516003600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516003600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fcc85858560016136cd565b5050505050565b60008183612fe19190614785565b905092915050565b60008183612ff79190614754565b905092915050565b8173ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f19350505050158015613045573d6000803e3d6000fd5b505050565b61305261376c565b61305b8261254e565b61309a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613091906142b9565b60405180910390fd5b60008290505b600081106131a3576000600360008381526020019081526020016000206040518060400160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146131945780925050506131df565b508080600190039150506130a0565b506040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131d6906145b9565b60405180910390fd5b919050565b6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60006132cb8473ffffffffffffffffffffffffffffffffffffffff166136d3565b15613434578373ffffffffffffffffffffffffffffffffffffffff1663150b7a026132f461255b565b8786866040518563ffffffff1660e01b815260040161331694939291906141f0565b602060405180830381600087803b15801561333057600080fd5b505af192505050801561336157506040513d601f19601f8201168201806040525081019061335e9190613b7d565b60015b6133e4573d8060008114613391576040519150601f19603f3d011682016040523d82523d6000602084013e613396565b606091505b506000815114156133dc576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016133d390614519565b60405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050613439565b600190505b949350505050565b60606000821415613489576040518060400160405280600181526020017f300000000000000000000000000000000000000000000000000000000000000081525090506135e9565b600082905060005b600082146134bb5780806134a490614936565b915050600a826134b49190614754565b9150613491565b60008167ffffffffffffffff8111156134fd577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f19166020018201604052801561352f5781602001600182028036833780820191505090505b5090505b600085146135e25760018261354891906147df565b9150600a8561355791906149ad565b603061356391906146fe565b60f81b81838151811061359f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a856135db9190614754565b9450613533565b8093505050505b919050565b60008082905060005b84518110156136bc57600085828151811061363b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151905080831161367c57828160405160200161365f929190614178565b6040516020818303038152906040528051906020012092506136a8565b808360405160200161368f929190614178565b6040516020818303038152906040528051906020012092505b5080806136b490614936565b9150506135f7565b508091505092915050565b50505050565b50505050565b600080823b905060008111915050919050565b8280546136f2906148d3565b90600052602060002090601f016020900481019282613714576000855561375b565b82601f1061372d57805160ff191683800117855561375b565b8280016001018555821561375b579182015b8281111561375a57825182559160200191906001019061373f565b5b50905061376891906137a6565b5090565b6040518060400160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681525090565b5b808211156137bf5760008160009055506001016137a7565b5090565b60006137d66137d184614659565b614634565b9050828152602081018484840111156137ee57600080fd5b6137f9848285614891565b509392505050565b600061381461380f8461468a565b614634565b90508281526020810184848401111561382c57600080fd5b613837848285614891565b509392505050565b60008135905061384e8161527b565b92915050565b60008083601f84011261386657600080fd5b8235905067ffffffffffffffff81111561387f57600080fd5b60208301915083602082028301111561389757600080fd5b9250929050565b6000813590506138ad81615292565b92915050565b6000813590506138c2816152a9565b92915050565b6000813590506138d7816152c0565b92915050565b6000815190506138ec816152c0565b92915050565b600082601f83011261390357600080fd5b81356139138482602086016137c3565b91505092915050565b600082601f83011261392d57600080fd5b813561393d848260208601613801565b91505092915050565b600081359050613955816152d7565b92915050565b60006020828403121561396d57600080fd5b600061397b8482850161383f565b91505092915050565b6000806040838503121561399757600080fd5b60006139a58582860161383f565b92505060206139b68582860161383f565b9150509250929050565b6000806000606084860312156139d557600080fd5b60006139e38682870161383f565b93505060206139f48682870161383f565b9250506040613a0586828701613946565b9150509250925092565b60008060008060808587031215613a2557600080fd5b6000613a338782880161383f565b9450506020613a448782880161383f565b9350506040613a5587828801613946565b925050606085013567ffffffffffffffff811115613a7257600080fd5b613a7e878288016138f2565b91505092959194509250565b60008060408385031215613a9d57600080fd5b6000613aab8582860161383f565b9250506020613abc8582860161389e565b9150509250929050565b60008060408385031215613ad957600080fd5b6000613ae78582860161383f565b9250506020613af885828601613946565b9150509250929050565b600060208284031215613b1457600080fd5b6000613b228482850161389e565b91505092915050565b600060208284031215613b3d57600080fd5b6000613b4b848285016138b3565b91505092915050565b600060208284031215613b6657600080fd5b6000613b74848285016138c8565b91505092915050565b600060208284031215613b8f57600080fd5b6000613b9d848285016138dd565b91505092915050565b600060208284031215613bb857600080fd5b600082013567ffffffffffffffff811115613bd257600080fd5b613bde8482850161391c565b91505092915050565b600060208284031215613bf957600080fd5b6000613c0784828501613946565b91505092915050565b600080600060408486031215613c2557600080fd5b6000613c3386828701613946565b935050602084013567ffffffffffffffff811115613c5057600080fd5b613c5c86828701613854565b92509250509250925092565b613c7181614813565b82525050565b613c88613c8382614813565b61497f565b82525050565b613c9781614825565b82525050565b613cae613ca982614831565b614991565b82525050565b6000613cbf826146bb565b613cc981856146d1565b9350613cd98185602086016148a0565b613ce281614a9a565b840191505092915050565b6000613cf8826146c6565b613d0281856146e2565b9350613d128185602086016148a0565b613d1b81614a9a565b840191505092915050565b6000613d31826146c6565b613d3b81856146f3565b9350613d4b8185602086016148a0565b80840191505092915050565b6000613d646022836146e2565b9150613d6f82614ab8565b604082019050919050565b6000613d876026836146e2565b9150613d9282614b07565b604082019050919050565b6000613daa602a836146e2565b9150613db582614b56565b604082019050919050565b6000613dcd6026836146e2565b9150613dd882614ba5565b604082019050919050565b6000613df06023836146e2565b9150613dfb82614bf4565b604082019050919050565b6000613e136025836146e2565b9150613e1e82614c43565b604082019050919050565b6000613e366031836146e2565b9150613e4182614c92565b604082019050919050565b6000613e596039836146e2565b9150613e6482614ce1565b604082019050919050565b6000613e7c6020836146e2565b9150613e8782614d30565b602082019050919050565b6000613e9f602b836146e2565b9150613eaa82614d59565b604082019050919050565b6000613ec2601b836146e2565b9150613ecd82614da8565b602082019050919050565b6000613ee5601a836146e2565b9150613ef082614dd1565b602082019050919050565b6000613f086026836146e2565b9150613f1382614dfa565b604082019050919050565b6000613f2b6020836146e2565b9150613f3682614e49565b602082019050919050565b6000613f4e602f836146e2565b9150613f5982614e72565b604082019050919050565b6000613f71601a836146e2565b9150613f7c82614ec1565b602082019050919050565b6000613f946032836146e2565b9150613f9f82614eea565b604082019050919050565b6000613fb7602a836146e2565b9150613fc282614f39565b604082019050919050565b6000613fda6021836146e2565b9150613fe582614f88565b604082019050919050565b6000613ffd6022836146e2565b915061400882614fd7565b604082019050919050565b60006140206012836146e2565b915061402b82615026565b602082019050919050565b60006140436033836146e2565b915061404e8261504f565b604082019050919050565b60006140666021836146e2565b91506140718261509e565b604082019050919050565b6000614089601f836146e2565b9150614094826150ed565b602082019050919050565b60006140ac6028836146e2565b91506140b782615116565b604082019050919050565b60006140cf602e836146e2565b91506140da82615165565b604082019050919050565b60006140f2602f836146e2565b91506140fd826151b4565b604082019050919050565b6000614115602d836146e2565b915061412082615203565b604082019050919050565b60006141386015836146e2565b915061414382615252565b602082019050919050565b61415781614887565b82525050565b60006141698284613c77565b60148201915081905092915050565b60006141848285613c9d565b6020820191506141948284613c9d565b6020820191508190509392505050565b60006141b08286613d26565b91506141bc8285613d26565b91506141c88284613d26565b9150819050949350505050565b60006020820190506141ea6000830184613c68565b92915050565b60006080820190506142056000830187613c68565b6142126020830186613c68565b61421f604083018561414e565b81810360608301526142318184613cb4565b905095945050505050565b60006020820190506142516000830184613c8e565b92915050565b600060208201905081810360008301526142718184613ced565b905092915050565b6000602082019050818103600083015261429281613d57565b9050919050565b600060208201905081810360008301526142b281613d7a565b9050919050565b600060208201905081810360008301526142d281613d9d565b9050919050565b600060208201905081810360008301526142f281613dc0565b9050919050565b6000602082019050818103600083015261431281613de3565b9050919050565b6000602082019050818103600083015261433281613e06565b9050919050565b6000602082019050818103600083015261435281613e29565b9050919050565b6000602082019050818103600083015261437281613e4c565b9050919050565b6000602082019050818103600083015261439281613e6f565b9050919050565b600060208201905081810360008301526143b281613e92565b9050919050565b600060208201905081810360008301526143d281613eb5565b9050919050565b600060208201905081810360008301526143f281613ed8565b9050919050565b6000602082019050818103600083015261441281613efb565b9050919050565b6000602082019050818103600083015261443281613f1e565b9050919050565b6000602082019050818103600083015261445281613f41565b9050919050565b6000602082019050818103600083015261447281613f64565b9050919050565b6000602082019050818103600083015261449281613f87565b9050919050565b600060208201905081810360008301526144b281613faa565b9050919050565b600060208201905081810360008301526144d281613fcd565b9050919050565b600060208201905081810360008301526144f281613ff0565b9050919050565b6000602082019050818103600083015261451281614013565b9050919050565b6000602082019050818103600083015261453281614036565b9050919050565b6000602082019050818103600083015261455281614059565b9050919050565b600060208201905081810360008301526145728161407c565b9050919050565b600060208201905081810360008301526145928161409f565b9050919050565b600060208201905081810360008301526145b2816140c2565b9050919050565b600060208201905081810360008301526145d2816140e5565b9050919050565b600060208201905081810360008301526145f281614108565b9050919050565b600060208201905081810360008301526146128161412b565b9050919050565b600060208201905061462e600083018461414e565b92915050565b600061463e61464f565b905061464a8282614905565b919050565b6000604051905090565b600067ffffffffffffffff82111561467457614673614a6b565b5b61467d82614a9a565b9050602081019050919050565b600067ffffffffffffffff8211156146a5576146a4614a6b565b5b6146ae82614a9a565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600061470982614887565b915061471483614887565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614749576147486149de565b5b828201905092915050565b600061475f82614887565b915061476a83614887565b92508261477a57614779614a0d565b5b828204905092915050565b600061479082614887565b915061479b83614887565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156147d4576147d36149de565b5b828202905092915050565b60006147ea82614887565b91506147f583614887565b925082821015614808576148076149de565b5b828203905092915050565b600061481e82614867565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b838110156148be5780820151818401526020810190506148a3565b838111156148cd576000848401525b50505050565b600060028204905060018216806148eb57607f821691505b602082108114156148ff576148fe614a3c565b5b50919050565b61490e82614a9a565b810181811067ffffffffffffffff8211171561492d5761492c614a6b565b5b80604052505050565b600061494182614887565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415614974576149736149de565b5b600182019050919050565b600061498a8261499b565b9050919050565b6000819050919050565b60006149a682614aab565b9050919050565b60006149b882614887565b91506149c383614887565b9250826149d3576149d2614a0d565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f455243373231413a206f776e657220696e646578206f7574206f6620626f756e60008201527f6473000000000000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206f776e657220717565727920666f72206e6f6e6578697360008201527f74656e7420746f6b656e00000000000000000000000000000000000000000000602082015250565b7f796f75722077616c6c6574206973206e6f7420696e207468652070726573616c60008201527f65206c6973740000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20676c6f62616c20696e646578206f7574206f6620626f7560008201527f6e64730000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a207472616e7366657220746f20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a206e756d626572206d696e74656420717565727920666f7260008201527f20746865207a65726f2061646472657373000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76652063616c6c6572206973206e6f74206f60008201527f776e6572206e6f7220617070726f76656420666f7220616c6c00000000000000602082015250565b7f63616e6e6f74206d696e742074686520616d6f756e7420726571756573746564600082015250565b7f455243373231413a2062616c616e636520717565727920666f7220746865207a60008201527f65726f2061646472657373000000000000000000000000000000000000000000602082015250565b7f7468652070726573616c65206973206e6f74206f70656e207965740000000000600082015250565b7f74686520636f6c6c656374696f6e20697320736f6c64206f7574000000000000600082015250565b7f455243373231413a207472616e736665722066726f6d20696e636f727265637460008201527f206f776e65720000000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f766520746f2063616c6c6572000000000000600082015250565b7f455243373231413a207472616e736665722063616c6c6572206973206e6f742060008201527f6f776e6572206e6f7220617070726f7665640000000000000000000000000000602082015250565b7f616d6f756e7420746f206d696e742073686f756c64206265206120706f73697460008201527f697665206e756d62657200000000000000000000000000000000000000000000602082015250565b7f636f6e74726163747320617265206e6f7420616c6c6f77656420746f206d696e60008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76616c20746f2063757272656e74206f776e60008201527f6572000000000000000000000000000000000000000000000000000000000000602082015250565b7f696e73756666696369656e742066756e64730000000000000000000000000000600082015250565b7f455243373231413a207472616e7366657220746f206e6f6e204552433732315260008201527f6563656976657220696d706c656d656e74657200000000000000000000000000602082015250565b7f455243373231413a206d696e7420746f20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f746865207075626c69632073616c65206973206e6f74206f70656e2079657400600082015250565b7f455243373231413a207175616e74697479206d7573742062652067726561746560008201527f72207468616e2030000000000000000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2067657420746f6b656e206f662060008201527f6f776e657220627920696e646578000000000000000000000000000000000000602082015250565b7f455243373231413a20756e61626c6520746f2064657465726d696e652074686560008201527f206f776e6572206f6620746f6b656e0000000000000000000000000000000000602082015250565b7f455243373231413a20617070726f76656420717565727920666f72206e6f6e6560008201527f78697374656e7420746f6b656e00000000000000000000000000000000000000602082015250565b7f4e6f2061737365747320746f2077697468647261770000000000000000000000600082015250565b61528481614813565b811461528f57600080fd5b50565b61529b81614825565b81146152a657600080fd5b50565b6152b281614831565b81146152bd57600080fd5b50565b6152c98161483b565b81146152d457600080fd5b50565b6152e081614887565b81146152eb57600080fd5b5056fea2646970667358221220876f9f14bcb8f9e5dbaed8746922f9245379e5afa01847e46cd837feb080203064736f6c63430008040033

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

000000000000000000000000000000000000000000000000000000000000006000000000000000000000000000000000000000000000000000000000000000c0ca182cd1d7517760bdcc0532aa1a976bb7725e9203638d5b6b1310413f61eddd0000000000000000000000000000000000000000000000000000000000000036697066733a2f2f516d5965326478354478766737793277715a7138517a416b693354514c51354b6b477141445751636b38563877752f000000000000000000000000000000000000000000000000000000000000000000000000000000000041697066733a2f2f516d6145476a6a5a65705367315043446971507459764a6e707a4e5a4461353476415a356b394e72355053546e632f68696464656e2e6a736f6e00000000000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _initBaseURI (string): ipfs://QmYe2dx5Dxvg7y2wqZq8QzAki3TQLQ5KkGqADWQck8V8wu/
Arg [1] : _initNotRevealedUri (string): ipfs://QmaEGjjZepSg1PCDiqPtYvJnpzNZDa54vAZ5k9Nr5PSTnc/hidden.json
Arg [2] : _initMerkleRootHash (bytes32): 0xca182cd1d7517760bdcc0532aa1a976bb7725e9203638d5b6b1310413f61eddd

-----Encoded View---------------
10 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000060
Arg [1] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [2] : ca182cd1d7517760bdcc0532aa1a976bb7725e9203638d5b6b1310413f61eddd
Arg [3] : 0000000000000000000000000000000000000000000000000000000000000036
Arg [4] : 697066733a2f2f516d5965326478354478766737793277715a7138517a416b69
Arg [5] : 3354514c51354b6b477141445751636b38563877752f00000000000000000000
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000041
Arg [7] : 697066733a2f2f516d6145476a6a5a65705367315043446971507459764a6e70
Arg [8] : 7a4e5a4461353476415a356b394e72355053546e632f68696464656e2e6a736f
Arg [9] : 6e00000000000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

190:7153:13:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3744:410:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5720:98;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7356:280;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6892:403;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1990:1103:13;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1974:98:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8340:156;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;715:33:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2657:1020:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6253:737:13;;;;;;;;;;;;;:::i;:::-;;8562:171:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2144:220;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;877:28:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5926:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3099:838;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5536:122:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4213:252;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1683:101:10;;;;;;;;;;;;;:::i;:::-;;567:51:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;790:36;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5519:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;6996:114;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1051:85:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5431:82:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5882:102:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3997:510:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5814:106;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;511:50;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;7703:303:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5622:103:13;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8799:344:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7236:105:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;366:46;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4596:740;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8072:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;459:46:13;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;661:47;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;6034:124;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1933:232:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3744:410:3;3886:4;3940:25;3925:40;;;:11;:40;;;;:104;;;;3996:33;3981:48;;;:11;:48;;;;3925:104;:170;;;;4060:35;4045:50;;;:11;:50;;;;3925:170;:222;;;;4111:36;4135:11;4111:23;:36::i;:::-;3925:222;3906:241;;3744:410;;;:::o;5720:98::-;5774:13;5806:5;5799:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5720:98;:::o;7356:280::-;7456:7;7500:16;7508:7;7500;:16::i;:::-;7479:108;;;;;;;;;;;;:::i;:::-;;;;;;;;;7605:15;:24;7621:7;7605:24;;;;;;;;;;;;;;;;;;;;;7598:31;;7356:280;;;:::o;6892:403::-;6964:13;6980:24;6996:7;6980:15;:24::i;:::-;6964:40;;7028:5;7022:11;;:2;:11;;;;7014:58;;;;;;;;;;;;:::i;:::-;;;;;;;;;7120:5;7104:21;;:12;:10;:12::i;:::-;:21;;;:62;;;;7129:37;7146:5;7153:12;:10;:12::i;:::-;7129:16;:37::i;:::-;7104:62;7083:166;;;;;;;;;;;;:::i;:::-;;;;;;;;;7260:28;7269:2;7273:7;7282:5;7260:8;:28::i;:::-;6892:403;;;:::o;1990:1103:13:-;2120:13;;;;;;;;;;;2112:53;;;;;;;;;;;;:::i;:::-;;;;;;;;;2197:1;2183:11;:15;2175:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;2256:14;2273:12;:10;:12::i;:::-;2256:29;;2316:6;2303:19;;:9;:19;;;2295:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;2371:26;2428:11;2400:25;2414:10;2400:13;:25::i;:::-;:39;;;;:::i;:::-;2371:68;;504:1;2470:18;:40;;2449:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;2618:9;2603:11;551:10;2587:27;;;;:::i;:::-;:40;;2579:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2661:16;2707:10;2690:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;2680:39;;;;;;2661:58;;2750;2769:12;;2750:58;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2783:14;;2799:8;2750:18;:58::i;:::-;2729:143;;;;;;;;;;;;:::i;:::-;;;;;;;;;2883:14;2900:12;;2883:29;;703:5;2952:11;2943:6;:20;;;;:::i;:::-;:39;;2922:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;3045:41;3051:10;3063:11;3045:41;;;;;;;;;;;;3080:5;3045;:41::i;:::-;1990:1103;;;;;;;:::o;1974:98:3:-;2027:7;2053:12;;2046:19;;1974:98;:::o;8340:156::-;8461:28;8471:4;8477:2;8481:7;8461:9;:28::i;:::-;8340:156;;;:::o;715:33:13:-;;;;;;;;;;;;;:::o;2657:1020:3:-;2778:7;2817:16;2827:5;2817:9;:16::i;:::-;2809:5;:24;2801:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;2882:22;2907:13;:11;:13::i;:::-;2882:38;;2930:19;2959:25;3144:9;3139:455;3159:14;3155:1;:18;3139:455;;;3198:31;3232:11;:14;3244:1;3232:14;;;;;;;;;;;3198:48;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3294:1;3268:28;;:9;:14;;;:28;;;3264:109;;3340:9;:14;;;3320:34;;3264:109;3415:5;3394:26;;:17;:26;;;3390:190;;;3463:5;3448:11;:20;3444:83;;;3503:1;3496:8;;;;;;;;;3444:83;3548:13;;;;;;;3390:190;3139:455;3175:3;;;;;;;3139:455;;;;3614:56;;;;;;;;;;:::i;:::-;;;;;;;;2657:1020;;;;;:::o;6253:737:13:-;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6302:15:13::1;6320:21;6302:39;;6369:1;6359:7;:11;6351:45;;;;;;;;;;;;:::i;:::-;;;;;;;;;6407:19;6429:24;6449:3;6429:15;6441:2;6429:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;6407:46;;6463:19;6485:23;6504:3;6485:14;6497:1;6485:7;:11;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;6463:45;;6518:19;6540:24;6560:3;6540:15;6552:2;6540:7;:11;;:15;;;;:::i;:::-;:19;;:24;;;;:::i;:::-;6518:46;;6574:19;6596:23;6615:3;6596:14;6608:1;6596:7;:11;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;6574:45;;6629:19;6651:23;6670:3;6651:14;6663:1;6651:7;:11;;:14;;;;:::i;:::-;:18;;:23;;;;:::i;:::-;6629:45;;6685:31;1021:42;6704:11;6685:9;:31::i;:::-;6726;1112:42;6745:11;6726:9;:31::i;:::-;6767;1203:42;6786:11;6767:9;:31::i;:::-;6808;1294:42;6827:11;6808:9;:31::i;:::-;6849;1385:42;6868:11;6849:9;:31::i;:::-;6934:49;1484:42;6961:21;6934:9;:49::i;:::-;1333:1:10;;;;;;6253:737:13:o:0;8562:171:3:-;8687:39;8704:4;8710:2;8714:7;8687:39;;;;;;;;;;;;:16;:39::i;:::-;8562:171;;;:::o;2144:220::-;2243:7;2282:13;:11;:13::i;:::-;2274:5;:21;2266:69;;;;;;;;;;;;:::i;:::-;;;;;;;;;2352:5;2345:12;;2144:220;;;:::o;877:28:13:-;;;;;;;;;;;;;:::o;5926:102::-;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6010:11:13::1;6000:7;:21;;;;;;;;;;;;:::i;:::-;;5926:102:::0;:::o;3099:838::-;3179:16;;;;;;;;;;;3171:60;;;;;;;;;;;;:::i;:::-;;;;;;;;;3263:1;3249:11;:15;3241:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;3322:14;3339:12;:10;:12::i;:::-;3322:29;;3382:6;3369:19;;:9;:19;;;3361:65;;;;;;;;;;;;:::i;:::-;;;;;;;;;3437:26;3494:11;3466:25;3480:10;3466:13;:25::i;:::-;:39;;;;:::i;:::-;3437:68;;504:1;3536:18;:40;;3515:119;;;;;;;;;;;;:::i;:::-;;;;;;;;;3684:9;3669:11;551:10;3653:27;;;;:::i;:::-;:40;;3645:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;3727:14;3744:12;;3727:29;;703:5;3796:11;3787:6;:20;;;;:::i;:::-;:39;;3766:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;3889:41;3895:10;3907:11;3889:41;;;;;;;;;;;;3924:5;3889;:41::i;:::-;3099:838;;;;:::o;5536:122:3:-;5600:7;5626:20;5638:7;5626:11;:20::i;:::-;:25;;;5619:32;;5536:122;;;:::o;4213:252::-;4277:7;4334:1;4317:19;;:5;:19;;;;4296:109;;;;;;;;;;;;:::i;:::-;;;;;;;;;4430:12;:19;4443:5;4430:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;4422:36;;4415:43;;4213:252;;;:::o;1683:101:10:-;1274:12;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1747:30:::1;1774:1;1747:18;:30::i;:::-;1683:101::o:0;567:51:13:-;615:3;567:51;:::o;790:36::-;;;;;;;;;;;;;:::o;5519:97::-;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5603:6:13::1;5587:13;;:22;;;;;;;;;;;;;;;;;;5519:97:::0;:::o;6996:114::-;7056:7;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7082:21:13::1;7075:28;;6996:114:::0;:::o;1051:85:10:-;1097:7;1123:6;;;;;;;;;;;1116:13;;1051:85;:::o;5431:82:13:-;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5500:6:13::1;5489:8;;:17;;;;;;;;;;;;;;;;;;5431:82:::0;:::o;5882:102:3:-;5938:13;5970:7;5963:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5882:102;:::o;3997:510:13:-;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4091:1:13::1;4077:11;:15;4069:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;615:3;4187:11;4170:14;;:28;;;;:::i;:::-;:53;;4149:132;;;;;;;;;;;;:::i;:::-;;;;;;;;;4292:14;4309:12:::0;::::1;4292:29;;703:5;4361:11;4352:6;:20;;;;:::i;:::-;:39;;4331:112;;;;;;;;;;;;:::i;:::-;;;;;;;;;4454:46;1484:42;4477:11;4454:46;;;;;;;;;;;::::0;4494:5:::1;4454;:46::i;:::-;1333:1:10;3997:510:13::0;:::o;5814:106::-;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5904:9:13::1;5887:14;:26;;;;5814:106:::0;:::o;511:50::-;551:10;511:50;:::o;7703:303:3:-;7829:12;:10;:12::i;:::-;7817:24;;:8;:24;;;;7809:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;7928:8;7883:18;:32;7902:12;:10;:12::i;:::-;7883:32;;;;;;;;;;;;;;;:42;7916:8;7883:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;7980:8;7951:48;;7966:12;:10;:12::i;:::-;7951:48;;;7990:8;7951:48;;;;;;:::i;:::-;;;;;;;;7703:303;;:::o;5622:103:13:-;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5712:6:13::1;5693:16;;:25;;;;;;;;;;;;;;;;;;5622:103:::0;:::o;8799:344:3:-;8952:28;8962:4;8968:2;8972:7;8952:9;:28::i;:::-;9011:48;9034:4;9040:2;9044:7;9053:5;9011:22;:48::i;:::-;8990:146;;;;;;;;;;;;:::i;:::-;;;;;;;;;8799:344;;;;:::o;7236:105:13:-;7294:7;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;7320:14:13::1;;7313:21;;7236:105:::0;:::o;366:46::-;;;;;;;;;;;;;;;;;;;:::o;4596:740::-;4709:13;4759:16;4767:7;4759;:16::i;:::-;4738:110;;;;;;;;;;;;:::i;:::-;;;;;;;;;4875:5;4863:17;;:8;;;;;;;;;;;:17;;;4859:69;;;4903:14;4896:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;4859:69;4937:18;4968:1;4958:7;:11;;;;:::i;:::-;4937:32;;4980:28;5011:7;4980:38;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5078:1;5053:14;5047:28;:32;:282;;;;;;;;;;;;;;;;;5168:14;5208:21;:10;:19;:21::i;:::-;5255:13;;;;;;;;;;;;;;;;;5126:164;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;5047:282;5028:301;;;;4596:740;;;;:::o;8072:206:3:-;8209:4;8236:18;:25;8255:5;8236:25;;;;;;;;;;;;;;;:35;8262:8;8236:35;;;;;;;;;;;;;;;;;;;;;;;;;8229:42;;8072:206;;;;:::o;459:46:13:-;504:1;459:46;:::o;661:47::-;703:5;661:47;:::o;6034:124::-;1274:12:10;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6136:15:13::1;6119:14;:32;;;;;;;;;;;;:::i;:::-;;6034:124:::0;:::o;1933:232:10:-;1274:12;:10;:12::i;:::-;1263:23;;:7;:5;:7::i;:::-;:23;;;1255:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2054:1:::1;2034:22;;:8;:22;;;;2013:107;;;;;;;;;;;;:::i;:::-;;;;;;;;;2130:28;2149:8;2130:18;:28::i;:::-;1933:232:::0;:::o;829:155:2:-;914:4;952:25;937:40;;;:11;:40;;;;930:47;;829:155;;;:::o;9389:109:3:-;9446:4;9479:12;;9469:7;:22;9462:29;;9389:109;;;:::o;640:96:1:-;693:7;719:10;712:17;;640:96;:::o;14401:189:3:-;14538:2;14511:15;:24;14527:7;14511:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;14575:7;14571:2;14555:28;;14564:5;14555:28;;;;;;;;;;;;14401:189;;;:::o;4471:260::-;4532:7;4589:1;4572:19;;:5;:19;;;;4551:115;;;;;;;;;;;;:::i;:::-;;;;;;;;;4691:12;:19;4704:5;4691:19;;;;;;;;;;;;;;;:32;;;;;;;;;;;;4683:41;;4676:48;;4471:260;;;:::o;847:184:9:-;968:4;1020;991:25;1004:5;1011:4;991:12;:25::i;:::-;:33;984:40;;847:184;;;;;:::o;10361:1636:3:-;10494:20;10517:12;;10494:35;;10561:1;10547:16;;:2;:16;;;;10539:62;;;;;;;;;;;;:::i;:::-;;;;;;;;;10631:1;10619:8;:13;;10611:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;10688:61;10718:1;10722:2;10726:12;10740:8;10688:21;:61::i;:::-;11057:8;11021:12;:16;11034:2;11021:16;;;;;;;;;;;;;;;:24;;;:45;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11121:8;11080:12;:16;11093:2;11080:16;;;;;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;11178:2;11145:11;:25;11157:12;11145:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;11244:15;11194:11;:25;11206:12;11194:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;11275:20;11298:12;11275:35;;11330:9;11325:543;11345:8;11341:1;:12;11325:543;;;11408:12;11404:2;11383:38;;11400:1;11383:38;;;;;;;;;;;;11443:4;11439:382;;;11504:197;11564:1;11596:2;11628:12;11670:5;11504:22;:197::i;:::-;11471:331;;;;;;;;;;;;:::i;:::-;;;;;;;;;11439:382;11839:14;;;;;;;11355:3;;;;;;;11325:543;;;;11897:12;11882;:27;;;;10361:1636;11930:60;11959:1;11963:2;11967:12;11981:8;11930:20;:60::i;:::-;10361:1636;;;;;:::o;12239:2051::-;12349:35;12387:20;12399:7;12387:11;:20::i;:::-;12349:58;;12418:22;12460:13;:18;;;12444:34;;:12;:10;:12::i;:::-;:34;;;:86;;;;12518:12;:10;:12::i;:::-;12494:36;;:20;12506:7;12494:11;:20::i;:::-;:36;;;12444:86;:152;;;;12546:50;12563:13;:18;;;12583:12;:10;:12::i;:::-;12546:16;:50::i;:::-;12444:152;12418:179;;12629:17;12608:114;;;;;;;;;;;;:::i;:::-;;;;;;;;;12776:4;12754:26;;:13;:18;;;:26;;;12733:111;;;;;;;;;;;;:::i;:::-;;;;;;;;;12876:1;12862:16;;:2;:16;;;;12854:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;12931:43;12953:4;12959:2;12963:7;12972:1;12931:21;:43::i;:::-;13036:49;13053:1;13057:7;13066:13;:18;;;13036:8;:49::i;:::-;13405:1;13375:12;:18;13388:4;13375:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13448:1;13420:12;:16;13433:2;13420:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13492:2;13464:11;:20;13476:7;13464:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;13553:15;13508:11;:20;13520:7;13508:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;13817:19;13849:1;13839:7;:11;13817:33;;13909:1;13868:43;;:11;:24;13880:11;13868:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;13864:315;;;13935:20;13943:11;13935:7;:20::i;:::-;13931:234;;;14011:13;:18;;;13979:11;:24;13991:11;13979:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;14093:13;:53;;;14051:11;:24;14063:11;14051:24;;;;;;;;;;;:39;;;:95;;;;;;;;;;;;;;;;;;13931:234;13864:315;12239:2051;14223:7;14219:2;14204:27;;14213:4;14204:27;;;;;;;;;;;;14241:42;14262:4;14268:2;14272:7;14281:1;14241:20;:42::i;:::-;12239:2051;;;;;:::o;3451:96:11:-;3509:7;3539:1;3535;:5;;;;:::i;:::-;3528:12;;3451:96;;;;:::o;3836:::-;3894:7;3924:1;3920;:5;;;;:::i;:::-;3913:12;;3836:96;;;;:::o;7116:114:13:-;7196:8;7188:26;;:35;7215:7;7188:35;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7116:114;;:::o;4927:552:3:-;5012:21;;:::i;:::-;5057:16;5065:7;5057;:16::i;:::-;5049:71;;;;;;;;;;;;:::i;:::-;;;;;;;;;5160:12;5175:7;5160:22;;5155:240;5192:1;5184:4;:9;5155:240;;5221:31;5255:11;:17;5267:4;5255:17;;;;;;;;;;;5221:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;5320:1;5294:28;;:9;:14;;;:28;;;5290:91;;5353:9;5346:16;;;;;;5290:91;5155:240;5195:6;;;;;;;;5155:240;;;;5415:57;;;;;;;;;;:::i;:::-;;;;;;;;4927:552;;;;:::o;2319:187:10:-;2392:16;2411:6;;;;;;;;;;;2392:25;;2436:8;2427:6;;:17;;;;;;;;;;;;;;;;;;2490:8;2459:40;;2480:8;2459:40;;;;;;;;;;;;2319:187;;:::o;15143:955:3:-;15293:4;15313:15;:2;:13;;;:15::i;:::-;15309:783;;;15380:2;15364:36;;;15422:12;:10;:12::i;:::-;15456:4;15482:7;15511:5;15364:170;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;15344:696;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;15734:1;15717:6;:13;:18;15713:313;;;15759:107;;;;;;;;;;:::i;:::-;;;;;;;;15713:313;15978:6;15972:13;15963:6;15959:2;15955:15;15948:38;15344:696;15606:45;;;15596:55;;;:6;:55;;;;15589:62;;;;;15309:783;16077:4;16070:11;;15143:955;;;;;;;:::o;328:703:12:-;384:13;610:1;601:5;:10;597:51;;;627:10;;;;;;;;;;;;;;;;;;;;;597:51;657:12;672:5;657:20;;687:14;711:75;726:1;718:4;:9;711:75;;743:8;;;;;:::i;:::-;;;;773:2;765:10;;;;;:::i;:::-;;;711:75;;;795:19;827:6;817:17;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;795:39;;844:150;860:1;851:5;:10;844:150;;887:1;877:11;;;;;:::i;:::-;;;953:2;945:5;:10;;;;:::i;:::-;932:2;:24;;;;:::i;:::-;919:39;;902:6;909;902:14;;;;;;;;;;;;;;;;;;;:56;;;;;;;;;;;981:2;972:11;;;;;:::i;:::-;;;844:150;;;1017:6;1003:21;;;;;328:703;;;;:::o;1383:688:9:-;1466:7;1485:20;1508:4;1485:27;;1527:9;1522:514;1546:5;:12;1542:1;:16;1522:514;;;1579:20;1602:5;1608:1;1602:8;;;;;;;;;;;;;;;;;;;;;;1579:31;;1644:12;1628;:28;1624:402;;1796:12;1810;1779:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1769:55;;;;;;1754:70;;1624:402;;;1983:12;1997;1966:44;;;;;;;;;:::i;:::-;;;;;;;;;;;;;1956:55;;;;;;1941:70;;1624:402;1522:514;1560:3;;;;;:::i;:::-;;;;1522:514;;;;2052:12;2045:19;;;1383:688;;;;:::o;16572:154:3:-;;;;;:::o;17124:153::-;;;;;:::o;771:377:0:-;831:4;1034:12;1099:7;1087:20;1079:28;;1140:1;1133:4;:8;1126:15;;;771:377;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:343:14:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:2;;;290:1;287;280:12;249:2;303:41;337:6;332:3;327;303:41;:::i;:::-;90:260;;;;;;:::o;356:345::-;434:5;459:66;475:49;517:6;475:49;:::i;:::-;459:66;:::i;:::-;450:75;;548:6;541:5;534:21;586:4;579:5;575:16;624:3;615:6;610:3;606:16;603:25;600:2;;;641:1;638;631:12;600:2;654:41;688:6;683:3;678;654:41;:::i;:::-;440:261;;;;;;:::o;707:139::-;753:5;791:6;778:20;769:29;;807:33;834:5;807:33;:::i;:::-;759:87;;;;:::o;869:367::-;942:8;952:6;1002:3;995:4;987:6;983:17;979:27;969:2;;1020:1;1017;1010:12;969:2;1056:6;1043:20;1033:30;;1086:18;1078:6;1075:30;1072:2;;;1118:1;1115;1108:12;1072:2;1155:4;1147:6;1143:17;1131:29;;1209:3;1201:4;1193:6;1189:17;1179:8;1175:32;1172:41;1169:2;;;1226:1;1223;1216:12;1169:2;959:277;;;;;:::o;1242:133::-;1285:5;1323:6;1310:20;1301:29;;1339:30;1363:5;1339:30;:::i;:::-;1291:84;;;;:::o;1381:139::-;1427:5;1465:6;1452:20;1443:29;;1481:33;1508:5;1481:33;:::i;:::-;1433:87;;;;:::o;1526:137::-;1571:5;1609:6;1596:20;1587:29;;1625:32;1651:5;1625:32;:::i;:::-;1577:86;;;;:::o;1669:141::-;1725:5;1756:6;1750:13;1741:22;;1772:32;1798:5;1772:32;:::i;:::-;1731:79;;;;:::o;1829:271::-;1884:5;1933:3;1926:4;1918:6;1914:17;1910:27;1900:2;;1951:1;1948;1941:12;1900:2;1991:6;1978:20;2016:78;2090:3;2082:6;2075:4;2067:6;2063:17;2016:78;:::i;:::-;2007:87;;1890:210;;;;;:::o;2120:273::-;2176:5;2225:3;2218:4;2210:6;2206:17;2202:27;2192:2;;2243:1;2240;2233:12;2192:2;2283:6;2270:20;2308:79;2383:3;2375:6;2368:4;2360:6;2356:17;2308:79;:::i;:::-;2299:88;;2182:211;;;;;:::o;2399:139::-;2445:5;2483:6;2470:20;2461:29;;2499:33;2526:5;2499:33;:::i;:::-;2451:87;;;;:::o;2544:262::-;2603:6;2652:2;2640:9;2631:7;2627:23;2623:32;2620:2;;;2668:1;2665;2658:12;2620:2;2711:1;2736:53;2781:7;2772:6;2761:9;2757:22;2736:53;:::i;:::-;2726:63;;2682:117;2610:196;;;;:::o;2812:407::-;2880:6;2888;2937:2;2925:9;2916:7;2912:23;2908:32;2905:2;;;2953:1;2950;2943:12;2905:2;2996:1;3021:53;3066:7;3057:6;3046:9;3042:22;3021:53;:::i;:::-;3011:63;;2967:117;3123:2;3149:53;3194:7;3185:6;3174:9;3170:22;3149:53;:::i;:::-;3139:63;;3094:118;2895:324;;;;;:::o;3225:552::-;3302:6;3310;3318;3367:2;3355:9;3346:7;3342:23;3338:32;3335:2;;;3383:1;3380;3373:12;3335:2;3426:1;3451:53;3496:7;3487:6;3476:9;3472:22;3451:53;:::i;:::-;3441:63;;3397:117;3553:2;3579:53;3624:7;3615:6;3604:9;3600:22;3579:53;:::i;:::-;3569:63;;3524:118;3681:2;3707:53;3752:7;3743:6;3732:9;3728:22;3707:53;:::i;:::-;3697:63;;3652:118;3325:452;;;;;:::o;3783:809::-;3878:6;3886;3894;3902;3951:3;3939:9;3930:7;3926:23;3922:33;3919:2;;;3968:1;3965;3958:12;3919:2;4011:1;4036:53;4081:7;4072:6;4061:9;4057:22;4036:53;:::i;:::-;4026:63;;3982:117;4138:2;4164:53;4209:7;4200:6;4189:9;4185:22;4164:53;:::i;:::-;4154:63;;4109:118;4266:2;4292:53;4337:7;4328:6;4317:9;4313:22;4292:53;:::i;:::-;4282:63;;4237:118;4422:2;4411:9;4407:18;4394:32;4453:18;4445:6;4442:30;4439:2;;;4485:1;4482;4475:12;4439:2;4513:62;4567:7;4558:6;4547:9;4543:22;4513:62;:::i;:::-;4503:72;;4365:220;3909:683;;;;;;;:::o;4598:401::-;4663:6;4671;4720:2;4708:9;4699:7;4695:23;4691:32;4688:2;;;4736:1;4733;4726:12;4688:2;4779:1;4804:53;4849:7;4840:6;4829:9;4825:22;4804:53;:::i;:::-;4794:63;;4750:117;4906:2;4932:50;4974:7;4965:6;4954:9;4950:22;4932:50;:::i;:::-;4922:60;;4877:115;4678:321;;;;;:::o;5005:407::-;5073:6;5081;5130:2;5118:9;5109:7;5105:23;5101:32;5098:2;;;5146:1;5143;5136:12;5098:2;5189:1;5214:53;5259:7;5250:6;5239:9;5235:22;5214:53;:::i;:::-;5204:63;;5160:117;5316:2;5342:53;5387:7;5378:6;5367:9;5363:22;5342:53;:::i;:::-;5332:63;;5287:118;5088:324;;;;;:::o;5418:256::-;5474:6;5523:2;5511:9;5502:7;5498:23;5494:32;5491:2;;;5539:1;5536;5529:12;5491:2;5582:1;5607:50;5649:7;5640:6;5629:9;5625:22;5607:50;:::i;:::-;5597:60;;5553:114;5481:193;;;;:::o;5680:262::-;5739:6;5788:2;5776:9;5767:7;5763:23;5759:32;5756:2;;;5804:1;5801;5794:12;5756:2;5847:1;5872:53;5917:7;5908:6;5897:9;5893:22;5872:53;:::i;:::-;5862:63;;5818:117;5746:196;;;;:::o;5948:260::-;6006:6;6055:2;6043:9;6034:7;6030:23;6026:32;6023:2;;;6071:1;6068;6061:12;6023:2;6114:1;6139:52;6183:7;6174:6;6163:9;6159:22;6139:52;:::i;:::-;6129:62;;6085:116;6013:195;;;;:::o;6214:282::-;6283:6;6332:2;6320:9;6311:7;6307:23;6303:32;6300:2;;;6348:1;6345;6338:12;6300:2;6391:1;6416:63;6471:7;6462:6;6451:9;6447:22;6416:63;:::i;:::-;6406:73;;6362:127;6290:206;;;;:::o;6502:375::-;6571:6;6620:2;6608:9;6599:7;6595:23;6591:32;6588:2;;;6636:1;6633;6626:12;6588:2;6707:1;6696:9;6692:17;6679:31;6737:18;6729:6;6726:30;6723:2;;;6769:1;6766;6759:12;6723:2;6797:63;6852:7;6843:6;6832:9;6828:22;6797:63;:::i;:::-;6787:73;;6650:220;6578:299;;;;:::o;6883:262::-;6942:6;6991:2;6979:9;6970:7;6966:23;6962:32;6959:2;;;7007:1;7004;6997:12;6959:2;7050:1;7075:53;7120:7;7111:6;7100:9;7096:22;7075:53;:::i;:::-;7065:63;;7021:117;6949:196;;;;:::o;7151:570::-;7246:6;7254;7262;7311:2;7299:9;7290:7;7286:23;7282:32;7279:2;;;7327:1;7324;7317:12;7279:2;7370:1;7395:53;7440:7;7431:6;7420:9;7416:22;7395:53;:::i;:::-;7385:63;;7341:117;7525:2;7514:9;7510:18;7497:32;7556:18;7548:6;7545:30;7542:2;;;7588:1;7585;7578:12;7542:2;7624:80;7696:7;7687:6;7676:9;7672:22;7624:80;:::i;:::-;7606:98;;;;7468:246;7269:452;;;;;:::o;7727:118::-;7814:24;7832:5;7814:24;:::i;:::-;7809:3;7802:37;7792:53;;:::o;7851:157::-;7956:45;7976:24;7994:5;7976:24;:::i;:::-;7956:45;:::i;:::-;7951:3;7944:58;7934:74;;:::o;8014:109::-;8095:21;8110:5;8095:21;:::i;:::-;8090:3;8083:34;8073:50;;:::o;8129:157::-;8234:45;8254:24;8272:5;8254:24;:::i;:::-;8234:45;:::i;:::-;8229:3;8222:58;8212:74;;:::o;8292:360::-;8378:3;8406:38;8438:5;8406:38;:::i;:::-;8460:70;8523:6;8518:3;8460:70;:::i;:::-;8453:77;;8539:52;8584:6;8579:3;8572:4;8565:5;8561:16;8539:52;:::i;:::-;8616:29;8638:6;8616:29;:::i;:::-;8611:3;8607:39;8600:46;;8382:270;;;;;:::o;8658:364::-;8746:3;8774:39;8807:5;8774:39;:::i;:::-;8829:71;8893:6;8888:3;8829:71;:::i;:::-;8822:78;;8909:52;8954:6;8949:3;8942:4;8935:5;8931:16;8909:52;:::i;:::-;8986:29;9008:6;8986:29;:::i;:::-;8981:3;8977:39;8970:46;;8750:272;;;;;:::o;9028:377::-;9134:3;9162:39;9195:5;9162:39;:::i;:::-;9217:89;9299:6;9294:3;9217:89;:::i;:::-;9210:96;;9315:52;9360:6;9355:3;9348:4;9341:5;9337:16;9315:52;:::i;:::-;9392:6;9387:3;9383:16;9376:23;;9138:267;;;;;:::o;9411:366::-;9553:3;9574:67;9638:2;9633:3;9574:67;:::i;:::-;9567:74;;9650:93;9739:3;9650:93;:::i;:::-;9768:2;9763:3;9759:12;9752:19;;9557:220;;;:::o;9783:366::-;9925:3;9946:67;10010:2;10005:3;9946:67;:::i;:::-;9939:74;;10022:93;10111:3;10022:93;:::i;:::-;10140:2;10135:3;10131:12;10124:19;;9929:220;;;:::o;10155:366::-;10297:3;10318:67;10382:2;10377:3;10318:67;:::i;:::-;10311:74;;10394:93;10483:3;10394:93;:::i;:::-;10512:2;10507:3;10503:12;10496:19;;10301:220;;;:::o;10527:366::-;10669:3;10690:67;10754:2;10749:3;10690:67;:::i;:::-;10683:74;;10766:93;10855:3;10766:93;:::i;:::-;10884:2;10879:3;10875:12;10868:19;;10673:220;;;:::o;10899:366::-;11041:3;11062:67;11126:2;11121:3;11062:67;:::i;:::-;11055:74;;11138:93;11227:3;11138:93;:::i;:::-;11256:2;11251:3;11247:12;11240:19;;11045:220;;;:::o;11271:366::-;11413:3;11434:67;11498:2;11493:3;11434:67;:::i;:::-;11427:74;;11510:93;11599:3;11510:93;:::i;:::-;11628:2;11623:3;11619:12;11612:19;;11417:220;;;:::o;11643:366::-;11785:3;11806:67;11870:2;11865:3;11806:67;:::i;:::-;11799:74;;11882:93;11971:3;11882:93;:::i;:::-;12000:2;11995:3;11991:12;11984:19;;11789:220;;;:::o;12015:366::-;12157:3;12178:67;12242:2;12237:3;12178:67;:::i;:::-;12171:74;;12254:93;12343:3;12254:93;:::i;:::-;12372:2;12367:3;12363:12;12356:19;;12161:220;;;:::o;12387:366::-;12529:3;12550:67;12614:2;12609:3;12550:67;:::i;:::-;12543:74;;12626:93;12715:3;12626:93;:::i;:::-;12744:2;12739:3;12735:12;12728:19;;12533:220;;;:::o;12759:366::-;12901:3;12922:67;12986:2;12981:3;12922:67;:::i;:::-;12915:74;;12998:93;13087:3;12998:93;:::i;:::-;13116:2;13111:3;13107:12;13100:19;;12905:220;;;:::o;13131:366::-;13273:3;13294:67;13358:2;13353:3;13294:67;:::i;:::-;13287:74;;13370:93;13459:3;13370:93;:::i;:::-;13488:2;13483:3;13479:12;13472:19;;13277:220;;;:::o;13503:366::-;13645:3;13666:67;13730:2;13725:3;13666:67;:::i;:::-;13659:74;;13742:93;13831:3;13742:93;:::i;:::-;13860:2;13855:3;13851:12;13844:19;;13649:220;;;:::o;13875:366::-;14017:3;14038:67;14102:2;14097:3;14038:67;:::i;:::-;14031:74;;14114:93;14203:3;14114:93;:::i;:::-;14232:2;14227:3;14223:12;14216:19;;14021:220;;;:::o;14247:366::-;14389:3;14410:67;14474:2;14469:3;14410:67;:::i;:::-;14403:74;;14486:93;14575:3;14486:93;:::i;:::-;14604:2;14599:3;14595:12;14588:19;;14393:220;;;:::o;14619:366::-;14761:3;14782:67;14846:2;14841:3;14782:67;:::i;:::-;14775:74;;14858:93;14947:3;14858:93;:::i;:::-;14976:2;14971:3;14967:12;14960:19;;14765:220;;;:::o;14991:366::-;15133:3;15154:67;15218:2;15213:3;15154:67;:::i;:::-;15147:74;;15230:93;15319:3;15230:93;:::i;:::-;15348:2;15343:3;15339:12;15332:19;;15137:220;;;:::o;15363:366::-;15505:3;15526:67;15590:2;15585:3;15526:67;:::i;:::-;15519:74;;15602:93;15691:3;15602:93;:::i;:::-;15720:2;15715:3;15711:12;15704:19;;15509:220;;;:::o;15735:366::-;15877:3;15898:67;15962:2;15957:3;15898:67;:::i;:::-;15891:74;;15974:93;16063:3;15974:93;:::i;:::-;16092:2;16087:3;16083:12;16076:19;;15881:220;;;:::o;16107:366::-;16249:3;16270:67;16334:2;16329:3;16270:67;:::i;:::-;16263:74;;16346:93;16435:3;16346:93;:::i;:::-;16464:2;16459:3;16455:12;16448:19;;16253:220;;;:::o;16479:366::-;16621:3;16642:67;16706:2;16701:3;16642:67;:::i;:::-;16635:74;;16718:93;16807:3;16718:93;:::i;:::-;16836:2;16831:3;16827:12;16820:19;;16625:220;;;:::o;16851:366::-;16993:3;17014:67;17078:2;17073:3;17014:67;:::i;:::-;17007:74;;17090:93;17179:3;17090:93;:::i;:::-;17208:2;17203:3;17199:12;17192:19;;16997:220;;;:::o;17223:366::-;17365:3;17386:67;17450:2;17445:3;17386:67;:::i;:::-;17379:74;;17462:93;17551:3;17462:93;:::i;:::-;17580:2;17575:3;17571:12;17564:19;;17369:220;;;:::o;17595:366::-;17737:3;17758:67;17822:2;17817:3;17758:67;:::i;:::-;17751:74;;17834:93;17923:3;17834:93;:::i;:::-;17952:2;17947:3;17943:12;17936:19;;17741:220;;;:::o;17967:366::-;18109:3;18130:67;18194:2;18189:3;18130:67;:::i;:::-;18123:74;;18206:93;18295:3;18206:93;:::i;:::-;18324:2;18319:3;18315:12;18308:19;;18113:220;;;:::o;18339:366::-;18481:3;18502:67;18566:2;18561:3;18502:67;:::i;:::-;18495:74;;18578:93;18667:3;18578:93;:::i;:::-;18696:2;18691:3;18687:12;18680:19;;18485:220;;;:::o;18711:366::-;18853:3;18874:67;18938:2;18933:3;18874:67;:::i;:::-;18867:74;;18950:93;19039:3;18950:93;:::i;:::-;19068:2;19063:3;19059:12;19052:19;;18857:220;;;:::o;19083:366::-;19225:3;19246:67;19310:2;19305:3;19246:67;:::i;:::-;19239:74;;19322:93;19411:3;19322:93;:::i;:::-;19440:2;19435:3;19431:12;19424:19;;19229:220;;;:::o;19455:366::-;19597:3;19618:67;19682:2;19677:3;19618:67;:::i;:::-;19611:74;;19694:93;19783:3;19694:93;:::i;:::-;19812:2;19807:3;19803:12;19796:19;;19601:220;;;:::o;19827:366::-;19969:3;19990:67;20054:2;20049:3;19990:67;:::i;:::-;19983:74;;20066:93;20155:3;20066:93;:::i;:::-;20184:2;20179:3;20175:12;20168:19;;19973:220;;;:::o;20199:118::-;20286:24;20304:5;20286:24;:::i;:::-;20281:3;20274:37;20264:53;;:::o;20323:256::-;20435:3;20450:75;20521:3;20512:6;20450:75;:::i;:::-;20550:2;20545:3;20541:12;20534:19;;20570:3;20563:10;;20439:140;;;;:::o;20585:397::-;20725:3;20740:75;20811:3;20802:6;20740:75;:::i;:::-;20840:2;20835:3;20831:12;20824:19;;20853:75;20924:3;20915:6;20853:75;:::i;:::-;20953:2;20948:3;20944:12;20937:19;;20973:3;20966:10;;20729:253;;;;;:::o;20988:595::-;21216:3;21238:95;21329:3;21320:6;21238:95;:::i;:::-;21231:102;;21350:95;21441:3;21432:6;21350:95;:::i;:::-;21343:102;;21462:95;21553:3;21544:6;21462:95;:::i;:::-;21455:102;;21574:3;21567:10;;21220:363;;;;;;:::o;21589:222::-;21682:4;21720:2;21709:9;21705:18;21697:26;;21733:71;21801:1;21790:9;21786:17;21777:6;21733:71;:::i;:::-;21687:124;;;;:::o;21817:640::-;22012:4;22050:3;22039:9;22035:19;22027:27;;22064:71;22132:1;22121:9;22117:17;22108:6;22064:71;:::i;:::-;22145:72;22213:2;22202:9;22198:18;22189:6;22145:72;:::i;:::-;22227;22295:2;22284:9;22280:18;22271:6;22227:72;:::i;:::-;22346:9;22340:4;22336:20;22331:2;22320:9;22316:18;22309:48;22374:76;22445:4;22436:6;22374:76;:::i;:::-;22366:84;;22017:440;;;;;;;:::o;22463:210::-;22550:4;22588:2;22577:9;22573:18;22565:26;;22601:65;22663:1;22652:9;22648:17;22639:6;22601:65;:::i;:::-;22555:118;;;;:::o;22679:313::-;22792:4;22830:2;22819:9;22815:18;22807:26;;22879:9;22873:4;22869:20;22865:1;22854:9;22850:17;22843:47;22907:78;22980:4;22971:6;22907:78;:::i;:::-;22899:86;;22797:195;;;;:::o;22998:419::-;23164:4;23202:2;23191:9;23187:18;23179:26;;23251:9;23245:4;23241:20;23237:1;23226:9;23222:17;23215:47;23279:131;23405:4;23279:131;:::i;:::-;23271:139;;23169:248;;;:::o;23423:419::-;23589:4;23627:2;23616:9;23612:18;23604:26;;23676:9;23670:4;23666:20;23662:1;23651:9;23647:17;23640:47;23704:131;23830:4;23704:131;:::i;:::-;23696:139;;23594:248;;;:::o;23848:419::-;24014:4;24052:2;24041:9;24037:18;24029:26;;24101:9;24095:4;24091:20;24087:1;24076:9;24072:17;24065:47;24129:131;24255:4;24129:131;:::i;:::-;24121:139;;24019:248;;;:::o;24273:419::-;24439:4;24477:2;24466:9;24462:18;24454:26;;24526:9;24520:4;24516:20;24512:1;24501:9;24497:17;24490:47;24554:131;24680:4;24554:131;:::i;:::-;24546:139;;24444:248;;;:::o;24698:419::-;24864:4;24902:2;24891:9;24887:18;24879:26;;24951:9;24945:4;24941:20;24937:1;24926:9;24922:17;24915:47;24979:131;25105:4;24979:131;:::i;:::-;24971:139;;24869:248;;;:::o;25123:419::-;25289:4;25327:2;25316:9;25312:18;25304:26;;25376:9;25370:4;25366:20;25362:1;25351:9;25347:17;25340:47;25404:131;25530:4;25404:131;:::i;:::-;25396:139;;25294:248;;;:::o;25548:419::-;25714:4;25752:2;25741:9;25737:18;25729:26;;25801:9;25795:4;25791:20;25787:1;25776:9;25772:17;25765:47;25829:131;25955:4;25829:131;:::i;:::-;25821:139;;25719:248;;;:::o;25973:419::-;26139:4;26177:2;26166:9;26162:18;26154:26;;26226:9;26220:4;26216:20;26212:1;26201:9;26197:17;26190:47;26254:131;26380:4;26254:131;:::i;:::-;26246:139;;26144:248;;;:::o;26398:419::-;26564:4;26602:2;26591:9;26587:18;26579:26;;26651:9;26645:4;26641:20;26637:1;26626:9;26622:17;26615:47;26679:131;26805:4;26679:131;:::i;:::-;26671:139;;26569:248;;;:::o;26823:419::-;26989:4;27027:2;27016:9;27012:18;27004:26;;27076:9;27070:4;27066:20;27062:1;27051:9;27047:17;27040:47;27104:131;27230:4;27104:131;:::i;:::-;27096:139;;26994:248;;;:::o;27248:419::-;27414:4;27452:2;27441:9;27437:18;27429:26;;27501:9;27495:4;27491:20;27487:1;27476:9;27472:17;27465:47;27529:131;27655:4;27529:131;:::i;:::-;27521:139;;27419:248;;;:::o;27673:419::-;27839:4;27877:2;27866:9;27862:18;27854:26;;27926:9;27920:4;27916:20;27912:1;27901:9;27897:17;27890:47;27954:131;28080:4;27954:131;:::i;:::-;27946:139;;27844:248;;;:::o;28098:419::-;28264:4;28302:2;28291:9;28287:18;28279:26;;28351:9;28345:4;28341:20;28337:1;28326:9;28322:17;28315:47;28379:131;28505:4;28379:131;:::i;:::-;28371:139;;28269:248;;;:::o;28523:419::-;28689:4;28727:2;28716:9;28712:18;28704:26;;28776:9;28770:4;28766:20;28762:1;28751:9;28747:17;28740:47;28804:131;28930:4;28804:131;:::i;:::-;28796:139;;28694:248;;;:::o;28948:419::-;29114:4;29152:2;29141:9;29137:18;29129:26;;29201:9;29195:4;29191:20;29187:1;29176:9;29172:17;29165:47;29229:131;29355:4;29229:131;:::i;:::-;29221:139;;29119:248;;;:::o;29373:419::-;29539:4;29577:2;29566:9;29562:18;29554:26;;29626:9;29620:4;29616:20;29612:1;29601:9;29597:17;29590:47;29654:131;29780:4;29654:131;:::i;:::-;29646:139;;29544:248;;;:::o;29798:419::-;29964:4;30002:2;29991:9;29987:18;29979:26;;30051:9;30045:4;30041:20;30037:1;30026:9;30022:17;30015:47;30079:131;30205:4;30079:131;:::i;:::-;30071:139;;29969:248;;;:::o;30223:419::-;30389:4;30427:2;30416:9;30412:18;30404:26;;30476:9;30470:4;30466:20;30462:1;30451:9;30447:17;30440:47;30504:131;30630:4;30504:131;:::i;:::-;30496:139;;30394:248;;;:::o;30648:419::-;30814:4;30852:2;30841:9;30837:18;30829:26;;30901:9;30895:4;30891:20;30887:1;30876:9;30872:17;30865:47;30929:131;31055:4;30929:131;:::i;:::-;30921:139;;30819:248;;;:::o;31073:419::-;31239:4;31277:2;31266:9;31262:18;31254:26;;31326:9;31320:4;31316:20;31312:1;31301:9;31297:17;31290:47;31354:131;31480:4;31354:131;:::i;:::-;31346:139;;31244:248;;;:::o;31498:419::-;31664:4;31702:2;31691:9;31687:18;31679:26;;31751:9;31745:4;31741:20;31737:1;31726:9;31722:17;31715:47;31779:131;31905:4;31779:131;:::i;:::-;31771:139;;31669:248;;;:::o;31923:419::-;32089:4;32127:2;32116:9;32112:18;32104:26;;32176:9;32170:4;32166:20;32162:1;32151:9;32147:17;32140:47;32204:131;32330:4;32204:131;:::i;:::-;32196:139;;32094:248;;;:::o;32348:419::-;32514:4;32552:2;32541:9;32537:18;32529:26;;32601:9;32595:4;32591:20;32587:1;32576:9;32572:17;32565:47;32629:131;32755:4;32629:131;:::i;:::-;32621:139;;32519:248;;;:::o;32773:419::-;32939:4;32977:2;32966:9;32962:18;32954:26;;33026:9;33020:4;33016:20;33012:1;33001:9;32997:17;32990:47;33054:131;33180:4;33054:131;:::i;:::-;33046:139;;32944:248;;;:::o;33198:419::-;33364:4;33402:2;33391:9;33387:18;33379:26;;33451:9;33445:4;33441:20;33437:1;33426:9;33422:17;33415:47;33479:131;33605:4;33479:131;:::i;:::-;33471:139;;33369:248;;;:::o;33623:419::-;33789:4;33827:2;33816:9;33812:18;33804:26;;33876:9;33870:4;33866:20;33862:1;33851:9;33847:17;33840:47;33904:131;34030:4;33904:131;:::i;:::-;33896:139;;33794:248;;;:::o;34048:419::-;34214:4;34252:2;34241:9;34237:18;34229:26;;34301:9;34295:4;34291:20;34287:1;34276:9;34272:17;34265:47;34329:131;34455:4;34329:131;:::i;:::-;34321:139;;34219:248;;;:::o;34473:419::-;34639:4;34677:2;34666:9;34662:18;34654:26;;34726:9;34720:4;34716:20;34712:1;34701:9;34697:17;34690:47;34754:131;34880:4;34754:131;:::i;:::-;34746:139;;34644:248;;;:::o;34898:419::-;35064:4;35102:2;35091:9;35087:18;35079:26;;35151:9;35145:4;35141:20;35137:1;35126:9;35122:17;35115:47;35179:131;35305:4;35179:131;:::i;:::-;35171:139;;35069:248;;;:::o;35323:222::-;35416:4;35454:2;35443:9;35439:18;35431:26;;35467:71;35535:1;35524:9;35520:17;35511:6;35467:71;:::i;:::-;35421:124;;;;:::o;35551:129::-;35585:6;35612:20;;:::i;:::-;35602:30;;35641:33;35669:4;35661:6;35641:33;:::i;:::-;35592:88;;;:::o;35686:75::-;35719:6;35752:2;35746:9;35736:19;;35726:35;:::o;35767:307::-;35828:4;35918:18;35910:6;35907:30;35904:2;;;35940:18;;:::i;:::-;35904:2;35978:29;36000:6;35978:29;:::i;:::-;35970:37;;36062:4;36056;36052:15;36044:23;;35833:241;;;:::o;36080:308::-;36142:4;36232:18;36224:6;36221:30;36218:2;;;36254:18;;:::i;:::-;36218:2;36292:29;36314:6;36292:29;:::i;:::-;36284:37;;36376:4;36370;36366:15;36358:23;;36147:241;;;:::o;36394:98::-;36445:6;36479:5;36473:12;36463:22;;36452:40;;;:::o;36498:99::-;36550:6;36584:5;36578:12;36568:22;;36557:40;;;:::o;36603:168::-;36686:11;36720:6;36715:3;36708:19;36760:4;36755:3;36751:14;36736:29;;36698:73;;;;:::o;36777:169::-;36861:11;36895:6;36890:3;36883:19;36935:4;36930:3;36926:14;36911:29;;36873:73;;;;:::o;36952:148::-;37054:11;37091:3;37076:18;;37066:34;;;;:::o;37106:305::-;37146:3;37165:20;37183:1;37165:20;:::i;:::-;37160:25;;37199:20;37217:1;37199:20;:::i;:::-;37194:25;;37353:1;37285:66;37281:74;37278:1;37275:81;37272:2;;;37359:18;;:::i;:::-;37272:2;37403:1;37400;37396:9;37389:16;;37150:261;;;;:::o;37417:185::-;37457:1;37474:20;37492:1;37474:20;:::i;:::-;37469:25;;37508:20;37526:1;37508:20;:::i;:::-;37503:25;;37547:1;37537:2;;37552:18;;:::i;:::-;37537:2;37594:1;37591;37587:9;37582:14;;37459:143;;;;:::o;37608:348::-;37648:7;37671:20;37689:1;37671:20;:::i;:::-;37666:25;;37705:20;37723:1;37705:20;:::i;:::-;37700:25;;37893:1;37825:66;37821:74;37818:1;37815:81;37810:1;37803:9;37796:17;37792:105;37789:2;;;37900:18;;:::i;:::-;37789:2;37948:1;37945;37941:9;37930:20;;37656:300;;;;:::o;37962:191::-;38002:4;38022:20;38040:1;38022:20;:::i;:::-;38017:25;;38056:20;38074:1;38056:20;:::i;:::-;38051:25;;38095:1;38092;38089:8;38086:2;;;38100:18;;:::i;:::-;38086:2;38145:1;38142;38138:9;38130:17;;38007:146;;;;:::o;38159:96::-;38196:7;38225:24;38243:5;38225:24;:::i;:::-;38214:35;;38204:51;;;:::o;38261:90::-;38295:7;38338:5;38331:13;38324:21;38313:32;;38303:48;;;:::o;38357:77::-;38394:7;38423:5;38412:16;;38402:32;;;:::o;38440:149::-;38476:7;38516:66;38509:5;38505:78;38494:89;;38484:105;;;:::o;38595:126::-;38632:7;38672:42;38665:5;38661:54;38650:65;;38640:81;;;:::o;38727:77::-;38764:7;38793:5;38782:16;;38772:32;;;:::o;38810:154::-;38894:6;38889:3;38884;38871:30;38956:1;38947:6;38942:3;38938:16;38931:27;38861:103;;;:::o;38970:307::-;39038:1;39048:113;39062:6;39059:1;39056:13;39048:113;;;39147:1;39142:3;39138:11;39132:18;39128:1;39123:3;39119:11;39112:39;39084:2;39081:1;39077:10;39072:15;;39048:113;;;39179:6;39176:1;39173:13;39170:2;;;39259:1;39250:6;39245:3;39241:16;39234:27;39170:2;39019:258;;;;:::o;39283:320::-;39327:6;39364:1;39358:4;39354:12;39344:22;;39411:1;39405:4;39401:12;39432:18;39422:2;;39488:4;39480:6;39476:17;39466:27;;39422:2;39550;39542:6;39539:14;39519:18;39516:38;39513:2;;;39569:18;;:::i;:::-;39513:2;39334:269;;;;:::o;39609:281::-;39692:27;39714:4;39692:27;:::i;:::-;39684:6;39680:40;39822:6;39810:10;39807:22;39786:18;39774:10;39771:34;39768:62;39765:2;;;39833:18;;:::i;:::-;39765:2;39873:10;39869:2;39862:22;39652:238;;;:::o;39896:233::-;39935:3;39958:24;39976:5;39958:24;:::i;:::-;39949:33;;40004:66;39997:5;39994:77;39991:2;;;40074:18;;:::i;:::-;39991:2;40121:1;40114:5;40110:13;40103:20;;39939:190;;;:::o;40135:100::-;40174:7;40203:26;40223:5;40203:26;:::i;:::-;40192:37;;40182:53;;;:::o;40241:79::-;40280:7;40309:5;40298:16;;40288:32;;;:::o;40326:94::-;40365:7;40394:20;40408:5;40394:20;:::i;:::-;40383:31;;40373:47;;;:::o;40426:176::-;40458:1;40475:20;40493:1;40475:20;:::i;:::-;40470:25;;40509:20;40527:1;40509:20;:::i;:::-;40504:25;;40548:1;40538:2;;40553:18;;:::i;:::-;40538:2;40594:1;40591;40587:9;40582:14;;40460:142;;;;:::o;40608:180::-;40656:77;40653:1;40646:88;40753:4;40750:1;40743:15;40777:4;40774:1;40767:15;40794:180;40842:77;40839:1;40832:88;40939:4;40936:1;40929:15;40963:4;40960:1;40953:15;40980:180;41028:77;41025:1;41018:88;41125:4;41122:1;41115:15;41149:4;41146:1;41139:15;41166:180;41214:77;41211:1;41204:88;41311:4;41308:1;41301:15;41335:4;41332:1;41325:15;41352:102;41393:6;41444:2;41440:7;41435:2;41428:5;41424:14;41420:28;41410:38;;41400:54;;;:::o;41460:94::-;41493:8;41541:5;41537:2;41533:14;41512:35;;41502:52;;;:::o;41560:221::-;41700:34;41696:1;41688:6;41684:14;41677:58;41769:4;41764:2;41756:6;41752:15;41745:29;41666:115;:::o;41787:225::-;41927:34;41923:1;41915:6;41911:14;41904:58;41996:8;41991:2;41983:6;41979:15;41972:33;41893:119;:::o;42018:229::-;42158:34;42154:1;42146:6;42142:14;42135:58;42227:12;42222:2;42214:6;42210:15;42203:37;42124:123;:::o;42253:225::-;42393:34;42389:1;42381:6;42377:14;42370:58;42462:8;42457:2;42449:6;42445:15;42438:33;42359:119;:::o;42484:222::-;42624:34;42620:1;42612:6;42608:14;42601:58;42693:5;42688:2;42680:6;42676:15;42669:30;42590:116;:::o;42712:224::-;42852:34;42848:1;42840:6;42836:14;42829:58;42921:7;42916:2;42908:6;42904:15;42897:32;42818:118;:::o;42942:236::-;43082:34;43078:1;43070:6;43066:14;43059:58;43151:19;43146:2;43138:6;43134:15;43127:44;43048:130;:::o;43184:244::-;43324:34;43320:1;43312:6;43308:14;43301:58;43393:27;43388:2;43380:6;43376:15;43369:52;43290:138;:::o;43434:182::-;43574:34;43570:1;43562:6;43558:14;43551:58;43540:76;:::o;43622:230::-;43762:34;43758:1;43750:6;43746:14;43739:58;43831:13;43826:2;43818:6;43814:15;43807:38;43728:124;:::o;43858:177::-;43998:29;43994:1;43986:6;43982:14;43975:53;43964:71;:::o;44041:176::-;44181:28;44177:1;44169:6;44165:14;44158:52;44147:70;:::o;44223:225::-;44363:34;44359:1;44351:6;44347:14;44340:58;44432:8;44427:2;44419:6;44415:15;44408:33;44329:119;:::o;44454:182::-;44594:34;44590:1;44582:6;44578:14;44571:58;44560:76;:::o;44642:234::-;44782:34;44778:1;44770:6;44766:14;44759:58;44851:17;44846:2;44838:6;44834:15;44827:42;44748:128;:::o;44882:176::-;45022:28;45018:1;45010:6;45006:14;44999:52;44988:70;:::o;45064:237::-;45204:34;45200:1;45192:6;45188:14;45181:58;45273:20;45268:2;45260:6;45256:15;45249:45;45170:131;:::o;45307:229::-;45447:34;45443:1;45435:6;45431:14;45424:58;45516:12;45511:2;45503:6;45499:15;45492:37;45413:123;:::o;45542:220::-;45682:34;45678:1;45670:6;45666:14;45659:58;45751:3;45746:2;45738:6;45734:15;45727:28;45648:114;:::o;45768:221::-;45908:34;45904:1;45896:6;45892:14;45885:58;45977:4;45972:2;45964:6;45960:15;45953:29;45874:115;:::o;45995:168::-;46135:20;46131:1;46123:6;46119:14;46112:44;46101:62;:::o;46169:238::-;46309:34;46305:1;46297:6;46293:14;46286:58;46378:21;46373:2;46365:6;46361:15;46354:46;46275:132;:::o;46413:220::-;46553:34;46549:1;46541:6;46537:14;46530:58;46622:3;46617:2;46609:6;46605:15;46598:28;46519:114;:::o;46639:181::-;46779:33;46775:1;46767:6;46763:14;46756:57;46745:75;:::o;46826:227::-;46966:34;46962:1;46954:6;46950:14;46943:58;47035:10;47030:2;47022:6;47018:15;47011:35;46932:121;:::o;47059:233::-;47199:34;47195:1;47187:6;47183:14;47176:58;47268:16;47263:2;47255:6;47251:15;47244:41;47165:127;:::o;47298:234::-;47438:34;47434:1;47426:6;47422:14;47415:58;47507:17;47502:2;47494:6;47490:15;47483:42;47404:128;:::o;47538:232::-;47678:34;47674:1;47666:6;47662:14;47655:58;47747:15;47742:2;47734:6;47730:15;47723:40;47644:126;:::o;47776:171::-;47916:23;47912:1;47904:6;47900:14;47893:47;47882:65;:::o;47953:122::-;48026:24;48044:5;48026:24;:::i;:::-;48019:5;48016:35;48006:2;;48065:1;48062;48055:12;48006:2;47996:79;:::o;48081:116::-;48151:21;48166:5;48151:21;:::i;:::-;48144:5;48141:32;48131:2;;48187:1;48184;48177:12;48131:2;48121:76;:::o;48203:122::-;48276:24;48294:5;48276:24;:::i;:::-;48269:5;48266:35;48256:2;;48315:1;48312;48305:12;48256:2;48246:79;:::o;48331:120::-;48403:23;48420:5;48403:23;:::i;:::-;48396:5;48393:34;48383:2;;48441:1;48438;48431:12;48383:2;48373:78;:::o;48457:122::-;48530:24;48548:5;48530:24;:::i;:::-;48523:5;48520:35;48510:2;;48569:1;48566;48559:12;48510:2;48500:79;:::o

Swarm Source

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