ETH Price: $3,361.05 (-0.67%)
Gas: 1 Gwei

Token

Sui Punks (SUIP)
 

Overview

Max Total Supply

2,992 SUIP

Holders

1,110

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Filtered by Token Holder
illuminaticongo.eth
Balance
1 SUIP
0x857D5884FC42CEa646bD62Cc84F806aEB9a2AE6F
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

SuiPunks PFPs that proves you are one of the OGs in the Sui Blockchain. The First NFT Collection on Sui.

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
SuiPunks

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity Multiple files format)

File 15 of 15: SuiPunks.sol
// SPDX-License-Identifier: MIT
/*

                     /$$                                     /$$                
                    |__/                                    | $$                
  /$$$$$$$ /$$   /$$ /$$        /$$$$$$  /$$   /$$ /$$$$$$$ | $$   /$$  /$$$$$$$
 /$$_____/| $$  | $$| $$       /$$__  $$| $$  | $$| $$__  $$| $$  /$$/ /$$_____/
|  $$$$$$ | $$  | $$| $$      | $$  \ $$| $$  | $$| $$  \ $$| $$$$$$/ |  $$$$$$ 
 \____  $$| $$  | $$| $$      | $$  | $$| $$  | $$| $$  | $$| $$_  $$  \____  $$
 /$$$$$$$/|  $$$$$$/| $$      | $$$$$$$/|  $$$$$$/| $$  | $$| $$ \  $$ /$$$$$$$/
|_______/  \______/ |__/      | $$____/  \______/ |__/  |__/|__/  \__/|_______/ 
                              | $$                                              
                              | $$                                              
                              |__/                                              

*/                                    
                             

pragma solidity >=0.7.0 <0.9.0;

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

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

    uint256 public MAX_PAID_MINTS = 5;
    uint256 public MAX_WL_MINTS = 3;

    uint256 public WL_PRICE = 0.0075 ether;
    uint256 public PAID_PRICE = 0.015 ether;

    uint256 public PAID_SUPPLY = 993;
    uint256 public WL_SUPPLY = 1999;

    uint256 private WL_MINTED = 0;


    bool public publicSaleStarted = false;
    bool public wlSaleStarted = false;

    bool public revealed = false;

    bytes32 public whitelistMerkleRoot;

    mapping(address => uint256) private _mintedClaim;
    mapping(address => uint256) private _mintedMint;


    bytes32 public root;

    string public notRevealedUri = "notrevealeduri";

    // /baseURI will be changed before reveal
    string public baseURI = "revealeduri";



    constructor() ERC721A("Sui Punks", "SUIP") {
    }

    function toggleAllSales() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
        wlSaleStarted = !wlSaleStarted;

    }

    function togglePublicSaleStarted() external onlyOwner {
        publicSaleStarted = !publicSaleStarted;
    }

    function togglewlSaleStarted() external onlyOwner {
        wlSaleStarted = !wlSaleStarted;
    }

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

    function setnotRevealedUri(string memory _newnotRevealedURI) external onlyOwner {
        notRevealedUri = _newnotRevealedURI;
    }

    function setWlPrice(uint256 _newWlPrice) external onlyOwner {
        WL_PRICE = _newWlPrice * (1 ether);
    }

    function setmaxMints(uint256 _newmaxMints) external onlyOwner {
        MAX_PAID_MINTS = _newmaxMints;
    }

    function setmaxwlMints(uint256 _newmaxwlMints) external onlyOwner {
        MAX_WL_MINTS = _newmaxwlMints;
    }

    function setpaidSupply(uint256 _newPaidSupply) public onlyOwner {
	    PAID_SUPPLY = _newPaidSupply;
	}

    function setWLSupply(uint256 _newWLSupply) public onlyOwner {
	    WL_SUPPLY = _newWLSupply;
	}



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

    function howManyMintedMint(address account) public view returns (uint256) {
        return _mintedMint[account];
    }

    /// TokenURI Function

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

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

  /// Reveal Function
  function reveal() public onlyOwner {
      revealed = !revealed;
  }

    /// Normal Mint Functions
    function mint(uint256 tokens) external payable {
        if (howManyMintedMint(msg.sender)>= MAX_PAID_MINTS) revert("Amount exceeds claim limit");    
        require(publicSaleStarted, "Public sale has not started");
        require(totalSupply() + tokens <= (PAID_SUPPLY), "Minting would exceed max supply");
        require(tokens > 0, "Must mint at least one token");
        require(PAID_PRICE * tokens <= msg.value, "ETH amount is incorrect");
        _safeMint(_msgSender(), tokens);
        _mintedMint[msg.sender]+=tokens;

    }

    /// Wl Mint Functions

    function setRoot(bytes32 newroot) external onlyOwner {
        root = newroot;
    }
    
    function isValid(bytes32[] memory proof, bytes32 leaf) public view returns (bool) {
        return MerkleProof.verify(proof, root, leaf);
    }

    function wlMint(bytes32[] memory proof ,uint256 tokens)
        external
        payable
    {
        require(isValid(proof, keccak256(abi.encodePacked(msg.sender))), "Not a part of Allowlist");
        if (howManyMintedClaim(msg.sender)>= MAX_WL_MINTS) revert("Amount exceeds claim limit");
        if (!wlSaleStarted) revert("Sale not started");
        if (WL_MINTED + tokens > (WL_SUPPLY))
            revert("Amount exceeds supply");
        if (0 * 1 > msg.value)
            revert("Insufficient payment");

        _safeMint(msg.sender, tokens);
        WL_MINTED+=tokens;
        _mintedClaim[msg.sender]+=tokens;

    }

    function howManyMintedClaim(address account) public view returns (uint256) {
        return _mintedClaim[account];
    }

    /// Owner only mint function
    function ownerMint(address to, uint256 tokens) external onlyOwner {
        require(tokens > 0, "Must at least one token");
        _safeMint(to, tokens);
    }

    /// Withdraw function
    function withdrawAll() public onlyOwner {
        uint256 balance = address(this).balance;
        require(balance > 0, "Insufficent balance");
        _withdraw(_msgSender(), address(this).balance);
    }

    function _withdraw(address _address, uint256 _amount) private {
        (bool success, ) = _address.call{value: _amount}("");
        require(success, "Failed to withdraw Ether");
    }
}

File 1 of 15: Address.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (utils/Address.sol)

pragma solidity ^0.8.1;

/**
 * @dev Collection of functions related to the address type
 */
library Address {
    /**
     * @dev Returns true if `account` is a contract.
     *
     * [IMPORTANT]
     * ====
     * It is unsafe to assume that an address for which this function returns
     * false is an externally-owned account (EOA) and not a contract.
     *
     * Among others, `isContract` will return false for the following
     * types of addresses:
     *
     *  - an externally-owned account
     *  - a contract in construction
     *  - an address where a contract will be created
     *  - an address where a contract lived, but was destroyed
     * ====
     *
     * [IMPORTANT]
     * ====
     * You shouldn't rely on `isContract` to protect against flash loan attacks!
     *
     * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets
     * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract
     * constructor.
     * ====
     */
    function isContract(address account) internal view returns (bool) {
        // This method relies on extcodesize/address.code.length, which returns 0
        // for contracts in construction, since the code is only stored at the end
        // of the constructor execution.

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

File 2 of 15: 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 15: 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 15: ERC721A.sol
// SPDX-License-Identifier: MIT
// Creator: Chiru Labs

pragma solidity ^0.8.4;

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

error ApprovalCallerNotOwnerNorApproved();
error ApprovalQueryForNonexistentToken();
error ApproveToCaller();
error ApprovalToCurrentOwner();
error BalanceQueryForZeroAddress();
error MintedQueryForZeroAddress();
error BurnedQueryForZeroAddress();
error AuxQueryForZeroAddress();
error MintToZeroAddress();
error MintZeroQuantity();
error OwnerIndexOutOfBounds();
error OwnerQueryForNonexistentToken();
error TokenIndexOutOfBounds();
error TransferCallerNotOwnerNorApproved();
error TransferFromIncorrectOwner();
error TransferToNonERC721ReceiverImplementer();
error TransferToZeroAddress();
error URIQueryForNonexistentToken();

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

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

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

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721-balanceOf}.
     */
    function balanceOf(address owner) public view override returns (uint256) {
        if (owner == address(0)) revert BalanceQueryForZeroAddress();
        return uint256(_addressData[owner].balance);
    }

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

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC721Metadata-tokenURI}.
     */
    function tokenURI(uint256 tokenId)
        public
        view
        virtual
        override
        returns (string memory)
    {
        if (!_exists(tokenId)) revert URIQueryForNonexistentToken();

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

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

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

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

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (
            to.isContract() &&
            !_checkContractOnERC721Received(from, to, tokenId, _data)
        ) {
            revert TransferToNonERC721ReceiverImplementer();
        }
    }

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

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

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

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

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

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

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

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

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

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

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

        if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        if (prevOwnership.addr != from) revert TransferFromIncorrectOwner();
        if (to == address(0)) revert TransferToZeroAddress();

        _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)) {
                // This will suffice for checking _exists(nextTokenId),
                // as a burned slot cannot contain the zero address.
                if (nextTokenId < _currentIndex) {
                    _ownerships[nextTokenId].addr = prevOwnership.addr;
                    _ownerships[nextTokenId].startTimestamp = prevOwnership
                        .startTimestamp;
                }
            }
        }

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

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

        _beforeTokenTransfers(prevOwnership.addr, address(0), 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[prevOwnership.addr].balance -= 1;
            _addressData[prevOwnership.addr].numberBurned += 1;

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

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

        emit Transfer(prevOwnership.addr, address(0), tokenId);
        _afterTokenTransfers(prevOwnership.addr, address(0), tokenId, 1);

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

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

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

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

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

File 5 of 15: 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 15: 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 Resturns 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 15: 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 15: 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 15: 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 15: MerkleProof.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.5.0) (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 = _efficientHash(computedHash, proofElement);
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = _efficientHash(proofElement, computedHash);
            }
        }
        return computedHash;
    }

    function _efficientHash(bytes32 a, bytes32 b) private pure returns (bytes32 value) {
        assembly {
            mstore(0x00, a)
            mstore(0x20, b)
            value := keccak256(0x00, 0x40)
        }
    }
}

File 11 of 15: 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 15: ReentrancyGuard.sol
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

/**
 * @dev Contract module that helps prevent reentrant calls to a function.
 *
 * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier
 * available, which can be applied to functions to make sure there are no nested
 * (reentrant) calls to them.
 *
 * Note that because there is a single `nonReentrant` guard, functions marked as
 * `nonReentrant` may not call one another. This can be worked around by making
 * those functions `private`, and then adding `external` `nonReentrant` entry
 * points to them.
 *
 * TIP: If you would like to learn more about reentrancy and alternative ways
 * to protect against it, check out our blog post
 * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul].
 */
abstract contract ReentrancyGuard {
    // Booleans are more expensive than uint256 or any type that takes up a full
    // word because each write operation emits an extra SLOAD to first read the
    // slot's contents, replace the bits taken up by the boolean, and then write
    // back. This is the compiler's defense against contract upgrades and
    // pointer aliasing, and it cannot be disabled.

    // The values being non-zero value makes deployment a bit more expensive,
    // but in exchange the refund on every call to nonReentrant will be lower in
    // amount. Since refunds are capped to a percentage of the total
    // transaction's gas, it is best to keep them low in cases like this one, to
    // increase the likelihood of the full refund coming into effect.
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    /**
     * @dev Prevents a contract from calling itself, directly or indirectly.
     * Calling a `nonReentrant` function from another `nonReentrant`
     * function is not supported. It is possible to prevent this from happening
     * by making the `nonReentrant` function external, and making it call a
     * `private` function that does the actual work.
     */
    modifier nonReentrant() {
        // On the first call to nonReentrant, _notEntered will be true
        require(_status != _ENTERED, "ReentrancyGuard: reentrant call");

        // Any calls to nonReentrant after this point will fail
        _status = _ENTERED;

        _;

        // By storing the original value once again, a refund is triggered (see
        // https://eips.ethereum.org/EIPS/eip-2200)
        _status = _NOT_ENTERED;
    }
}

File 13 of 15: SafeMath.sol
// SPDX-License-Identifier: MIT

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 no longer needed starting with Solidity 0.8. 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 14 of 15: 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":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ApprovalCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"ApprovalQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"ApprovalToCurrentOwner","type":"error"},{"inputs":[],"name":"ApproveToCaller","type":"error"},{"inputs":[],"name":"BalanceQueryForZeroAddress","type":"error"},{"inputs":[],"name":"MintToZeroAddress","type":"error"},{"inputs":[],"name":"MintZeroQuantity","type":"error"},{"inputs":[],"name":"OwnerQueryForNonexistentToken","type":"error"},{"inputs":[],"name":"TransferCallerNotOwnerNorApproved","type":"error"},{"inputs":[],"name":"TransferFromIncorrectOwner","type":"error"},{"inputs":[],"name":"TransferToNonERC721ReceiverImplementer","type":"error"},{"inputs":[],"name":"TransferToZeroAddress","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MAX_PAID_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_WL_MINTS","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PAID_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"WL_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":"baseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"account","type":"address"}],"name":"howManyMintedClaim","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"howManyMintedMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"bytes32","name":"leaf","type":"bytes32"}],"name":"isValid","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"notRevealedUri","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":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"ownerMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"publicSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"reveal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"root","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"newroot","type":"bytes32"}],"name":"setRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWLSupply","type":"uint256"}],"name":"setWLSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newWlPrice","type":"uint256"}],"name":"setWlPrice","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxMints","type":"uint256"}],"name":"setmaxMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newmaxwlMints","type":"uint256"}],"name":"setmaxwlMints","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newnotRevealedURI","type":"string"}],"name":"setnotRevealedUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newPaidSupply","type":"uint256"}],"name":"setpaidSupply","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleAllSales","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglePublicSaleStarted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"togglewlSaleStarted","outputs":[],"stateMutability":"nonpayable","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":"whitelistMerkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdrawAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"proof","type":"bytes32[]"},{"internalType":"uint256","name":"tokens","type":"uint256"}],"name":"wlMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"wlSaleStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"}]

608060405260056009556003600a55661aa535d3d0c000600b5566354a6ba7a18000600c556103e1600d556107cf600e556000600f556000601060006101000a81548160ff0219169083151502179055506000601060016101000a81548160ff0219169083151502179055506000601060026101000a81548160ff0219169083151502179055506040518060400160405280600e81526020017f6e6f7472657665616c656475726900000000000000000000000000000000000081525060159080519060200190620000d3929190620002e3565b506040518060400160405280600b81526020017f72657665616c65647572690000000000000000000000000000000000000000008152506016908051906020019062000121929190620002e3565b503480156200012f57600080fd5b506040518060400160405280600981526020017f5375692050756e6b7300000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f53554950000000000000000000000000000000000000000000000000000000008152508160029080519060200190620001b4929190620002e3565b508060039080519060200190620001cd929190620002e3565b50620001de6200020c60201b60201c565b600081905550505062000206620001fa6200021560201b60201c565b6200021d60201b60201c565b620003f8565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002f19062000393565b90600052602060002090601f01602090048101928262000315576000855562000361565b82601f106200033057805160ff191683800117855562000361565b8280016001018555821562000361579182015b828111156200036057825182559160200191906001019062000343565b5b50905062000370919062000374565b5090565b5b808211156200038f57600081600090555060010162000375565b5090565b60006002820490506001821680620003ac57607f821691505b60208210811415620003c357620003c2620003c9565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b614c1780620004086000396000f3fe6080604052600436106102ae5760003560e01c80638da5cb5b11610175578063b8a20ed0116100dc578063dab5f34011610095578063e985e9c51161006f578063e985e9c514610a20578063ebf0c71714610a5d578063f2fde38b14610a88578063fe878b1d14610ab1576102ae565b8063dab5f340146109a3578063e5f4a76c146109cc578063e9048ff4146109e3576102ae565b8063b8a20ed01461086d578063c37b8362146108aa578063c87b56dd146108d5578063cce556e514610912578063cedd65231461093d578063d01fb98e14610966576102ae565b8063a22cb4651161012e578063a22cb46514610783578063a2e91477146107ac578063a475b5dd146107d7578063aa98e0c6146107ee578063afe2e1fa14610819578063b88d4fde14610844576102ae565b80638da5cb5b146106a85780638dd07d0f146106d357806395d89b41146106fc5780639a15207714610727578063a0712d6814610750578063a1a49abe1461076c576102ae565b80633948b8cc1161021957806355f804b3116101d257806355f804b3146105ac5780636352211e146105d55780636c0360eb1461061257806370a082311461063d578063715018a61461067a578063853828b614610691576102ae565b80633948b8cc146104b05780633b9c1bd1146104d957806342842e0e14610504578063484b973c1461052d57806348756e81146105565780635183022714610581576102ae565b806318160ddd1161026b57806318160ddd146103d55780631816ff3f1461040057806322f74bcb1461042957806323b872dd146104455780632f8145751461046e57806331c3c7a014610485576102ae565b80630188541d146102b357806301ffc9a7146102dc57806306fdde0314610319578063081812fc14610344578063081c8c4414610381578063095ea7b3146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613cbe565b610adc565b005b3480156102e857600080fd5b5061030360048036038101906102fe9190613c64565b610b72565b6040516103109190614143565b60405180910390f35b34801561032557600080fd5b5061032e610c54565b60405161033b9190614179565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613d07565b610ce6565b60405161037891906140dc565b60405180910390f35b34801561038d57600080fd5b50610396610d62565b6040516103a39190614179565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190613b3f565b610df0565b005b3480156103e157600080fd5b506103ea610efb565b6040516103f7919061437b565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613d07565b610f12565b005b610443600480360381019061043e9190613bdb565b610f98565b005b34801561045157600080fd5b5061046c60048036038101906104679190613a29565b6111b5565b005b34801561047a57600080fd5b506104836111c5565b005b34801561049157600080fd5b5061049a61126d565b6040516104a7919061437b565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613d07565b611273565b005b3480156104e557600080fd5b506104ee6112f9565b6040516104fb919061437b565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613a29565b6112ff565b005b34801561053957600080fd5b50610554600480360381019061054f9190613b3f565b61131f565b005b34801561056257600080fd5b5061056b6113ec565b604051610578919061437b565b60405180910390f35b34801561058d57600080fd5b506105966113f2565b6040516105a39190614143565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613cbe565b611405565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613d07565b6114b6565b60405161060991906140dc565b60405180910390f35b34801561061e57600080fd5b506106276114cc565b6040516106349190614179565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906139bc565b61155a565b604051610671919061437b565b60405180910390f35b34801561068657600080fd5b5061068f61162a565b005b34801561069d57600080fd5b506106a66116b2565b005b3480156106b457600080fd5b506106bd61178a565b6040516106ca91906140dc565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613d07565b6117b4565b005b34801561070857600080fd5b5061071161184d565b60405161071e9190614179565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190613d07565b6118df565b005b61076a60048036038101906107659190613d07565b611965565b005b34801561077857600080fd5b50610781611b54565b005b34801561078f57600080fd5b506107aa60048036038101906107a59190613aff565b611bfc565b005b3480156107b857600080fd5b506107c1611d74565b6040516107ce9190614143565b60405180910390f35b3480156107e357600080fd5b506107ec611d87565b005b3480156107fa57600080fd5b50610803611e2f565b604051610810919061415e565b60405180910390f35b34801561082557600080fd5b5061082e611e35565b60405161083b919061437b565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190613a7c565b611e3b565b005b34801561087957600080fd5b50610894600480360381019061088f9190613b7f565b611eb7565b6040516108a19190614143565b60405180910390f35b3480156108b657600080fd5b506108bf611ece565b6040516108cc919061437b565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613d07565b611ed4565b6040516109099190614179565b60405180910390f35b34801561091e57600080fd5b5061092761202a565b6040516109349190614143565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613d07565b61203d565b005b34801561097257600080fd5b5061098d600480360381019061098891906139bc565b6120c3565b60405161099a919061437b565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613c37565b61210c565b005b3480156109d857600080fd5b506109e1612192565b005b3480156109ef57600080fd5b50610a0a6004803603810190610a0591906139bc565b612264565b604051610a17919061437b565b60405180910390f35b348015610a2c57600080fd5b50610a476004803603810190610a4291906139e9565b6122ad565b604051610a549190614143565b60405180910390f35b348015610a6957600080fd5b50610a72612341565b604051610a7f919061415e565b60405180910390f35b348015610a9457600080fd5b50610aaf6004803603810190610aaa91906139bc565b612347565b005b348015610abd57600080fd5b50610ac661243f565b604051610ad3919061437b565b60405180910390f35b610ae4612445565b73ffffffffffffffffffffffffffffffffffffffff16610b0261178a565b73ffffffffffffffffffffffffffffffffffffffff1614610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f906142db565b60405180910390fd5b8060159080519060200190610b6e9291906136da565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c4d5750610c4c8261244d565b5b9050919050565b606060028054610c639061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8f9061466c565b8015610cdc5780601f10610cb157610100808354040283529160200191610cdc565b820191906000526020600020905b815481529060010190602001808311610cbf57829003601f168201915b5050505050905090565b6000610cf1826124b7565b610d27576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60158054610d6f9061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9b9061466c565b8015610de85780601f10610dbd57610100808354040283529160200191610de8565b820191906000526020600020905b815481529060010190602001808311610dcb57829003601f168201915b505050505081565b6000610dfb826114b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e82612445565b73ffffffffffffffffffffffffffffffffffffffff1614158015610eb45750610eb281610ead612445565b6122ad565b155b15610eeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ef6838383612505565b505050565b6000610f056125b7565b6001546000540303905090565b610f1a612445565b73ffffffffffffffffffffffffffffffffffffffff16610f3861178a565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f85906142db565b60405180910390fd5b80600d8190555050565b610fc88233604051602001610fad919061407d565b60405160208183030381529060405280519060200120611eb7565b611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe9061423b565b60405180910390fd5b600a5461101333612264565b10611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a9061435b565b60405180910390fd5b601060019054906101000a900460ff166110a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611099906141fb565b60405180910390fd5b600e5481600f546110b39190614497565b11156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9061425b565b60405180910390fd5b3460001115611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f9061427b565b60405180910390fd5b61114233826125c0565b80600f60008282546111549190614497565b9250508190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111aa9190614497565b925050819055505050565b6111c08383836125de565b505050565b6111cd612445565b73ffffffffffffffffffffffffffffffffffffffff166111eb61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906142db565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600b5481565b61127b612445565b73ffffffffffffffffffffffffffffffffffffffff1661129961178a565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906142db565b60405180910390fd5b80600e8190555050565b600a5481565b61131a83838360405180602001604052806000815250611e3b565b505050565b611327612445565b73ffffffffffffffffffffffffffffffffffffffff1661134561178a565b73ffffffffffffffffffffffffffffffffffffffff161461139b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611392906142db565b60405180910390fd5b600081116113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d59061419b565b60405180910390fd5b6113e882826125c0565b5050565b60095481565b601060029054906101000a900460ff1681565b61140d612445565b73ffffffffffffffffffffffffffffffffffffffff1661142b61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906142db565b60405180910390fd5b80601690805190602001906114979291906136da565b506001601060026101000a81548160ff02191690831515021790555050565b60006114c182612acf565b600001519050919050565b601680546114d99061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546115059061466c565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611632612445565b73ffffffffffffffffffffffffffffffffffffffff1661165061178a565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d906142db565b60405180910390fd5b6116b06000612d5e565b565b6116ba612445565b73ffffffffffffffffffffffffffffffffffffffff166116d861178a565b73ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906142db565b60405180910390fd5b600047905060008111611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906142bb565b60405180910390fd5b611787611781612445565b47612e24565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117bc612445565b73ffffffffffffffffffffffffffffffffffffffff166117da61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611830576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611827906142db565b60405180910390fd5b670de0b6b3a764000081611844919061451e565b600b8190555050565b60606003805461185c9061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546118889061466c565b80156118d55780601f106118aa576101008083540402835291602001916118d5565b820191906000526020600020905b8154815290600101906020018083116118b857829003601f168201915b5050505050905090565b6118e7612445565b73ffffffffffffffffffffffffffffffffffffffff1661190561178a565b73ffffffffffffffffffffffffffffffffffffffff161461195b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611952906142db565b60405180910390fd5b8060098190555050565b600954611971336120c3565b106119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a89061435b565b60405180910390fd5b601060009054906101000a900460ff16611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f7906141db565b60405180910390fd5b600d5481611a0c610efb565b611a169190614497565b1115611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e9061421b565b60405180910390fd5b60008111611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a919061431b565b60405180910390fd5b3481600c54611aa9919061451e565b1115611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae19061429b565b60405180910390fd5b611afb611af5612445565b826125c0565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4a9190614497565b9250508190555050565b611b5c612445565b73ffffffffffffffffffffffffffffffffffffffff16611b7a61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc7906142db565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611c04612445565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c69576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c76612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d23612445565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d689190614143565b60405180910390a35050565b601060009054906101000a900460ff1681565b611d8f612445565b73ffffffffffffffffffffffffffffffffffffffff16611dad61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906142db565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b60115481565b600e5481565b611e468484846125de565b611e658373ffffffffffffffffffffffffffffffffffffffff16612ed5565b8015611e7a5750611e7884848484612ef8565b155b15611eb1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611ec68360145484613058565b905092915050565b600c5481565b6060611edf826124b7565b611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f15906142fb565b60405180910390fd5b60001515601060029054906101000a900460ff1615151415611fcc5760158054611f479061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f739061466c565b8015611fc05780601f10611f9557610100808354040283529160200191611fc0565b820191906000526020600020905b815481529060010190602001808311611fa357829003601f168201915b50505050509050612025565b6000611fd661306f565b90506000815111611ff65760405180602001604052806000815250612021565b8061200084613101565b604051602001612011929190614098565b6040516020818303038152906040525b9150505b919050565b601060019054906101000a900460ff1681565b612045612445565b73ffffffffffffffffffffffffffffffffffffffff1661206361178a565b73ffffffffffffffffffffffffffffffffffffffff16146120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b0906142db565b60405180910390fd5b80600a8190555050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612114612445565b73ffffffffffffffffffffffffffffffffffffffff1661213261178a565b73ffffffffffffffffffffffffffffffffffffffff1614612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f906142db565b60405180910390fd5b8060148190555050565b61219a612445565b73ffffffffffffffffffffffffffffffffffffffff166121b861178a565b73ffffffffffffffffffffffffffffffffffffffff161461220e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612205906142db565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60145481565b61234f612445565b73ffffffffffffffffffffffffffffffffffffffff1661236d61178a565b73ffffffffffffffffffffffffffffffffffffffff16146123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba906142db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a906141bb565b60405180910390fd5b61243c81612d5e565b50565b600d5481565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816124c26125b7565b111580156124d1575060005482105b80156124fe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6125da828260405180602001604052806000815250613262565b5050565b60006125e982612acf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612610612445565b73ffffffffffffffffffffffffffffffffffffffff1614806126435750612642826000015161263d612445565b6122ad565b5b806126885750612651612445565b73ffffffffffffffffffffffffffffffffffffffff1661267084610ce6565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461272a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612791576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61279e8585856001613274565b6127ae6000848460000151612505565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a5f57600054811015612a5e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ac8858585600161327a565b5050505050565b612ad7613760565b600082905080612ae56125b7565b11158015612af4575060005481105b15612d27576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612d2557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c09578092505050612d59565b5b600115612d2457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d1f578092505050612d59565b612c0a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612e4a906140c7565b60006040518083038185875af1925050503d8060008114612e87576040519150601f19603f3d011682016040523d82523d6000602084013e612e8c565b606091505b5050905080612ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec79061433b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f1e612445565b8786866040518563ffffffff1660e01b8152600401612f4094939291906140f7565b602060405180830381600087803b158015612f5a57600080fd5b505af1925050508015612f8b57506040513d601f19601f82011682018060405250810190612f889190613c91565b60015b613005573d8060008114612fbb576040519150601f19603f3d011682016040523d82523d6000602084013e612fc0565b606091505b50600081511415612ffd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000826130658584613280565b1490509392505050565b60606016805461307e9061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546130aa9061466c565b80156130f75780601f106130cc576101008083540402835291602001916130f7565b820191906000526020600020905b8154815290600101906020018083116130da57829003601f168201915b5050505050905090565b60606000821415613149576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061325d565b600082905060005b6000821461317b578080613164906146cf565b915050600a8261317491906144ed565b9150613151565b60008167ffffffffffffffff81111561319757613196614829565b5b6040519080825280601f01601f1916602001820160405280156131c95781602001600182028036833780820191505090505b5090505b60008514613256576001826131e29190614578565b9150600a856131f1919061473c565b60306131fd9190614497565b60f81b818381518110613213576132126147fa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561324f91906144ed565b94506131cd565b8093505050505b919050565b61326f83838360016132f5565b505050565b50505050565b50505050565b60008082905060005b84518110156132ea5760008582815181106132a7576132a66147fa565b5b602002602001015190508083116132c9576132c283826136c3565b92506132d6565b6132d381846136c3565b92505b5080806132e2906146cf565b915050613289565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613362576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561339d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133aa6000868387613274565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561357457506135738773ffffffffffffffffffffffffffffffffffffffff16612ed5565b5b1561363a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135e96000888480600101955088612ef8565b61361f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561357a57826000541461363557600080fd5b6136a6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561363b575b8160008190555050506136bc600086838761327a565b5050505050565b600082600052816020526040600020905092915050565b8280546136e69061466c565b90600052602060002090601f016020900481019282613708576000855561374f565b82601f1061372157805160ff191683800117855561374f565b8280016001018555821561374f579182015b8281111561374e578251825591602001919060010190613733565b5b50905061375c91906137a3565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156137bc5760008160009055506001016137a4565b5090565b60006137d36137ce846143bb565b614396565b905080838252602082019050828560208602820111156137f6576137f561485d565b5b60005b85811015613826578161380c888261390c565b8452602084019350602083019250506001810190506137f9565b5050509392505050565b600061384361383e846143e7565b614396565b90508281526020810184848401111561385f5761385e614862565b5b61386a84828561462a565b509392505050565b600061388561388084614418565b614396565b9050828152602081018484840111156138a1576138a0614862565b5b6138ac84828561462a565b509392505050565b6000813590506138c381614b6e565b92915050565b600082601f8301126138de576138dd614858565b5b81356138ee8482602086016137c0565b91505092915050565b60008135905061390681614b85565b92915050565b60008135905061391b81614b9c565b92915050565b60008135905061393081614bb3565b92915050565b60008151905061394581614bb3565b92915050565b600082601f8301126139605761395f614858565b5b8135613970848260208601613830565b91505092915050565b600082601f83011261398e5761398d614858565b5b813561399e848260208601613872565b91505092915050565b6000813590506139b681614bca565b92915050565b6000602082840312156139d2576139d161486c565b5b60006139e0848285016138b4565b91505092915050565b60008060408385031215613a00576139ff61486c565b5b6000613a0e858286016138b4565b9250506020613a1f858286016138b4565b9150509250929050565b600080600060608486031215613a4257613a4161486c565b5b6000613a50868287016138b4565b9350506020613a61868287016138b4565b9250506040613a72868287016139a7565b9150509250925092565b60008060008060808587031215613a9657613a9561486c565b5b6000613aa4878288016138b4565b9450506020613ab5878288016138b4565b9350506040613ac6878288016139a7565b925050606085013567ffffffffffffffff811115613ae757613ae6614867565b5b613af38782880161394b565b91505092959194509250565b60008060408385031215613b1657613b1561486c565b5b6000613b24858286016138b4565b9250506020613b35858286016138f7565b9150509250929050565b60008060408385031215613b5657613b5561486c565b5b6000613b64858286016138b4565b9250506020613b75858286016139a7565b9150509250929050565b60008060408385031215613b9657613b9561486c565b5b600083013567ffffffffffffffff811115613bb457613bb3614867565b5b613bc0858286016138c9565b9250506020613bd18582860161390c565b9150509250929050565b60008060408385031215613bf257613bf161486c565b5b600083013567ffffffffffffffff811115613c1057613c0f614867565b5b613c1c858286016138c9565b9250506020613c2d858286016139a7565b9150509250929050565b600060208284031215613c4d57613c4c61486c565b5b6000613c5b8482850161390c565b91505092915050565b600060208284031215613c7a57613c7961486c565b5b6000613c8884828501613921565b91505092915050565b600060208284031215613ca757613ca661486c565b5b6000613cb584828501613936565b91505092915050565b600060208284031215613cd457613cd361486c565b5b600082013567ffffffffffffffff811115613cf257613cf1614867565b5b613cfe84828501613979565b91505092915050565b600060208284031215613d1d57613d1c61486c565b5b6000613d2b848285016139a7565b91505092915050565b613d3d816145ac565b82525050565b613d54613d4f826145ac565b614718565b82525050565b613d63816145be565b82525050565b613d72816145ca565b82525050565b6000613d8382614449565b613d8d818561445f565b9350613d9d818560208601614639565b613da681614871565b840191505092915050565b6000613dbc82614454565b613dc6818561447b565b9350613dd6818560208601614639565b613ddf81614871565b840191505092915050565b6000613df582614454565b613dff818561448c565b9350613e0f818560208601614639565b80840191505092915050565b6000613e2860178361447b565b9150613e338261488f565b602082019050919050565b6000613e4b60268361447b565b9150613e56826148b8565b604082019050919050565b6000613e6e601b8361447b565b9150613e7982614907565b602082019050919050565b6000613e9160108361447b565b9150613e9c82614930565b602082019050919050565b6000613eb4601f8361447b565b9150613ebf82614959565b602082019050919050565b6000613ed760178361447b565b9150613ee282614982565b602082019050919050565b6000613efa60158361447b565b9150613f05826149ab565b602082019050919050565b6000613f1d60148361447b565b9150613f28826149d4565b602082019050919050565b6000613f4060178361447b565b9150613f4b826149fd565b602082019050919050565b6000613f6360058361448c565b9150613f6e82614a26565b600582019050919050565b6000613f8660138361447b565b9150613f9182614a4f565b602082019050919050565b6000613fa960208361447b565b9150613fb482614a78565b602082019050919050565b6000613fcc602f8361447b565b9150613fd782614aa1565b604082019050919050565b6000613fef601c8361447b565b9150613ffa82614af0565b602082019050919050565b600061401260188361447b565b915061401d82614b19565b602082019050919050565b6000614035600083614470565b915061404082614b42565b600082019050919050565b6000614058601a8361447b565b915061406382614b45565b602082019050919050565b61407781614620565b82525050565b60006140898284613d43565b60148201915081905092915050565b60006140a48285613dea565b91506140b08284613dea565b91506140bb82613f56565b91508190509392505050565b60006140d282614028565b9150819050919050565b60006020820190506140f16000830184613d34565b92915050565b600060808201905061410c6000830187613d34565b6141196020830186613d34565b614126604083018561406e565b81810360608301526141388184613d78565b905095945050505050565b60006020820190506141586000830184613d5a565b92915050565b60006020820190506141736000830184613d69565b92915050565b600060208201905081810360008301526141938184613db1565b905092915050565b600060208201905081810360008301526141b481613e1b565b9050919050565b600060208201905081810360008301526141d481613e3e565b9050919050565b600060208201905081810360008301526141f481613e61565b9050919050565b6000602082019050818103600083015261421481613e84565b9050919050565b6000602082019050818103600083015261423481613ea7565b9050919050565b6000602082019050818103600083015261425481613eca565b9050919050565b6000602082019050818103600083015261427481613eed565b9050919050565b6000602082019050818103600083015261429481613f10565b9050919050565b600060208201905081810360008301526142b481613f33565b9050919050565b600060208201905081810360008301526142d481613f79565b9050919050565b600060208201905081810360008301526142f481613f9c565b9050919050565b6000602082019050818103600083015261431481613fbf565b9050919050565b6000602082019050818103600083015261433481613fe2565b9050919050565b6000602082019050818103600083015261435481614005565b9050919050565b600060208201905081810360008301526143748161404b565b9050919050565b6000602082019050614390600083018461406e565b92915050565b60006143a06143b1565b90506143ac828261469e565b919050565b6000604051905090565b600067ffffffffffffffff8211156143d6576143d5614829565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561440257614401614829565b5b61440b82614871565b9050602081019050919050565b600067ffffffffffffffff82111561443357614432614829565b5b61443c82614871565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144a282614620565b91506144ad83614620565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e2576144e161476d565b5b828201905092915050565b60006144f882614620565b915061450383614620565b9250826145135761451261479c565b5b828204905092915050565b600061452982614620565b915061453483614620565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561456d5761456c61476d565b5b828202905092915050565b600061458382614620565b915061458e83614620565b9250828210156145a1576145a061476d565b5b828203905092915050565b60006145b782614600565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561465757808201518184015260208101905061463c565b83811115614666576000848401525b50505050565b6000600282049050600182168061468457607f821691505b60208210811415614698576146976147cb565b5b50919050565b6146a782614871565b810181811067ffffffffffffffff821117156146c6576146c5614829565b5b80604052505050565b60006146da82614620565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470d5761470c61476d565b5b600182019050919050565b60006147238261472a565b9050919050565b600061473582614882565b9050919050565b600061474782614620565b915061475283614620565b9250826147625761476161479c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d757374206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f4e6f7420612070617274206f6620416c6c6f776c697374000000000000000000600082015250565b7f416d6f756e74206578636565647320737570706c790000000000000000000000600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b7f416d6f756e74206578636565647320636c61696d206c696d6974000000000000600082015250565b614b77816145ac565b8114614b8257600080fd5b50565b614b8e816145be565b8114614b9957600080fd5b50565b614ba5816145ca565b8114614bb057600080fd5b50565b614bbc816145d4565b8114614bc757600080fd5b50565b614bd381614620565b8114614bde57600080fd5b5056fea2646970667358221220203fa9d9ec2fea243abdb061e938691ebff2c02612367ec6332b1a819fc87d9164736f6c63430008070033

Deployed Bytecode

0x6080604052600436106102ae5760003560e01c80638da5cb5b11610175578063b8a20ed0116100dc578063dab5f34011610095578063e985e9c51161006f578063e985e9c514610a20578063ebf0c71714610a5d578063f2fde38b14610a88578063fe878b1d14610ab1576102ae565b8063dab5f340146109a3578063e5f4a76c146109cc578063e9048ff4146109e3576102ae565b8063b8a20ed01461086d578063c37b8362146108aa578063c87b56dd146108d5578063cce556e514610912578063cedd65231461093d578063d01fb98e14610966576102ae565b8063a22cb4651161012e578063a22cb46514610783578063a2e91477146107ac578063a475b5dd146107d7578063aa98e0c6146107ee578063afe2e1fa14610819578063b88d4fde14610844576102ae565b80638da5cb5b146106a85780638dd07d0f146106d357806395d89b41146106fc5780639a15207714610727578063a0712d6814610750578063a1a49abe1461076c576102ae565b80633948b8cc1161021957806355f804b3116101d257806355f804b3146105ac5780636352211e146105d55780636c0360eb1461061257806370a082311461063d578063715018a61461067a578063853828b614610691576102ae565b80633948b8cc146104b05780633b9c1bd1146104d957806342842e0e14610504578063484b973c1461052d57806348756e81146105565780635183022714610581576102ae565b806318160ddd1161026b57806318160ddd146103d55780631816ff3f1461040057806322f74bcb1461042957806323b872dd146104455780632f8145751461046e57806331c3c7a014610485576102ae565b80630188541d146102b357806301ffc9a7146102dc57806306fdde0314610319578063081812fc14610344578063081c8c4414610381578063095ea7b3146103ac575b600080fd5b3480156102bf57600080fd5b506102da60048036038101906102d59190613cbe565b610adc565b005b3480156102e857600080fd5b5061030360048036038101906102fe9190613c64565b610b72565b6040516103109190614143565b60405180910390f35b34801561032557600080fd5b5061032e610c54565b60405161033b9190614179565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190613d07565b610ce6565b60405161037891906140dc565b60405180910390f35b34801561038d57600080fd5b50610396610d62565b6040516103a39190614179565b60405180910390f35b3480156103b857600080fd5b506103d360048036038101906103ce9190613b3f565b610df0565b005b3480156103e157600080fd5b506103ea610efb565b6040516103f7919061437b565b60405180910390f35b34801561040c57600080fd5b5061042760048036038101906104229190613d07565b610f12565b005b610443600480360381019061043e9190613bdb565b610f98565b005b34801561045157600080fd5b5061046c60048036038101906104679190613a29565b6111b5565b005b34801561047a57600080fd5b506104836111c5565b005b34801561049157600080fd5b5061049a61126d565b6040516104a7919061437b565b60405180910390f35b3480156104bc57600080fd5b506104d760048036038101906104d29190613d07565b611273565b005b3480156104e557600080fd5b506104ee6112f9565b6040516104fb919061437b565b60405180910390f35b34801561051057600080fd5b5061052b60048036038101906105269190613a29565b6112ff565b005b34801561053957600080fd5b50610554600480360381019061054f9190613b3f565b61131f565b005b34801561056257600080fd5b5061056b6113ec565b604051610578919061437b565b60405180910390f35b34801561058d57600080fd5b506105966113f2565b6040516105a39190614143565b60405180910390f35b3480156105b857600080fd5b506105d360048036038101906105ce9190613cbe565b611405565b005b3480156105e157600080fd5b506105fc60048036038101906105f79190613d07565b6114b6565b60405161060991906140dc565b60405180910390f35b34801561061e57600080fd5b506106276114cc565b6040516106349190614179565b60405180910390f35b34801561064957600080fd5b50610664600480360381019061065f91906139bc565b61155a565b604051610671919061437b565b60405180910390f35b34801561068657600080fd5b5061068f61162a565b005b34801561069d57600080fd5b506106a66116b2565b005b3480156106b457600080fd5b506106bd61178a565b6040516106ca91906140dc565b60405180910390f35b3480156106df57600080fd5b506106fa60048036038101906106f59190613d07565b6117b4565b005b34801561070857600080fd5b5061071161184d565b60405161071e9190614179565b60405180910390f35b34801561073357600080fd5b5061074e60048036038101906107499190613d07565b6118df565b005b61076a60048036038101906107659190613d07565b611965565b005b34801561077857600080fd5b50610781611b54565b005b34801561078f57600080fd5b506107aa60048036038101906107a59190613aff565b611bfc565b005b3480156107b857600080fd5b506107c1611d74565b6040516107ce9190614143565b60405180910390f35b3480156107e357600080fd5b506107ec611d87565b005b3480156107fa57600080fd5b50610803611e2f565b604051610810919061415e565b60405180910390f35b34801561082557600080fd5b5061082e611e35565b60405161083b919061437b565b60405180910390f35b34801561085057600080fd5b5061086b60048036038101906108669190613a7c565b611e3b565b005b34801561087957600080fd5b50610894600480360381019061088f9190613b7f565b611eb7565b6040516108a19190614143565b60405180910390f35b3480156108b657600080fd5b506108bf611ece565b6040516108cc919061437b565b60405180910390f35b3480156108e157600080fd5b506108fc60048036038101906108f79190613d07565b611ed4565b6040516109099190614179565b60405180910390f35b34801561091e57600080fd5b5061092761202a565b6040516109349190614143565b60405180910390f35b34801561094957600080fd5b50610964600480360381019061095f9190613d07565b61203d565b005b34801561097257600080fd5b5061098d600480360381019061098891906139bc565b6120c3565b60405161099a919061437b565b60405180910390f35b3480156109af57600080fd5b506109ca60048036038101906109c59190613c37565b61210c565b005b3480156109d857600080fd5b506109e1612192565b005b3480156109ef57600080fd5b50610a0a6004803603810190610a0591906139bc565b612264565b604051610a17919061437b565b60405180910390f35b348015610a2c57600080fd5b50610a476004803603810190610a4291906139e9565b6122ad565b604051610a549190614143565b60405180910390f35b348015610a6957600080fd5b50610a72612341565b604051610a7f919061415e565b60405180910390f35b348015610a9457600080fd5b50610aaf6004803603810190610aaa91906139bc565b612347565b005b348015610abd57600080fd5b50610ac661243f565b604051610ad3919061437b565b60405180910390f35b610ae4612445565b73ffffffffffffffffffffffffffffffffffffffff16610b0261178a565b73ffffffffffffffffffffffffffffffffffffffff1614610b58576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b4f906142db565b60405180910390fd5b8060159080519060200190610b6e9291906136da565b5050565b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610c3d57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610c4d5750610c4c8261244d565b5b9050919050565b606060028054610c639061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054610c8f9061466c565b8015610cdc5780601f10610cb157610100808354040283529160200191610cdc565b820191906000526020600020905b815481529060010190602001808311610cbf57829003601f168201915b5050505050905090565b6000610cf1826124b7565b610d27576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b60158054610d6f9061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054610d9b9061466c565b8015610de85780601f10610dbd57610100808354040283529160200191610de8565b820191906000526020600020905b815481529060010190602001808311610dcb57829003601f168201915b505050505081565b6000610dfb826114b6565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610e63576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610e82612445565b73ffffffffffffffffffffffffffffffffffffffff1614158015610eb45750610eb281610ead612445565b6122ad565b155b15610eeb576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610ef6838383612505565b505050565b6000610f056125b7565b6001546000540303905090565b610f1a612445565b73ffffffffffffffffffffffffffffffffffffffff16610f3861178a565b73ffffffffffffffffffffffffffffffffffffffff1614610f8e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f85906142db565b60405180910390fd5b80600d8190555050565b610fc88233604051602001610fad919061407d565b60405160208183030381529060405280519060200120611eb7565b611007576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffe9061423b565b60405180910390fd5b600a5461101333612264565b10611053576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161104a9061435b565b60405180910390fd5b601060019054906101000a900460ff166110a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611099906141fb565b60405180910390fd5b600e5481600f546110b39190614497565b11156110f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110eb9061425b565b60405180910390fd5b3460001115611138576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161112f9061427b565b60405180910390fd5b61114233826125c0565b80600f60008282546111549190614497565b9250508190555080601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546111aa9190614497565b925050819055505050565b6111c08383836125de565b505050565b6111cd612445565b73ffffffffffffffffffffffffffffffffffffffff166111eb61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611241576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611238906142db565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550565b600b5481565b61127b612445565b73ffffffffffffffffffffffffffffffffffffffff1661129961178a565b73ffffffffffffffffffffffffffffffffffffffff16146112ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112e6906142db565b60405180910390fd5b80600e8190555050565b600a5481565b61131a83838360405180602001604052806000815250611e3b565b505050565b611327612445565b73ffffffffffffffffffffffffffffffffffffffff1661134561178a565b73ffffffffffffffffffffffffffffffffffffffff161461139b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611392906142db565b60405180910390fd5b600081116113de576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113d59061419b565b60405180910390fd5b6113e882826125c0565b5050565b60095481565b601060029054906101000a900460ff1681565b61140d612445565b73ffffffffffffffffffffffffffffffffffffffff1661142b61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611481576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611478906142db565b60405180910390fd5b80601690805190602001906114979291906136da565b506001601060026101000a81548160ff02191690831515021790555050565b60006114c182612acf565b600001519050919050565b601680546114d99061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546115059061466c565b80156115525780601f1061152757610100808354040283529160200191611552565b820191906000526020600020905b81548152906001019060200180831161153557829003601f168201915b505050505081565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156115c2576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b611632612445565b73ffffffffffffffffffffffffffffffffffffffff1661165061178a565b73ffffffffffffffffffffffffffffffffffffffff16146116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d906142db565b60405180910390fd5b6116b06000612d5e565b565b6116ba612445565b73ffffffffffffffffffffffffffffffffffffffff166116d861178a565b73ffffffffffffffffffffffffffffffffffffffff161461172e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611725906142db565b60405180910390fd5b600047905060008111611776576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161176d906142bb565b60405180910390fd5b611787611781612445565b47612e24565b50565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6117bc612445565b73ffffffffffffffffffffffffffffffffffffffff166117da61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611830576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611827906142db565b60405180910390fd5b670de0b6b3a764000081611844919061451e565b600b8190555050565b60606003805461185c9061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546118889061466c565b80156118d55780601f106118aa576101008083540402835291602001916118d5565b820191906000526020600020905b8154815290600101906020018083116118b857829003601f168201915b5050505050905090565b6118e7612445565b73ffffffffffffffffffffffffffffffffffffffff1661190561178a565b73ffffffffffffffffffffffffffffffffffffffff161461195b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611952906142db565b60405180910390fd5b8060098190555050565b600954611971336120c3565b106119b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a89061435b565b60405180910390fd5b601060009054906101000a900460ff16611a00576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119f7906141db565b60405180910390fd5b600d5481611a0c610efb565b611a169190614497565b1115611a57576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4e9061421b565b60405180910390fd5b60008111611a9a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a919061431b565b60405180910390fd5b3481600c54611aa9919061451e565b1115611aea576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ae19061429b565b60405180910390fd5b611afb611af5612445565b826125c0565b80601360003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254611b4a9190614497565b9250508190555050565b611b5c612445565b73ffffffffffffffffffffffffffffffffffffffff16611b7a61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611bd0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bc7906142db565b60405180910390fd5b601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b611c04612445565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415611c69576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611c76612445565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d23612445565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611d689190614143565b60405180910390a35050565b601060009054906101000a900460ff1681565b611d8f612445565b73ffffffffffffffffffffffffffffffffffffffff16611dad61178a565b73ffffffffffffffffffffffffffffffffffffffff1614611e03576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dfa906142db565b60405180910390fd5b601060029054906101000a900460ff1615601060026101000a81548160ff021916908315150217905550565b60115481565b600e5481565b611e468484846125de565b611e658373ffffffffffffffffffffffffffffffffffffffff16612ed5565b8015611e7a5750611e7884848484612ef8565b155b15611eb1576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b50505050565b6000611ec68360145484613058565b905092915050565b600c5481565b6060611edf826124b7565b611f1e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f15906142fb565b60405180910390fd5b60001515601060029054906101000a900460ff1615151415611fcc5760158054611f479061466c565b80601f0160208091040260200160405190810160405280929190818152602001828054611f739061466c565b8015611fc05780601f10611f9557610100808354040283529160200191611fc0565b820191906000526020600020905b815481529060010190602001808311611fa357829003601f168201915b50505050509050612025565b6000611fd661306f565b90506000815111611ff65760405180602001604052806000815250612021565b8061200084613101565b604051602001612011929190614098565b6040516020818303038152906040525b9150505b919050565b601060019054906101000a900460ff1681565b612045612445565b73ffffffffffffffffffffffffffffffffffffffff1661206361178a565b73ffffffffffffffffffffffffffffffffffffffff16146120b9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120b0906142db565b60405180910390fd5b80600a8190555050565b6000601360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b612114612445565b73ffffffffffffffffffffffffffffffffffffffff1661213261178a565b73ffffffffffffffffffffffffffffffffffffffff1614612188576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161217f906142db565b60405180910390fd5b8060148190555050565b61219a612445565b73ffffffffffffffffffffffffffffffffffffffff166121b861178a565b73ffffffffffffffffffffffffffffffffffffffff161461220e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612205906142db565b60405180910390fd5b601060009054906101000a900460ff1615601060006101000a81548160ff021916908315150217905550601060019054906101000a900460ff1615601060016101000a81548160ff021916908315150217905550565b6000601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60145481565b61234f612445565b73ffffffffffffffffffffffffffffffffffffffff1661236d61178a565b73ffffffffffffffffffffffffffffffffffffffff16146123c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123ba906142db565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415612433576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161242a906141bb565b60405180910390fd5b61243c81612d5e565b50565b600d5481565b600033905090565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816124c26125b7565b111580156124d1575060005482105b80156124fe575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6125da828260405180602001604052806000815250613262565b5050565b60006125e982612acf565b90506000816000015173ffffffffffffffffffffffffffffffffffffffff16612610612445565b73ffffffffffffffffffffffffffffffffffffffff1614806126435750612642826000015161263d612445565b6122ad565b5b806126885750612651612445565b73ffffffffffffffffffffffffffffffffffffffff1661267084610ce6565b73ffffffffffffffffffffffffffffffffffffffff16145b9050806126c1576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8473ffffffffffffffffffffffffffffffffffffffff16826000015173ffffffffffffffffffffffffffffffffffffffff161461272a576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612791576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b61279e8585856001613274565b6127ae6000848460000151612505565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600085815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600085815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600184019050600073ffffffffffffffffffffffffffffffffffffffff166004600083815260200190815260200160002060000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161415612a5f57600054811015612a5e5782600001516004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082602001516004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b50828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612ac8858585600161327a565b5050505050565b612ad7613760565b600082905080612ae56125b7565b11158015612af4575060005481105b15612d27576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151612d2557600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612c09578092505050612d59565b5b600115612d2457818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612d1f578092505050612d59565b612c0a565b5b505b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b60008273ffffffffffffffffffffffffffffffffffffffff1682604051612e4a906140c7565b60006040518083038185875af1925050503d8060008114612e87576040519150601f19603f3d011682016040523d82523d6000602084013e612e8c565b606091505b5050905080612ed0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ec79061433b565b60405180910390fd5b505050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a02612f1e612445565b8786866040518563ffffffff1660e01b8152600401612f4094939291906140f7565b602060405180830381600087803b158015612f5a57600080fd5b505af1925050508015612f8b57506040513d601f19601f82011682018060405250810190612f889190613c91565b60015b613005573d8060008114612fbb576040519150601f19603f3d011682016040523d82523d6000602084013e612fc0565b606091505b50600081511415612ffd576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6000826130658584613280565b1490509392505050565b60606016805461307e9061466c565b80601f01602080910402602001604051908101604052809291908181526020018280546130aa9061466c565b80156130f75780601f106130cc576101008083540402835291602001916130f7565b820191906000526020600020905b8154815290600101906020018083116130da57829003601f168201915b5050505050905090565b60606000821415613149576040518060400160405280600181526020017f3000000000000000000000000000000000000000000000000000000000000000815250905061325d565b600082905060005b6000821461317b578080613164906146cf565b915050600a8261317491906144ed565b9150613151565b60008167ffffffffffffffff81111561319757613196614829565b5b6040519080825280601f01601f1916602001820160405280156131c95781602001600182028036833780820191505090505b5090505b60008514613256576001826131e29190614578565b9150600a856131f1919061473c565b60306131fd9190614497565b60f81b818381518110613213576132126147fa565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a8561324f91906144ed565b94506131cd565b8093505050505b919050565b61326f83838360016132f5565b505050565b50505050565b50505050565b60008082905060005b84518110156132ea5760008582815181106132a7576132a66147fa565b5b602002602001015190508083116132c9576132c283826136c3565b92506132d6565b6132d381846136c3565b92505b5080806132e2906146cf565b915050613289565b508091505092915050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161415613362576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600084141561339d576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6133aa6000868387613274565b83600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555083600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550846004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060008190506000858201905083801561357457506135738773ffffffffffffffffffffffffffffffffffffffff16612ed5565b5b1561363a575b818773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46135e96000888480600101955088612ef8565b61361f576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8082141561357a57826000541461363557600080fd5b6136a6565b5b818060010192508773ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a48082141561363b575b8160008190555050506136bc600086838761327a565b5050505050565b600082600052816020526040600020905092915050565b8280546136e69061466c565b90600052602060002090601f016020900481019282613708576000855561374f565b82601f1061372157805160ff191683800117855561374f565b8280016001018555821561374f579182015b8281111561374e578251825591602001919060010190613733565b5b50905061375c91906137a3565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b808211156137bc5760008160009055506001016137a4565b5090565b60006137d36137ce846143bb565b614396565b905080838252602082019050828560208602820111156137f6576137f561485d565b5b60005b85811015613826578161380c888261390c565b8452602084019350602083019250506001810190506137f9565b5050509392505050565b600061384361383e846143e7565b614396565b90508281526020810184848401111561385f5761385e614862565b5b61386a84828561462a565b509392505050565b600061388561388084614418565b614396565b9050828152602081018484840111156138a1576138a0614862565b5b6138ac84828561462a565b509392505050565b6000813590506138c381614b6e565b92915050565b600082601f8301126138de576138dd614858565b5b81356138ee8482602086016137c0565b91505092915050565b60008135905061390681614b85565b92915050565b60008135905061391b81614b9c565b92915050565b60008135905061393081614bb3565b92915050565b60008151905061394581614bb3565b92915050565b600082601f8301126139605761395f614858565b5b8135613970848260208601613830565b91505092915050565b600082601f83011261398e5761398d614858565b5b813561399e848260208601613872565b91505092915050565b6000813590506139b681614bca565b92915050565b6000602082840312156139d2576139d161486c565b5b60006139e0848285016138b4565b91505092915050565b60008060408385031215613a00576139ff61486c565b5b6000613a0e858286016138b4565b9250506020613a1f858286016138b4565b9150509250929050565b600080600060608486031215613a4257613a4161486c565b5b6000613a50868287016138b4565b9350506020613a61868287016138b4565b9250506040613a72868287016139a7565b9150509250925092565b60008060008060808587031215613a9657613a9561486c565b5b6000613aa4878288016138b4565b9450506020613ab5878288016138b4565b9350506040613ac6878288016139a7565b925050606085013567ffffffffffffffff811115613ae757613ae6614867565b5b613af38782880161394b565b91505092959194509250565b60008060408385031215613b1657613b1561486c565b5b6000613b24858286016138b4565b9250506020613b35858286016138f7565b9150509250929050565b60008060408385031215613b5657613b5561486c565b5b6000613b64858286016138b4565b9250506020613b75858286016139a7565b9150509250929050565b60008060408385031215613b9657613b9561486c565b5b600083013567ffffffffffffffff811115613bb457613bb3614867565b5b613bc0858286016138c9565b9250506020613bd18582860161390c565b9150509250929050565b60008060408385031215613bf257613bf161486c565b5b600083013567ffffffffffffffff811115613c1057613c0f614867565b5b613c1c858286016138c9565b9250506020613c2d858286016139a7565b9150509250929050565b600060208284031215613c4d57613c4c61486c565b5b6000613c5b8482850161390c565b91505092915050565b600060208284031215613c7a57613c7961486c565b5b6000613c8884828501613921565b91505092915050565b600060208284031215613ca757613ca661486c565b5b6000613cb584828501613936565b91505092915050565b600060208284031215613cd457613cd361486c565b5b600082013567ffffffffffffffff811115613cf257613cf1614867565b5b613cfe84828501613979565b91505092915050565b600060208284031215613d1d57613d1c61486c565b5b6000613d2b848285016139a7565b91505092915050565b613d3d816145ac565b82525050565b613d54613d4f826145ac565b614718565b82525050565b613d63816145be565b82525050565b613d72816145ca565b82525050565b6000613d8382614449565b613d8d818561445f565b9350613d9d818560208601614639565b613da681614871565b840191505092915050565b6000613dbc82614454565b613dc6818561447b565b9350613dd6818560208601614639565b613ddf81614871565b840191505092915050565b6000613df582614454565b613dff818561448c565b9350613e0f818560208601614639565b80840191505092915050565b6000613e2860178361447b565b9150613e338261488f565b602082019050919050565b6000613e4b60268361447b565b9150613e56826148b8565b604082019050919050565b6000613e6e601b8361447b565b9150613e7982614907565b602082019050919050565b6000613e9160108361447b565b9150613e9c82614930565b602082019050919050565b6000613eb4601f8361447b565b9150613ebf82614959565b602082019050919050565b6000613ed760178361447b565b9150613ee282614982565b602082019050919050565b6000613efa60158361447b565b9150613f05826149ab565b602082019050919050565b6000613f1d60148361447b565b9150613f28826149d4565b602082019050919050565b6000613f4060178361447b565b9150613f4b826149fd565b602082019050919050565b6000613f6360058361448c565b9150613f6e82614a26565b600582019050919050565b6000613f8660138361447b565b9150613f9182614a4f565b602082019050919050565b6000613fa960208361447b565b9150613fb482614a78565b602082019050919050565b6000613fcc602f8361447b565b9150613fd782614aa1565b604082019050919050565b6000613fef601c8361447b565b9150613ffa82614af0565b602082019050919050565b600061401260188361447b565b915061401d82614b19565b602082019050919050565b6000614035600083614470565b915061404082614b42565b600082019050919050565b6000614058601a8361447b565b915061406382614b45565b602082019050919050565b61407781614620565b82525050565b60006140898284613d43565b60148201915081905092915050565b60006140a48285613dea565b91506140b08284613dea565b91506140bb82613f56565b91508190509392505050565b60006140d282614028565b9150819050919050565b60006020820190506140f16000830184613d34565b92915050565b600060808201905061410c6000830187613d34565b6141196020830186613d34565b614126604083018561406e565b81810360608301526141388184613d78565b905095945050505050565b60006020820190506141586000830184613d5a565b92915050565b60006020820190506141736000830184613d69565b92915050565b600060208201905081810360008301526141938184613db1565b905092915050565b600060208201905081810360008301526141b481613e1b565b9050919050565b600060208201905081810360008301526141d481613e3e565b9050919050565b600060208201905081810360008301526141f481613e61565b9050919050565b6000602082019050818103600083015261421481613e84565b9050919050565b6000602082019050818103600083015261423481613ea7565b9050919050565b6000602082019050818103600083015261425481613eca565b9050919050565b6000602082019050818103600083015261427481613eed565b9050919050565b6000602082019050818103600083015261429481613f10565b9050919050565b600060208201905081810360008301526142b481613f33565b9050919050565b600060208201905081810360008301526142d481613f79565b9050919050565b600060208201905081810360008301526142f481613f9c565b9050919050565b6000602082019050818103600083015261431481613fbf565b9050919050565b6000602082019050818103600083015261433481613fe2565b9050919050565b6000602082019050818103600083015261435481614005565b9050919050565b600060208201905081810360008301526143748161404b565b9050919050565b6000602082019050614390600083018461406e565b92915050565b60006143a06143b1565b90506143ac828261469e565b919050565b6000604051905090565b600067ffffffffffffffff8211156143d6576143d5614829565b5b602082029050602081019050919050565b600067ffffffffffffffff82111561440257614401614829565b5b61440b82614871565b9050602081019050919050565b600067ffffffffffffffff82111561443357614432614829565b5b61443c82614871565b9050602081019050919050565b600081519050919050565b600081519050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b60006144a282614620565b91506144ad83614620565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156144e2576144e161476d565b5b828201905092915050565b60006144f882614620565b915061450383614620565b9250826145135761451261479c565b5b828204905092915050565b600061452982614620565b915061453483614620565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561456d5761456c61476d565b5b828202905092915050565b600061458382614620565b915061458e83614620565b9250828210156145a1576145a061476d565b5b828203905092915050565b60006145b782614600565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b8381101561465757808201518184015260208101905061463c565b83811115614666576000848401525b50505050565b6000600282049050600182168061468457607f821691505b60208210811415614698576146976147cb565b5b50919050565b6146a782614871565b810181811067ffffffffffffffff821117156146c6576146c5614829565b5b80604052505050565b60006146da82614620565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141561470d5761470c61476d565b5b600182019050919050565b60006147238261472a565b9050919050565b600061473582614882565b9050919050565b600061474782614620565b915061475283614620565b9250826147625761476161479c565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b60008160601b9050919050565b7f4d757374206174206c65617374206f6e6520746f6b656e000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f5075626c69632073616c6520686173206e6f7420737461727465640000000000600082015250565b7f53616c65206e6f74207374617274656400000000000000000000000000000000600082015250565b7f4d696e74696e6720776f756c6420657863656564206d617820737570706c7900600082015250565b7f4e6f7420612070617274206f6620416c6c6f776c697374000000000000000000600082015250565b7f416d6f756e74206578636565647320737570706c790000000000000000000000600082015250565b7f496e73756666696369656e74207061796d656e74000000000000000000000000600082015250565b7f45544820616d6f756e7420697320696e636f7272656374000000000000000000600082015250565b7f2e6a736f6e000000000000000000000000000000000000000000000000000000600082015250565b7f496e737566666963656e742062616c616e636500000000000000000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b7f4d757374206d696e74206174206c65617374206f6e6520746f6b656e00000000600082015250565b7f4661696c656420746f2077697468647261772045746865720000000000000000600082015250565b50565b7f416d6f756e74206578636565647320636c61696d206c696d6974000000000000600082015250565b614b77816145ac565b8114614b8257600080fd5b50565b614b8e816145be565b8114614b9957600080fd5b50565b614ba5816145ca565b8114614bb057600080fd5b50565b614bbc816145d4565b8114614bc757600080fd5b50565b614bd381614620565b8114614bde57600080fd5b5056fea2646970667358221220203fa9d9ec2fea243abdb061e938691ebff2c02612367ec6332b1a819fc87d9164736f6c63430008070033

Deployed Bytecode Sourcemap

1183:5322:14:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;2625:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4690:355:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;8157:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9757:245;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1894:47:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9320:371:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3939:303;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3128:105:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5081:646;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;10728:170:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2259:111:14;;;;;;;;;;;;;:::i;:::-;;1375:38;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3241:97;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1335:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10969:185:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;5899:163:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1295:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1673:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2485:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;7966:124:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1997:37:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;5109:206:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1714:103:10;;;;;;;;;;;;;:::i;:::-;;6097:209:14;;;;;;;;;;;;;:::i;:::-;;1063:87:10;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2767:113:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;8326:104:3;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2888:110:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4246:547;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2378:99;;;;;;;;;;;;;:::i;:::-;;10074:302:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1587:37:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4137:70;;;;;;;;;;;;;:::i;:::-;;1710:34;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1507:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;11225:406:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4928:145:14;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1420:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3615:493;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1631:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;3006:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;3458:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4830:86;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;2106:145;;;;;;;;;;;;;:::i;:::-;;5735:122;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10447:214:3;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1866:19:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;1972:201:10;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;1468:32:14;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;2625:134;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2733:18:14::1;2716:14;:35;;;;;;;;;;;;:::i;:::-;;2625:134:::0;:::o;4690:355:3:-;4837:4;4894:25;4879:40;;;:11;:40;;;;:105;;;;4951:33;4936:48;;;:11;:48;;;;4879:105;:158;;;;5001:36;5025:11;5001:23;:36::i;:::-;4879:158;4859:178;;4690:355;;;:::o;8157:100::-;8211:13;8244:5;8237:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8157:100;:::o;9757:245::-;9861:7;9891:16;9899:7;9891;:16::i;:::-;9886:64;;9916:34;;;;;;;;;;;;;;9886:64;9970:15;:24;9986:7;9970:24;;;;;;;;;;;;;;;;;;;;;9963:31;;9757:245;;;:::o;1894:47:14:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;9320:371:3:-;9393:13;9409:24;9425:7;9409:15;:24::i;:::-;9393:40;;9454:5;9448:11;;:2;:11;;;9444:48;;;9468:24;;;;;;;;;;;;;;9444:48;9525:5;9509:21;;:12;:10;:12::i;:::-;:21;;;;:63;;;;;9535:37;9552:5;9559:12;:10;:12::i;:::-;9535:16;:37::i;:::-;9534:38;9509:63;9505:138;;;9596:35;;;;;;;;;;;;;;9505:138;9655:28;9664:2;9668:7;9677:5;9655:8;:28::i;:::-;9382:309;9320:371;;:::o;3939:303::-;3983:7;4208:15;:13;:15::i;:::-;4193:12;;4177:13;;:28;:46;4170:53;;3939:303;:::o;3128:105:14:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3214:14:14::1;3200:11;:28;;;;3128:105:::0;:::o;5081:646::-;5196:55;5204:5;5238:10;5221:28;;;;;;;;:::i;:::-;;;;;;;;;;;;;5211:39;;;;;;5196:7;:55::i;:::-;5188:91;;;;;;;;;;;;:::i;:::-;;;;;;;;;5327:12;;5294:30;5313:10;5294:18;:30::i;:::-;:45;5290:87;;5341:36;;;;;;;;;;:::i;:::-;;;;;;;;5290:87;5393:13;;;;;;;;;;;5388:46;;5408:26;;;;;;;;;;:::i;:::-;;;;;;;;5388:46;5471:9;;5461:6;5449:9;;:18;;;;:::i;:::-;:32;5445:82;;;5496:31;;;;;;;;;;:::i;:::-;;;;;;;;5445:82;5550:9;5542:5;:17;5538:66;;;5574:30;;;;;;;;;;:::i;:::-;;;;;;;;5538:66;5617:29;5627:10;5639:6;5617:9;:29::i;:::-;5668:6;5657:9;;:17;;;;;;;:::i;:::-;;;;;;;;5711:6;5685:12;:24;5698:10;5685:24;;;;;;;;;;;;;;;;:32;;;;;;;:::i;:::-;;;;;;;;5081:646;;:::o;10728:170:3:-;10862:28;10872:4;10878:2;10882:7;10862:9;:28::i;:::-;10728:170;;;:::o;2259:111:14:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2345:17:14::1;;;;;;;;;;;2344:18;2324:17;;:38;;;;;;;;;;;;;;;;;;2259:111::o:0;1375:38::-;;;;:::o;3241:97::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3321:12:14::1;3309:9;:24;;;;3241:97:::0;:::o;1335:31::-;;;;:::o;10969:185:3:-;11107:39;11124:4;11130:2;11134:7;11107:39;;;;;;;;;;;;:16;:39::i;:::-;10969:185;;;:::o;5899:163:14:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;5993:1:14::1;5984:6;:10;5976:46;;;;;;;;;;;;:::i;:::-;;;;;;;;;6033:21;6043:2;6047:6;6033:9;:21::i;:::-;5899:163:::0;;:::o;1295:33::-;;;;:::o;1673:28::-;;;;;;;;;;;;;:::o;2485:132::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2572:11:14::1;2562:7;:21;;;;;;;;;;;;:::i;:::-;;2605:4;2594:8;;:15;;;;;;;;;;;;;;;;;;2485:132:::0;:::o;7966:124:3:-;8030:7;8057:20;8069:7;8057:11;:20::i;:::-;:25;;;8050:32;;7966:124;;;:::o;1997:37:14:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;5109:206:3:-;5173:7;5214:1;5197:19;;:5;:19;;;5193:60;;;5225:28;;;;;;;;;;;;;;5193:60;5279:12;:19;5292:5;5279:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;5271:36;;5264:43;;5109:206;;;:::o;1714:103:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1779:30:::1;1806:1;1779:18;:30::i;:::-;1714:103::o:0;6097:209:14:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;6148:15:14::1;6166:21;6148:39;;6216:1;6206:7;:11;6198:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;6252:46;6262:12;:10;:12::i;:::-;6276:21;6252:9;:46::i;:::-;6137:169;6097:209::o:0;1063:87:10:-;1109:7;1136:6;;;;;;;;;;;1129:13;;1063:87;:::o;2767:113:14:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2864:7:14::1;2849:11;:23;;;;:::i;:::-;2838:8;:34;;;;2767:113:::0;:::o;8326:104:3:-;8382:13;8415:7;8408:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8326:104;:::o;2888:110:14:-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2978:12:14::1;2961:14;:29;;;;2888:110:::0;:::o;4246:547::-;4340:14;;4308:29;4326:10;4308:17;:29::i;:::-;:46;4304:88;;4356:36;;;;;;;;;;:::i;:::-;;;;;;;;4304:88;4415:17;;;;;;;;;;;4407:57;;;;;;;;;;;;:::i;:::-;;;;;;;;;4510:11;;4499:6;4483:13;:11;:13::i;:::-;:22;;;;:::i;:::-;:39;;4475:83;;;;;;;;;;;;:::i;:::-;;;;;;;;;4586:1;4577:6;:10;4569:51;;;;;;;;;;;;:::i;:::-;;;;;;;;;4662:9;4652:6;4639:10;;:19;;;;:::i;:::-;:32;;4631:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4710:31;4720:12;:10;:12::i;:::-;4734:6;4710:9;:31::i;:::-;4777:6;4752:11;:23;4764:10;4752:23;;;;;;;;;;;;;;;;:31;;;;;;;:::i;:::-;;;;;;;;4246:547;:::o;2378:99::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2456:13:14::1;;;;;;;;;;;2455:14;2439:13;;:30;;;;;;;;;;;;;;;;;;2378:99::o:0;10074:302:3:-;10200:12;:10;:12::i;:::-;10188:24;;:8;:24;;;10184:54;;;10221:17;;;;;;;;;;;;;;10184:54;10296:8;10251:18;:32;10270:12;:10;:12::i;:::-;10251:32;;;;;;;;;;;;;;;:42;10284:8;10251:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;10349:8;10320:48;;10335:12;:10;:12::i;:::-;10320:48;;;10359:8;10320:48;;;;;;:::i;:::-;;;;;;;;10074:302;;:::o;1587:37:14:-;;;;;;;;;;;;;:::o;4137:70::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4193:8:14::1;;;;;;;;;;;4192:9;4181:8;;:20;;;;;;;;;;;;;;;;;;4137:70::o:0;1710:34::-;;;;:::o;1507:31::-;;;;:::o;11225:406:3:-;11392:28;11402:4;11408:2;11412:7;11392:9;:28::i;:::-;11449:15;:2;:13;;;:15::i;:::-;:89;;;;;11482:56;11513:4;11519:2;11523:7;11532:5;11482:30;:56::i;:::-;11481:57;11449:89;11431:193;;;11572:40;;;;;;;;;;;;;;11431:193;11225:406;;;;:::o;4928:145:14:-;5004:4;5028:37;5047:5;5054:4;;5060;5028:18;:37::i;:::-;5021:44;;4928:145;;;;:::o;1420:39::-;;;;:::o;3615:493::-;3713:13;3754:16;3762:7;3754;:16::i;:::-;3738:97;;;;;;;;;;;;:::i;:::-;;;;;;;;;3863:5;3851:17;;:8;;;;;;;;;;;:17;;;3848:62;;;3888:14;3881:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3848:62;3918:28;3949:10;:8;:10::i;:::-;3918:41;;4004:1;3979:14;3973:28;:32;:129;;;;;;;;;;;;;;;;;4041:14;4057:20;4058:7;4057:18;:20::i;:::-;4024:63;;;;;;;;;:::i;:::-;;;;;;;;;;;;;3973:129;3966:136;;;3615:493;;;;:::o;1631:33::-;;;;;;;;;;;;;:::o;3006:114::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;3098:14:14::1;3083:12;:29;;;;3006:114:::0;:::o;3458:120::-;3523:7;3550:11;:20;3562:7;3550:20;;;;;;;;;;;;;;;;3543:27;;3458:120;;;:::o;4830:86::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4901:7:14::1;4894:4;:14;;;;4830:86:::0;:::o;2106:145::-;1294:12:10;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2183:17:14::1;;;;;;;;;;;2182:18;2162:17;;:38;;;;;;;;;;;;;;;;;;2228:13;;;;;;;;;;;2227:14;2211:13;;:30;;;;;;;;;;;;;;;;;;2106:145::o:0;5735:122::-;5801:7;5828:12;:21;5841:7;5828:21;;;;;;;;;;;;;;;;5821:28;;5735:122;;;:::o;10447:214:3:-;10589:4;10618:18;:25;10637:5;10618:25;;;;;;;;;;;;;;;:35;10644:8;10618:35;;;;;;;;;;;;;;;;;;;;;;;;;10611:42;;10447:214;;;;:::o;1866:19:14:-;;;;:::o;1972:201:10:-;1294:12;:10;:12::i;:::-;1283:23;;:7;:5;:7::i;:::-;:23;;;1275:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;2081:1:::1;2061:22;;:8;:22;;;;2053:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;2137:28;2156:8;2137:18;:28::i;:::-;1972:201:::0;:::o;1468:32:14:-;;;;:::o;656:98:1:-;709:7;736:10;729:17;;656:98;:::o;854:157:2:-;939:4;978:25;963:40;;;:11;:40;;;;956:47;;854:157;;;:::o;11886:213:3:-;11943:4;11999:7;11980:15;:13;:15::i;:::-;:26;;:66;;;;;12033:13;;12023:7;:23;11980:66;:111;;;;;12064:11;:20;12076:7;12064:20;;;;;;;;;;;:27;;;;;;;;;;;;12063:28;11980:111;11960:131;;11886:213;;;:::o;19766:196::-;19908:2;19881:15;:24;19897:7;19881:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;19946:7;19942:2;19926:28;;19935:5;19926:28;;;;;;;;;;;;19766:196;;;:::o;3663:92::-;3719:7;3746:1;3739:8;;3663:92;:::o;12107:104::-;12176:27;12186:2;12190:8;12176:27;;;;;;;;;;;;:9;:27::i;:::-;12107:104;;:::o;15216:2138::-;15331:35;15369:20;15381:7;15369:11;:20::i;:::-;15331:58;;15402:22;15444:13;:18;;;15428:34;;:12;:10;:12::i;:::-;:34;;;:101;;;;15479:50;15496:13;:18;;;15516:12;:10;:12::i;:::-;15479:16;:50::i;:::-;15428:101;:154;;;;15570:12;:10;:12::i;:::-;15546:36;;:20;15558:7;15546:11;:20::i;:::-;:36;;;15428:154;15402:181;;15601:17;15596:66;;15627:35;;;;;;;;;;;;;;15596:66;15699:4;15677:26;;:13;:18;;;:26;;;15673:67;;15712:28;;;;;;;;;;;;;;15673:67;15769:1;15755:16;;:2;:16;;;15751:52;;;15780:23;;;;;;;;;;;;;;15751:52;15816:43;15838:4;15844:2;15848:7;15857:1;15816:21;:43::i;:::-;15924:49;15941:1;15945:7;15954:13;:18;;;15924:8;:49::i;:::-;16299:1;16269:12;:18;16282:4;16269:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16343:1;16315:12;:16;16328:2;16315:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;16389:2;16361:11;:20;16373:7;16361:20;;;;;;;;;;;:25;;;:30;;;;;;;;;;;;;;;;;;16451:15;16406:11;:20;16418:7;16406:20;;;;;;;;;;;:35;;;:61;;;;;;;;;;;;;;;;;;16719:19;16751:1;16741:7;:11;16719:33;;16812:1;16771:43;;:11;:24;16783:11;16771:24;;;;;;;;;;;:29;;;;;;;;;;;;:43;;;16767:471;;;16996:13;;16982:11;:27;16978:245;;;17066:13;:18;;;17034:11;:24;17046:11;17034:24;;;;;;;;;;;:29;;;:50;;;;;;;;;;;;;;;;;;17149:13;:54;;;17107:11;:24;17119:11;17107:24;;;;;;;;;;;:39;;;:96;;;;;;;;;;;;;;;;;;16978:245;16767:471;16244:1005;17285:7;17281:2;17266:27;;17275:4;17266:27;;;;;;;;;;;;17304:42;17325:4;17331:2;17335:7;17344:1;17304:20;:42::i;:::-;15320:2034;;15216:2138;;;:::o;6764:1140::-;6852:21;;:::i;:::-;6891:12;6906:7;6891:22;;6974:4;6955:15;:13;:15::i;:::-;:23;;:47;;;;;6989:13;;6982:4;:20;6955:47;6951:886;;;7023:31;7057:11;:17;7069:4;7057:17;;;;;;;;;;;7023:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7098:9;:16;;;7093:729;;7169:1;7143:28;;:9;:14;;;:28;;;7139:101;;7207:9;7200:16;;;;;;7139:101;7542:261;7549:4;7542:261;;;7582:6;;;;;;;;7627:11;:17;7639:4;7627:17;;;;;;;;;;;7615:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;7701:1;7675:28;;:9;:14;;;:28;;;7671:109;;7743:9;7736:16;;;;;;7671:109;7542:261;;;7093:729;7004:833;6951:886;7865:31;;;;;;;;;;;;;;6764:1140;;;;:::o;2333:191:10:-;2407:16;2426:6;;;;;;;;;;;2407:25;;2452:8;2443:6;;:17;;;;;;;;;;;;;;;;;;2507:8;2476:40;;2497:8;2476:40;;;;;;;;;;;;2396:128;2333:191;:::o;6314:188:14:-;6388:12;6406:8;:13;;6427:7;6406:33;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6387:52;;;6458:7;6450:44;;;;;;;;;;;;:::i;:::-;;;;;;;;;6376:126;6314:188;;:::o;1210:326:0:-;1270:4;1527:1;1505:7;:19;;;:23;1498:30;;1210:326;;;:::o;20454:772:3:-;20617:4;20667:2;20651:36;;;20706:12;:10;:12::i;:::-;20737:4;20760:7;20786:5;20651:155;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;20634:585;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;20994:1;20977:6;:13;:18;20973:235;;;21023:40;;;;;;;;;;;;;;20973:235;21166:6;21160:13;21151:6;21147:2;21143:15;21136:38;20634:585;20872:45;;;20862:55;;;:6;:55;;;;20855:62;;;20454:772;;;;;;:::o;883:190:9:-;1008:4;1061;1032:25;1045:5;1052:4;1032:12;:25::i;:::-;:33;1025:40;;883:190;;;;;:::o;3350:100:14:-;3402:13;3435:7;3428:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;3350:100;:::o;342:723:13:-;398:13;628:1;619:5;:10;615:53;;;646:10;;;;;;;;;;;;;;;;;;;;;615:53;678:12;693:5;678:20;;709:14;734:78;749:1;741:4;:9;734:78;;767:8;;;;;:::i;:::-;;;;798:2;790:10;;;;;:::i;:::-;;;734:78;;;822:19;854:6;844:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;822:39;;872:154;888:1;879:5;:10;872:154;;916:1;906:11;;;;;:::i;:::-;;;983:2;975:5;:10;;;;:::i;:::-;962:2;:24;;;;:::i;:::-;949:39;;932:6;939;932:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1012:2;1003:11;;;;;:::i;:::-;;;872:154;;;1050:6;1036:21;;;;;342:723;;;;:::o;12574:163:3:-;12697:32;12703:2;12707:8;12717:5;12724:4;12697:5;:32::i;:::-;12574:163;;;:::o;21874:159::-;;;;;:::o;22692:158::-;;;;;:::o;1435:675:9:-;1518:7;1538:20;1561:4;1538:27;;1581:9;1576:497;1600:5;:12;1596:1;:16;1576:497;;;1634:20;1657:5;1663:1;1657:8;;;;;;;;:::i;:::-;;;;;;;;1634:31;;1700:12;1684;:28;1680:382;;1827:42;1842:12;1856;1827:14;:42::i;:::-;1812:57;;1680:382;;;2004:42;2019:12;2033;2004:14;:42::i;:::-;1989:57;;1680:382;1619:454;1614:3;;;;;:::i;:::-;;;;1576:497;;;;2090:12;2083:19;;;1435:675;;;;:::o;12996:1966:3:-;13135:20;13158:13;;13135:36;;13200:1;13186:16;;:2;:16;;;13182:48;;;13211:19;;;;;;;;;;;;;;13182:48;13257:1;13245:8;:13;13241:44;;;13267:18;;;;;;;;;;;;;;13241:44;13298:61;13328:1;13332:2;13336:12;13350:8;13298:21;:61::i;:::-;13671:8;13636:12;:16;13649:2;13636:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13735:8;13695:12;:16;13708:2;13695:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;13794:2;13761:11;:25;13773:12;13761:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;13861:15;13811:11;:25;13823:12;13811:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;13894:20;13917:12;13894:35;;13944:11;13973:8;13958:12;:23;13944:37;;14002:4;:23;;;;;14010:15;:2;:13;;;:15::i;:::-;14002:23;13998:832;;;14046:505;14102:12;14098:2;14077:38;;14094:1;14077:38;;;;;;;;;;;;14169:212;14238:1;14271:2;14304:14;;;;;;14349:5;14169:30;:212::i;:::-;14138:365;;14439:40;;;;;;;;;;;;;;14138:365;14546:3;14530:12;:19;;14046:505;;14632:12;14615:13;;:29;14611:43;;14646:8;;;14611:43;13998:832;;;14695:120;14751:14;;;;;;14747:2;14726:40;;14743:1;14726:40;;;;;;;;;;;;14810:3;14794:12;:19;;14695:120;;13998:832;14860:12;14844:13;:28;;;;13611:1273;;14894:60;14923:1;14927:2;14931:12;14945:8;14894:20;:60::i;:::-;13124:1838;12996:1966;;;;:::o;2118:224:9:-;2186:13;2249:1;2243:4;2236:15;2278:1;2272:4;2265:15;2319:4;2313;2303:21;2294:30;;2118:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;24:722:15:-;120:5;145:81;161:64;218:6;161:64;:::i;:::-;145:81;:::i;:::-;136:90;;246:5;275:6;268:5;261:21;309:4;302:5;298:16;291:23;;335:6;385:3;377:4;369:6;365:17;360:3;356:27;353:36;350:143;;;404:79;;:::i;:::-;350:143;517:1;502:238;527:6;524:1;521:13;502:238;;;595:3;624:37;657:3;645:10;624:37;:::i;:::-;619:3;612:50;691:4;686:3;682:14;675:21;;725:4;720:3;716:14;709:21;;562:178;549:1;546;542:9;537:14;;502:238;;;506:14;126:620;;24:722;;;;;:::o;752:410::-;829:5;854:65;870:48;911:6;870:48;:::i;:::-;854:65;:::i;:::-;845:74;;942:6;935:5;928:21;980:4;973:5;969:16;1018:3;1009:6;1004:3;1000:16;997:25;994:112;;;1025:79;;:::i;:::-;994:112;1115:41;1149:6;1144:3;1139;1115:41;:::i;:::-;835:327;752:410;;;;;:::o;1168:412::-;1246:5;1271:66;1287:49;1329:6;1287:49;:::i;:::-;1271:66;:::i;:::-;1262:75;;1360:6;1353:5;1346:21;1398:4;1391:5;1387:16;1436:3;1427:6;1422:3;1418:16;1415:25;1412:112;;;1443:79;;:::i;:::-;1412:112;1533:41;1567:6;1562:3;1557;1533:41;:::i;:::-;1252:328;1168:412;;;;;:::o;1586:139::-;1632:5;1670:6;1657:20;1648:29;;1686:33;1713:5;1686:33;:::i;:::-;1586:139;;;;:::o;1748:370::-;1819:5;1868:3;1861:4;1853:6;1849:17;1845:27;1835:122;;1876:79;;:::i;:::-;1835:122;1993:6;1980:20;2018:94;2108:3;2100:6;2093:4;2085:6;2081:17;2018:94;:::i;:::-;2009:103;;1825:293;1748:370;;;;:::o;2124:133::-;2167:5;2205:6;2192:20;2183:29;;2221:30;2245:5;2221:30;:::i;:::-;2124:133;;;;:::o;2263:139::-;2309:5;2347:6;2334:20;2325:29;;2363:33;2390:5;2363:33;:::i;:::-;2263:139;;;;:::o;2408:137::-;2453:5;2491:6;2478:20;2469:29;;2507:32;2533:5;2507:32;:::i;:::-;2408:137;;;;:::o;2551:141::-;2607:5;2638:6;2632:13;2623:22;;2654:32;2680:5;2654:32;:::i;:::-;2551:141;;;;:::o;2711:338::-;2766:5;2815:3;2808:4;2800:6;2796:17;2792:27;2782:122;;2823:79;;:::i;:::-;2782:122;2940:6;2927:20;2965:78;3039:3;3031:6;3024:4;3016:6;3012:17;2965:78;:::i;:::-;2956:87;;2772:277;2711:338;;;;:::o;3069:340::-;3125:5;3174:3;3167:4;3159:6;3155:17;3151:27;3141:122;;3182:79;;:::i;:::-;3141:122;3299:6;3286:20;3324:79;3399:3;3391:6;3384:4;3376:6;3372:17;3324:79;:::i;:::-;3315:88;;3131:278;3069:340;;;;:::o;3415:139::-;3461:5;3499:6;3486:20;3477:29;;3515:33;3542:5;3515:33;:::i;:::-;3415:139;;;;:::o;3560:329::-;3619:6;3668:2;3656:9;3647:7;3643:23;3639:32;3636:119;;;3674:79;;:::i;:::-;3636:119;3794:1;3819:53;3864:7;3855:6;3844:9;3840:22;3819:53;:::i;:::-;3809:63;;3765:117;3560:329;;;;:::o;3895:474::-;3963:6;3971;4020:2;4008:9;3999:7;3995:23;3991:32;3988:119;;;4026:79;;:::i;:::-;3988:119;4146:1;4171:53;4216:7;4207:6;4196:9;4192:22;4171:53;:::i;:::-;4161:63;;4117:117;4273:2;4299:53;4344:7;4335:6;4324:9;4320:22;4299:53;:::i;:::-;4289:63;;4244:118;3895:474;;;;;:::o;4375:619::-;4452:6;4460;4468;4517:2;4505:9;4496:7;4492:23;4488:32;4485:119;;;4523:79;;:::i;:::-;4485:119;4643:1;4668:53;4713:7;4704:6;4693:9;4689:22;4668:53;:::i;:::-;4658:63;;4614:117;4770:2;4796:53;4841:7;4832:6;4821:9;4817:22;4796:53;:::i;:::-;4786:63;;4741:118;4898:2;4924:53;4969:7;4960:6;4949:9;4945:22;4924:53;:::i;:::-;4914:63;;4869:118;4375:619;;;;;:::o;5000:943::-;5095:6;5103;5111;5119;5168:3;5156:9;5147:7;5143:23;5139:33;5136:120;;;5175:79;;:::i;:::-;5136:120;5295:1;5320:53;5365:7;5356:6;5345:9;5341:22;5320:53;:::i;:::-;5310:63;;5266:117;5422:2;5448:53;5493:7;5484:6;5473:9;5469:22;5448:53;:::i;:::-;5438:63;;5393:118;5550:2;5576:53;5621:7;5612:6;5601:9;5597:22;5576:53;:::i;:::-;5566:63;;5521:118;5706:2;5695:9;5691:18;5678:32;5737:18;5729:6;5726:30;5723:117;;;5759:79;;:::i;:::-;5723:117;5864:62;5918:7;5909:6;5898:9;5894:22;5864:62;:::i;:::-;5854:72;;5649:287;5000:943;;;;;;;:::o;5949:468::-;6014:6;6022;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:53;6267:7;6258:6;6247:9;6243:22;6222:53;:::i;:::-;6212:63;;6168:117;6324:2;6350:50;6392:7;6383:6;6372:9;6368:22;6350:50;:::i;:::-;6340:60;;6295:115;5949:468;;;;;:::o;6423:474::-;6491:6;6499;6548:2;6536:9;6527:7;6523:23;6519:32;6516:119;;;6554:79;;:::i;:::-;6516:119;6674:1;6699:53;6744:7;6735:6;6724:9;6720:22;6699:53;:::i;:::-;6689:63;;6645:117;6801:2;6827:53;6872:7;6863:6;6852:9;6848:22;6827:53;:::i;:::-;6817:63;;6772:118;6423:474;;;;;:::o;6903:684::-;6996:6;7004;7053:2;7041:9;7032:7;7028:23;7024:32;7021:119;;;7059:79;;:::i;:::-;7021:119;7207:1;7196:9;7192:17;7179:31;7237:18;7229:6;7226:30;7223:117;;;7259:79;;:::i;:::-;7223:117;7364:78;7434:7;7425:6;7414:9;7410:22;7364:78;:::i;:::-;7354:88;;7150:302;7491:2;7517:53;7562:7;7553:6;7542:9;7538:22;7517:53;:::i;:::-;7507:63;;7462:118;6903:684;;;;;:::o;7593:::-;7686:6;7694;7743:2;7731:9;7722:7;7718:23;7714:32;7711:119;;;7749:79;;:::i;:::-;7711:119;7897:1;7886:9;7882:17;7869:31;7927:18;7919:6;7916:30;7913:117;;;7949:79;;:::i;:::-;7913:117;8054:78;8124:7;8115:6;8104:9;8100:22;8054:78;:::i;:::-;8044:88;;7840:302;8181:2;8207:53;8252:7;8243:6;8232:9;8228:22;8207:53;:::i;:::-;8197:63;;8152:118;7593:684;;;;;:::o;8283:329::-;8342:6;8391:2;8379:9;8370:7;8366:23;8362:32;8359:119;;;8397:79;;:::i;:::-;8359:119;8517:1;8542:53;8587:7;8578:6;8567:9;8563:22;8542:53;:::i;:::-;8532:63;;8488:117;8283:329;;;;:::o;8618:327::-;8676:6;8725:2;8713:9;8704:7;8700:23;8696:32;8693:119;;;8731:79;;:::i;:::-;8693:119;8851:1;8876:52;8920:7;8911:6;8900:9;8896:22;8876:52;:::i;:::-;8866:62;;8822:116;8618:327;;;;:::o;8951:349::-;9020:6;9069:2;9057:9;9048:7;9044:23;9040:32;9037:119;;;9075:79;;:::i;:::-;9037:119;9195:1;9220:63;9275:7;9266:6;9255:9;9251:22;9220:63;:::i;:::-;9210:73;;9166:127;8951:349;;;;:::o;9306:509::-;9375:6;9424:2;9412:9;9403:7;9399:23;9395:32;9392:119;;;9430:79;;:::i;:::-;9392:119;9578:1;9567:9;9563:17;9550:31;9608:18;9600:6;9597:30;9594:117;;;9630:79;;:::i;:::-;9594:117;9735:63;9790:7;9781:6;9770:9;9766:22;9735:63;:::i;:::-;9725:73;;9521:287;9306:509;;;;:::o;9821:329::-;9880:6;9929:2;9917:9;9908:7;9904:23;9900:32;9897:119;;;9935:79;;:::i;:::-;9897:119;10055:1;10080:53;10125:7;10116:6;10105:9;10101:22;10080:53;:::i;:::-;10070:63;;10026:117;9821:329;;;;:::o;10156:118::-;10243:24;10261:5;10243:24;:::i;:::-;10238:3;10231:37;10156:118;;:::o;10280:157::-;10385:45;10405:24;10423:5;10405:24;:::i;:::-;10385:45;:::i;:::-;10380:3;10373:58;10280:157;;:::o;10443:109::-;10524:21;10539:5;10524:21;:::i;:::-;10519:3;10512:34;10443:109;;:::o;10558:118::-;10645:24;10663:5;10645:24;:::i;:::-;10640:3;10633:37;10558:118;;:::o;10682:360::-;10768:3;10796:38;10828:5;10796:38;:::i;:::-;10850:70;10913:6;10908:3;10850:70;:::i;:::-;10843:77;;10929:52;10974:6;10969:3;10962:4;10955:5;10951:16;10929:52;:::i;:::-;11006:29;11028:6;11006:29;:::i;:::-;11001:3;10997:39;10990:46;;10772:270;10682:360;;;;:::o;11048:364::-;11136:3;11164:39;11197:5;11164:39;:::i;:::-;11219:71;11283:6;11278:3;11219:71;:::i;:::-;11212:78;;11299:52;11344:6;11339:3;11332:4;11325:5;11321:16;11299:52;:::i;:::-;11376:29;11398:6;11376:29;:::i;:::-;11371:3;11367:39;11360:46;;11140:272;11048:364;;;;:::o;11418:377::-;11524:3;11552:39;11585:5;11552:39;:::i;:::-;11607:89;11689:6;11684:3;11607:89;:::i;:::-;11600:96;;11705:52;11750:6;11745:3;11738:4;11731:5;11727:16;11705:52;:::i;:::-;11782:6;11777:3;11773:16;11766:23;;11528:267;11418:377;;;;:::o;11801:366::-;11943:3;11964:67;12028:2;12023:3;11964:67;:::i;:::-;11957:74;;12040:93;12129:3;12040:93;:::i;:::-;12158:2;12153:3;12149:12;12142:19;;11801:366;;;:::o;12173:::-;12315:3;12336:67;12400:2;12395:3;12336:67;:::i;:::-;12329:74;;12412:93;12501:3;12412:93;:::i;:::-;12530:2;12525:3;12521:12;12514:19;;12173:366;;;:::o;12545:::-;12687:3;12708:67;12772:2;12767:3;12708:67;:::i;:::-;12701:74;;12784:93;12873:3;12784:93;:::i;:::-;12902:2;12897:3;12893:12;12886:19;;12545:366;;;:::o;12917:::-;13059:3;13080:67;13144:2;13139:3;13080:67;:::i;:::-;13073:74;;13156:93;13245:3;13156:93;:::i;:::-;13274:2;13269:3;13265:12;13258:19;;12917:366;;;:::o;13289:::-;13431:3;13452:67;13516:2;13511:3;13452:67;:::i;:::-;13445:74;;13528:93;13617:3;13528:93;:::i;:::-;13646:2;13641:3;13637:12;13630:19;;13289:366;;;:::o;13661:::-;13803:3;13824:67;13888:2;13883:3;13824:67;:::i;:::-;13817:74;;13900:93;13989:3;13900:93;:::i;:::-;14018:2;14013:3;14009:12;14002:19;;13661:366;;;:::o;14033:::-;14175:3;14196:67;14260:2;14255:3;14196:67;:::i;:::-;14189:74;;14272:93;14361:3;14272:93;:::i;:::-;14390:2;14385:3;14381:12;14374:19;;14033:366;;;:::o;14405:::-;14547:3;14568:67;14632:2;14627:3;14568:67;:::i;:::-;14561:74;;14644:93;14733:3;14644:93;:::i;:::-;14762:2;14757:3;14753:12;14746:19;;14405:366;;;:::o;14777:::-;14919:3;14940:67;15004:2;14999:3;14940:67;:::i;:::-;14933:74;;15016:93;15105:3;15016:93;:::i;:::-;15134:2;15129:3;15125:12;15118:19;;14777:366;;;:::o;15149:400::-;15309:3;15330:84;15412:1;15407:3;15330:84;:::i;:::-;15323:91;;15423:93;15512:3;15423:93;:::i;:::-;15541:1;15536:3;15532:11;15525:18;;15149:400;;;:::o;15555:366::-;15697:3;15718:67;15782:2;15777:3;15718:67;:::i;:::-;15711:74;;15794:93;15883:3;15794:93;:::i;:::-;15912:2;15907:3;15903:12;15896:19;;15555:366;;;:::o;15927:::-;16069:3;16090:67;16154:2;16149:3;16090:67;:::i;:::-;16083:74;;16166:93;16255:3;16166:93;:::i;:::-;16284:2;16279:3;16275:12;16268:19;;15927:366;;;:::o;16299:::-;16441:3;16462:67;16526:2;16521:3;16462:67;:::i;:::-;16455:74;;16538:93;16627:3;16538:93;:::i;:::-;16656:2;16651:3;16647:12;16640:19;;16299:366;;;:::o;16671:::-;16813:3;16834:67;16898:2;16893:3;16834:67;:::i;:::-;16827:74;;16910:93;16999:3;16910:93;:::i;:::-;17028:2;17023:3;17019:12;17012:19;;16671:366;;;:::o;17043:::-;17185:3;17206:67;17270:2;17265:3;17206:67;:::i;:::-;17199:74;;17282:93;17371:3;17282:93;:::i;:::-;17400:2;17395:3;17391:12;17384:19;;17043:366;;;:::o;17415:398::-;17574:3;17595:83;17676:1;17671:3;17595:83;:::i;:::-;17588:90;;17687:93;17776:3;17687:93;:::i;:::-;17805:1;17800:3;17796:11;17789:18;;17415:398;;;:::o;17819:366::-;17961:3;17982:67;18046:2;18041:3;17982:67;:::i;:::-;17975:74;;18058:93;18147:3;18058:93;:::i;:::-;18176:2;18171:3;18167:12;18160:19;;17819:366;;;:::o;18191:118::-;18278:24;18296:5;18278:24;:::i;:::-;18273:3;18266:37;18191:118;;:::o;18315:256::-;18427:3;18442:75;18513:3;18504:6;18442:75;:::i;:::-;18542:2;18537:3;18533:12;18526:19;;18562:3;18555:10;;18315:256;;;;:::o;18577:701::-;18858:3;18880:95;18971:3;18962:6;18880:95;:::i;:::-;18873:102;;18992:95;19083:3;19074:6;18992:95;:::i;:::-;18985:102;;19104:148;19248:3;19104:148;:::i;:::-;19097:155;;19269:3;19262:10;;18577:701;;;;;:::o;19284:379::-;19468:3;19490:147;19633:3;19490:147;:::i;:::-;19483:154;;19654:3;19647:10;;19284:379;;;:::o;19669:222::-;19762:4;19800:2;19789:9;19785:18;19777:26;;19813:71;19881:1;19870:9;19866:17;19857:6;19813:71;:::i;:::-;19669:222;;;;:::o;19897:640::-;20092:4;20130:3;20119:9;20115:19;20107:27;;20144:71;20212:1;20201:9;20197:17;20188:6;20144:71;:::i;:::-;20225:72;20293:2;20282:9;20278:18;20269:6;20225:72;:::i;:::-;20307;20375:2;20364:9;20360:18;20351:6;20307:72;:::i;:::-;20426:9;20420:4;20416:20;20411:2;20400:9;20396:18;20389:48;20454:76;20525:4;20516:6;20454:76;:::i;:::-;20446:84;;19897:640;;;;;;;:::o;20543:210::-;20630:4;20668:2;20657:9;20653:18;20645:26;;20681:65;20743:1;20732:9;20728:17;20719:6;20681:65;:::i;:::-;20543:210;;;;:::o;20759:222::-;20852:4;20890:2;20879:9;20875:18;20867:26;;20903:71;20971:1;20960:9;20956:17;20947:6;20903:71;:::i;:::-;20759:222;;;;:::o;20987:313::-;21100:4;21138:2;21127:9;21123:18;21115:26;;21187:9;21181:4;21177:20;21173:1;21162:9;21158:17;21151:47;21215:78;21288:4;21279:6;21215:78;:::i;:::-;21207:86;;20987:313;;;;:::o;21306:419::-;21472:4;21510:2;21499:9;21495:18;21487:26;;21559:9;21553:4;21549:20;21545:1;21534:9;21530:17;21523:47;21587:131;21713:4;21587:131;:::i;:::-;21579:139;;21306:419;;;:::o;21731:::-;21897:4;21935:2;21924:9;21920:18;21912:26;;21984:9;21978:4;21974:20;21970:1;21959:9;21955:17;21948:47;22012:131;22138:4;22012:131;:::i;:::-;22004:139;;21731:419;;;:::o;22156:::-;22322:4;22360:2;22349:9;22345:18;22337:26;;22409:9;22403:4;22399:20;22395:1;22384:9;22380:17;22373:47;22437:131;22563:4;22437:131;:::i;:::-;22429:139;;22156:419;;;:::o;22581:::-;22747:4;22785:2;22774:9;22770:18;22762:26;;22834:9;22828:4;22824:20;22820:1;22809:9;22805:17;22798:47;22862:131;22988:4;22862:131;:::i;:::-;22854:139;;22581:419;;;:::o;23006:::-;23172:4;23210:2;23199:9;23195:18;23187:26;;23259:9;23253:4;23249:20;23245:1;23234:9;23230:17;23223:47;23287:131;23413:4;23287:131;:::i;:::-;23279:139;;23006:419;;;:::o;23431:::-;23597:4;23635:2;23624:9;23620:18;23612:26;;23684:9;23678:4;23674:20;23670:1;23659:9;23655:17;23648:47;23712:131;23838:4;23712:131;:::i;:::-;23704:139;;23431:419;;;:::o;23856:::-;24022:4;24060:2;24049:9;24045:18;24037:26;;24109:9;24103:4;24099:20;24095:1;24084:9;24080:17;24073:47;24137:131;24263:4;24137:131;:::i;:::-;24129:139;;23856:419;;;:::o;24281:::-;24447:4;24485:2;24474:9;24470:18;24462:26;;24534:9;24528:4;24524:20;24520:1;24509:9;24505:17;24498:47;24562:131;24688:4;24562:131;:::i;:::-;24554:139;;24281:419;;;:::o;24706:::-;24872:4;24910:2;24899:9;24895:18;24887:26;;24959:9;24953:4;24949:20;24945:1;24934:9;24930:17;24923:47;24987:131;25113:4;24987:131;:::i;:::-;24979:139;;24706:419;;;:::o;25131:::-;25297:4;25335:2;25324:9;25320:18;25312:26;;25384:9;25378:4;25374:20;25370:1;25359:9;25355:17;25348:47;25412:131;25538:4;25412:131;:::i;:::-;25404:139;;25131:419;;;:::o;25556:::-;25722:4;25760:2;25749:9;25745:18;25737:26;;25809:9;25803:4;25799:20;25795:1;25784:9;25780:17;25773:47;25837:131;25963:4;25837:131;:::i;:::-;25829:139;;25556:419;;;:::o;25981:::-;26147:4;26185:2;26174:9;26170:18;26162:26;;26234:9;26228:4;26224:20;26220:1;26209:9;26205:17;26198:47;26262:131;26388:4;26262:131;:::i;:::-;26254:139;;25981:419;;;:::o;26406:::-;26572:4;26610:2;26599:9;26595:18;26587:26;;26659:9;26653:4;26649:20;26645:1;26634:9;26630:17;26623:47;26687:131;26813:4;26687:131;:::i;:::-;26679:139;;26406:419;;;:::o;26831:::-;26997:4;27035:2;27024:9;27020:18;27012:26;;27084:9;27078:4;27074:20;27070:1;27059:9;27055:17;27048:47;27112:131;27238:4;27112:131;:::i;:::-;27104:139;;26831:419;;;:::o;27256:::-;27422:4;27460:2;27449:9;27445:18;27437:26;;27509:9;27503:4;27499:20;27495:1;27484:9;27480:17;27473:47;27537:131;27663:4;27537:131;:::i;:::-;27529:139;;27256:419;;;:::o;27681:222::-;27774:4;27812:2;27801:9;27797:18;27789:26;;27825:71;27893:1;27882:9;27878:17;27869:6;27825:71;:::i;:::-;27681:222;;;;:::o;27909:129::-;27943:6;27970:20;;:::i;:::-;27960:30;;27999:33;28027:4;28019:6;27999:33;:::i;:::-;27909:129;;;:::o;28044:75::-;28077:6;28110:2;28104:9;28094:19;;28044:75;:::o;28125:311::-;28202:4;28292:18;28284:6;28281:30;28278:56;;;28314:18;;:::i;:::-;28278:56;28364:4;28356:6;28352:17;28344:25;;28424:4;28418;28414:15;28406:23;;28125:311;;;:::o;28442:307::-;28503:4;28593:18;28585:6;28582:30;28579:56;;;28615:18;;:::i;:::-;28579:56;28653:29;28675:6;28653:29;:::i;:::-;28645:37;;28737:4;28731;28727:15;28719:23;;28442:307;;;:::o;28755:308::-;28817:4;28907:18;28899:6;28896:30;28893:56;;;28929:18;;:::i;:::-;28893:56;28967:29;28989:6;28967:29;:::i;:::-;28959:37;;29051:4;29045;29041:15;29033:23;;28755:308;;;:::o;29069:98::-;29120:6;29154:5;29148:12;29138:22;;29069:98;;;:::o;29173:99::-;29225:6;29259:5;29253:12;29243:22;;29173:99;;;:::o;29278:168::-;29361:11;29395:6;29390:3;29383:19;29435:4;29430:3;29426:14;29411:29;;29278:168;;;;:::o;29452:147::-;29553:11;29590:3;29575:18;;29452:147;;;;:::o;29605:169::-;29689:11;29723:6;29718:3;29711:19;29763:4;29758:3;29754:14;29739:29;;29605:169;;;;:::o;29780:148::-;29882:11;29919:3;29904:18;;29780:148;;;;:::o;29934:305::-;29974:3;29993:20;30011:1;29993:20;:::i;:::-;29988:25;;30027:20;30045:1;30027:20;:::i;:::-;30022:25;;30181:1;30113:66;30109:74;30106:1;30103:81;30100:107;;;30187:18;;:::i;:::-;30100:107;30231:1;30228;30224:9;30217:16;;29934:305;;;;:::o;30245:185::-;30285:1;30302:20;30320:1;30302:20;:::i;:::-;30297:25;;30336:20;30354:1;30336:20;:::i;:::-;30331:25;;30375:1;30365:35;;30380:18;;:::i;:::-;30365:35;30422:1;30419;30415:9;30410:14;;30245:185;;;;:::o;30436:348::-;30476:7;30499:20;30517:1;30499:20;:::i;:::-;30494:25;;30533:20;30551:1;30533:20;:::i;:::-;30528:25;;30721:1;30653:66;30649:74;30646:1;30643:81;30638:1;30631:9;30624:17;30620:105;30617:131;;;30728:18;;:::i;:::-;30617:131;30776:1;30773;30769:9;30758:20;;30436:348;;;;:::o;30790:191::-;30830:4;30850:20;30868:1;30850:20;:::i;:::-;30845:25;;30884:20;30902:1;30884:20;:::i;:::-;30879:25;;30923:1;30920;30917:8;30914:34;;;30928:18;;:::i;:::-;30914:34;30973:1;30970;30966:9;30958:17;;30790:191;;;;:::o;30987:96::-;31024:7;31053:24;31071:5;31053:24;:::i;:::-;31042:35;;30987:96;;;:::o;31089:90::-;31123:7;31166:5;31159:13;31152:21;31141:32;;31089:90;;;:::o;31185:77::-;31222:7;31251:5;31240:16;;31185:77;;;:::o;31268:149::-;31304:7;31344:66;31337:5;31333:78;31322:89;;31268:149;;;:::o;31423:126::-;31460:7;31500:42;31493:5;31489:54;31478:65;;31423:126;;;:::o;31555:77::-;31592:7;31621:5;31610:16;;31555:77;;;:::o;31638:154::-;31722:6;31717:3;31712;31699:30;31784:1;31775:6;31770:3;31766:16;31759:27;31638:154;;;:::o;31798:307::-;31866:1;31876:113;31890:6;31887:1;31884:13;31876:113;;;31975:1;31970:3;31966:11;31960:18;31956:1;31951:3;31947:11;31940:39;31912:2;31909:1;31905:10;31900:15;;31876:113;;;32007:6;32004:1;32001:13;31998:101;;;32087:1;32078:6;32073:3;32069:16;32062:27;31998:101;31847:258;31798:307;;;:::o;32111:320::-;32155:6;32192:1;32186:4;32182:12;32172:22;;32239:1;32233:4;32229:12;32260:18;32250:81;;32316:4;32308:6;32304:17;32294:27;;32250:81;32378:2;32370:6;32367:14;32347:18;32344:38;32341:84;;;32397:18;;:::i;:::-;32341:84;32162:269;32111:320;;;:::o;32437:281::-;32520:27;32542:4;32520:27;:::i;:::-;32512:6;32508:40;32650:6;32638:10;32635:22;32614:18;32602:10;32599:34;32596:62;32593:88;;;32661:18;;:::i;:::-;32593:88;32701:10;32697:2;32690:22;32480:238;32437:281;;:::o;32724:233::-;32763:3;32786:24;32804:5;32786:24;:::i;:::-;32777:33;;32832:66;32825:5;32822:77;32819:103;;;32902:18;;:::i;:::-;32819:103;32949:1;32942:5;32938:13;32931:20;;32724:233;;;:::o;32963:100::-;33002:7;33031:26;33051:5;33031:26;:::i;:::-;33020:37;;32963:100;;;:::o;33069:94::-;33108:7;33137:20;33151:5;33137:20;:::i;:::-;33126:31;;33069:94;;;:::o;33169:176::-;33201:1;33218:20;33236:1;33218:20;:::i;:::-;33213:25;;33252:20;33270:1;33252:20;:::i;:::-;33247:25;;33291:1;33281:35;;33296:18;;:::i;:::-;33281:35;33337:1;33334;33330:9;33325:14;;33169:176;;;;:::o;33351:180::-;33399:77;33396:1;33389:88;33496:4;33493:1;33486:15;33520:4;33517:1;33510:15;33537:180;33585:77;33582:1;33575:88;33682:4;33679:1;33672:15;33706:4;33703:1;33696:15;33723:180;33771:77;33768:1;33761:88;33868:4;33865:1;33858:15;33892:4;33889:1;33882:15;33909:180;33957:77;33954:1;33947:88;34054:4;34051:1;34044:15;34078:4;34075:1;34068:15;34095:180;34143:77;34140:1;34133:88;34240:4;34237:1;34230:15;34264:4;34261:1;34254:15;34281:117;34390:1;34387;34380:12;34404:117;34513:1;34510;34503:12;34527:117;34636:1;34633;34626:12;34650:117;34759:1;34756;34749:12;34773:117;34882:1;34879;34872:12;34896:102;34937:6;34988:2;34984:7;34979:2;34972:5;34968:14;34964:28;34954:38;;34896:102;;;:::o;35004:94::-;35037:8;35085:5;35081:2;35077:14;35056:35;;35004:94;;;:::o;35104:173::-;35244:25;35240:1;35232:6;35228:14;35221:49;35104:173;:::o;35283:225::-;35423:34;35419:1;35411:6;35407:14;35400:58;35492:8;35487:2;35479:6;35475:15;35468:33;35283:225;:::o;35514:177::-;35654:29;35650:1;35642:6;35638:14;35631:53;35514:177;:::o;35697:166::-;35837:18;35833:1;35825:6;35821:14;35814:42;35697:166;:::o;35869:181::-;36009:33;36005:1;35997:6;35993:14;35986:57;35869:181;:::o;36056:173::-;36196:25;36192:1;36184:6;36180:14;36173:49;36056:173;:::o;36235:171::-;36375:23;36371:1;36363:6;36359:14;36352:47;36235:171;:::o;36412:170::-;36552:22;36548:1;36540:6;36536:14;36529:46;36412:170;:::o;36588:173::-;36728:25;36724:1;36716:6;36712:14;36705:49;36588:173;:::o;36767:155::-;36907:7;36903:1;36895:6;36891:14;36884:31;36767:155;:::o;36928:169::-;37068:21;37064:1;37056:6;37052:14;37045:45;36928:169;:::o;37103:182::-;37243:34;37239:1;37231:6;37227:14;37220:58;37103:182;:::o;37291:234::-;37431:34;37427:1;37419:6;37415:14;37408:58;37500:17;37495:2;37487:6;37483:15;37476:42;37291:234;:::o;37531:178::-;37671:30;37667:1;37659:6;37655:14;37648:54;37531:178;:::o;37715:174::-;37855:26;37851:1;37843:6;37839:14;37832:50;37715:174;:::o;37895:114::-;;:::o;38015:176::-;38155:28;38151:1;38143:6;38139:14;38132:52;38015:176;:::o;38197:122::-;38270:24;38288:5;38270:24;:::i;:::-;38263:5;38260:35;38250:63;;38309:1;38306;38299:12;38250:63;38197:122;:::o;38325:116::-;38395:21;38410:5;38395:21;:::i;:::-;38388:5;38385:32;38375:60;;38431:1;38428;38421:12;38375:60;38325:116;:::o;38447:122::-;38520:24;38538:5;38520:24;:::i;:::-;38513:5;38510:35;38500:63;;38559:1;38556;38549:12;38500:63;38447:122;:::o;38575:120::-;38647:23;38664:5;38647:23;:::i;:::-;38640:5;38637:34;38627:62;;38685:1;38682;38675:12;38627:62;38575:120;:::o;38701:122::-;38774:24;38792:5;38774:24;:::i;:::-;38767:5;38764:35;38754:63;;38813:1;38810;38803:12;38754:63;38701:122;:::o

Swarm Source

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