ETH Price: $2,969.07 (-1.70%)
Gas: 2 Gwei

Token

Death Date NFT (DDN)
 

Overview

Max Total Supply

7,777 DDN

Holders

402

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A

Other Info

Balance
20 DDN
0x841251f4a7636eeab62b884f13fcfbf472cbef14
Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
DEATH_DATE_NFT

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-07-04
*/

// SPDX-License-Identifier: GPL-3.0

// File: @openzeppelin/contracts/security/ReentrancyGuard.sol


// ⎝⎝✧GͥOͣDͫ✧⎠⎠ ⟦D⟧⟦E⟧⟦A⟧⟦T⟧⟦H⟧ ⟦D⟧⟦A⟧⟦T⟧⟦E⟧ ⟦N⟧⟦F⟧⟦T⟧ ⎝⎝✧GͥOͣDͫ✧⎠⎠

pragma solidity ^0.8.0;

abstract contract ReentrancyGuard {
    
    uint256 private constant _NOT_ENTERED = 1;
    uint256 private constant _ENTERED = 2;

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

    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;

        _;

        _status = _NOT_ENTERED;
    }
}


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


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

pragma solidity ^0.8.0;

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

    function toString(uint256 value) internal pure returns (string memory) {

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

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

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

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


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

pragma solidity ^0.8.0;

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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


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

pragma solidity ^0.8.0;

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: @openzeppelin/contracts/utils/Address.sol


// 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 {
    
    function isContract(address account) internal view returns (bool) {
        return account.code.length > 0;
    }

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

    function functionCall(address target, bytes memory data) internal returns (bytes memory) {
        return functionCall(target, data, "Address: low-level call failed");
    }

    function functionCall(
        address target,
        bytes memory data,
        string memory errorMessage
    ) internal returns (bytes memory) {
        return functionCallWithValue(target, data, 0, errorMessage);
    }

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

    function functionCallWithValue(
        address target,
        bytes memory data,
        uint256 value,
        string memory errorMessage
    ) internal returns (bytes memory) {
        require(address(this).balance >= value, "Address: insufficient balance for call");
        require(isContract(target), "Address: call to non-contract");

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

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

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

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

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

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

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

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

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

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721Receiver.sol)

pragma solidity ^0.8.0;

interface IERC721Receiver {
  
    function onERC721Received(
        address operator,
        address from,
        uint256 tokenId,
        bytes calldata data
    ) external returns (bytes4);
}

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


// 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 {
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;

abstract contract ERC165 is IERC165 {
    /**
     * @dev See {IERC165-supportsInterface}.
     */
    function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) {
        return interfaceId == type(IERC165).interfaceId;
    }
}

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


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC721/IERC721.sol)

pragma solidity ^0.8.0;


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

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

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

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

  
    function ownerOf(uint256 tokenId) external view returns (address owner);


    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes calldata data
    ) external;

  
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;

 
    function transferFrom(
        address from,
        address to,
        uint256 tokenId
    ) external;


    function approve(address to, uint256 tokenId) external;


    function setApprovalForAll(address operator, bool _approved) external;


    function getApproved(uint256 tokenId) external view returns (address operator);

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

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


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

pragma solidity ^0.8.0;


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

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

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

// File: erc721a/contracts/IERC721A.sol


// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;



/**
 * @dev Interface of an ERC721A compliant contract.
 */
interface IERC721A is IERC721, IERC721Metadata {
    /**
     * The caller must own the token or be an approved operator.
     */
    error ApprovalCallerNotOwnerNorApproved();

    /**
     * The token does not exist.
     */
    error ApprovalQueryForNonexistentToken();

    /**
     * The caller cannot approve to their own address.
     */
    error ApproveToCaller();

    /**
     * The caller cannot approve to the current owner.
     */
    error ApprovalToCurrentOwner();

    /**
     * Cannot query the balance for the zero address.
     */
    error BalanceQueryForZeroAddress();

    /**
     * Cannot mint to the zero address.
     */
    error MintToZeroAddress();

    /**
     * The quantity of tokens minted must be more than zero.
     */
    error MintZeroQuantity();

    /**
     * The token does not exist.
     */
    error OwnerQueryForNonexistentToken();

    /**
     * The caller must own the token or be an approved operator.
     */
    error TransferCallerNotOwnerNorApproved();

    /**
     * The token must be owned by `from`.
     */
    error TransferFromIncorrectOwner();

    /**
     * Cannot safely transfer to a contract that does not implement the ERC721Receiver interface.
     */
    error TransferToNonERC721ReceiverImplementer();

    /**
     * Cannot transfer to the zero address.
     */
    error TransferToZeroAddress();

    /**
     * The token does not exist.
     */
    error URIQueryForNonexistentToken();

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

    /**
     * @dev Returns the total amount of tokens stored by the contract.
     * 
     * Burned tokens are calculated here, use `_totalMinted()` if you want to count just minted tokens.
     */
    function totalSupply() external view returns (uint256);
}


// File: erc721a/contracts/ERC721A.sol

// ERC721A Contracts v3.3.0
// Creator: Chiru Labs

pragma solidity ^0.8.4;

/**
 * @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, IERC721A {
    using Address for address;
    using Strings for uint256;

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

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        unchecked {
            if (_startTokenId() <= curr) if (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) if(!isApprovedForAll(owner, _msgSender())) {
            revert ApprovalCallerNotOwnerNorApproved();
        }

        _approve(to, tokenId, owner);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

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

    /**
     * @dev See {IERC721-safeTransferFrom}.
     */
    function safeTransferFrom(
        address from,
        address to,
        uint256 tokenId,
        bytes memory _data
    ) public virtual override {
        _transfer(from, to, tokenId);
        if (to.isContract()) if(!_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;
    }

    /**
     * @dev Equivalent to `_safeMint(to, quantity, '')`.
     */
    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 {
        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 (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 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) 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;

            do {
                emit Transfer(address(0), to, updatedIndex++);
            } while (updatedIndex < end);

            _currentIndex = updatedIndex;
        }
        _afterTokenTransfers(address(0), to, startTokenId, quantity);
    }

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

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

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

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

        _beforeTokenTransfers(from, to, tokenId, 1);

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

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

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

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

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

    /**
     * @dev Equivalent to `_burn(tokenId, false)`.
     */
    function _burn(uint256 tokenId) internal virtual {
        _burn(tokenId, false);
    }

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

        address from = prevOwnership.addr;

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

            if (!isApprovedOrOwner) revert TransferCallerNotOwnerNorApproved();
        }

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

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

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

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

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

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

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

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


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

 
    function _beforeTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}


    function _afterTokenTransfers(
        address from,
        address to,
        uint256 startTokenId,
        uint256 quantity
    ) internal virtual {}
}


// File: contracts/deathdate.sol

// Death Date NFT

pragma solidity >= 0.8.0 < 0.9.0;

contract DEATH_DATE_NFT is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  string public uriPrefix;
  string public notRevealedURI;
  string public uriSuffix = ".json";
  
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 7777;
  uint256 public MaxperTx = 20;
  uint256 public nftPerAddressLimit = 100;

  bool public paused = true;
  bool public revealed = false;

  mapping(address => uint256) public addressMintedBalance;


  constructor() ERC721A ( "Death Date NFT", "DDN" ) {
    setNotRevealedURI( "ipfs://QmfBLKSPW8rSnjSGXQs26p34VaYR6rz1vu2LdhkDSfjUWz/hidden.json" );
  }


  // MODIFIERS
  modifier mintCompliance(uint256 _mintAmount) {
    require(!paused, "The contract is paused!");
    require(_mintAmount > 0, "Mint amount can't be zero.");
    require(tx.origin == msg.sender, "The caller is another contract");
    require(_mintAmount <= MaxperTx, "Max mint per transaction exceeded!");
    require(addressMintedBalance[msg.sender] + _mintAmount <= nftPerAddressLimit, "Max mint amount per address exceeded!");
    require(totalSupply() + _mintAmount <= maxSupply, "Mint amount exceeds max supply!");
    _;
  }

  modifier mintPriceCompliance(uint256 _mintAmount) {
    require(msg.value >= cost * _mintAmount, "Insufficient funds!");
    _;
  }


  //URIs
  function _baseURI() internal view virtual override returns (string memory) {
    return uriPrefix;
  }


  // PUBLIC MINT
  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount) {
    addressMintedBalance[msg.sender] += _mintAmount;
    _safeMint(_msgSender(), _mintAmount);
  }

  // MINT for address
  function mintToAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(totalSupply() + _mintAmount <= maxSupply, "Mint amount exceeds max supply!");
    _safeMint(_receiver, _mintAmount);
  }


  // Check Wallet assets
  function walletOfOwner(address _owner) public view returns (uint256[] memory) {
    uint256 ownerTokenCount = balanceOf(_owner);
    uint256[] memory ownedTokenIds = new uint256[](ownerTokenCount);
    uint256 currentTokenId = _startTokenId();
    uint256 ownedTokenIndex = 0;
    address latestOwnerAddress;

    while (ownedTokenIndex < ownerTokenCount && currentTokenId < _currentIndex) {
      TokenOwnership memory ownership = _ownerships[currentTokenId];

      if (!ownership.burned) {
        if (ownership.addr != address(0)) {
          latestOwnerAddress = ownership.addr;
        }

        if (latestOwnerAddress == _owner) {
          ownedTokenIds[ownedTokenIndex] = currentTokenId;
          ownedTokenIndex++;
        }
      }
      currentTokenId++;
    }
    return ownedTokenIds;
  }


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

  // TOKEN URI <= If you are reading this you are awesome!!
  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(), uriSuffix))
    : "";
    }


  // Only owner
  function setCost(uint256 _cost) public onlyOwner {
    cost = _cost;
  }

  function setMaxperTx(uint256 _maxMintperTx) public onlyOwner {
    MaxperTx = _maxMintperTx;
  }

  // BaseURI
  function setUriPrefix(string memory _uriPrefix) public onlyOwner {
    uriPrefix = _uriPrefix;
  }

  // NotRevealedURI
  function setNotRevealedURI(string memory _notRevealedURI) public onlyOwner {
    notRevealedURI = _notRevealedURI;
  }

  function pause() public onlyOwner {
    if (paused == true) { paused = false; }
    else { paused = true; }
  }

  function reveal() public onlyOwner {
    if (revealed == true) { revealed = false; }
    else { revealed = true; }
  }

  function withdraw() external onlyOwner nonReentrant {
    (bool success, ) = payable(owner()).call{value: address(this).balance}("");
    require(success);
  }
}

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"},{"inputs":[],"name":"URIQueryForNonexistentToken","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":"MaxperTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressMintedBalance","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":"cost","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"}],"name":"mint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"address","name":"_receiver","type":"address"}],"name":"mintToAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"nftPerAddressLimit","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","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":[{"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":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintperTx","type":"uint256"}],"name":"setMaxperTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_notRevealedURI","type":"string"}],"name":"setNotRevealedURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_tokenId","type":"uint256"}],"name":"tokenURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uriPrefix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uriSuffix","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"walletOfOwner","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600c90805190602001906200005192919062000365565b506000600d55611e61600e556014600f5560646010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff021916908315150217905550348015620000aa57600080fd5b506040518060400160405280600e81526020017f44656174682044617465204e46540000000000000000000000000000000000008152506040518060400160405280600381526020017f44444e000000000000000000000000000000000000000000000000000000000081525081600290805190602001906200012f92919062000365565b5080600390805190602001906200014892919062000365565b5062000159620001b960201b60201c565b60008190555050506200018162000175620001c260201b60201c565b620001ca60201b60201c565b6001600981905550620001b36040518060800160405280604181526020016200487e604191396200029060201b60201c565b620004fd565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b620002a0620001c260201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16620002c66200033b60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16146200031f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000316906200043c565b60405180910390fd5b80600b90805190602001906200033792919062000365565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b82805462000373906200046f565b90600052602060002090601f016020900481019282620003975760008555620003e3565b82601f10620003b257805160ff1916838001178555620003e3565b82800160010185558215620003e3579182015b82811115620003e2578251825591602001919060010190620003c5565b5b509050620003f29190620003f6565b5090565b5b8082111562000411576000816000905550600101620003f7565b5090565b6000620004246020836200045e565b91506200043182620004d4565b602082019050919050565b60006020820190508181036000830152620004578162000415565b9050919050565b600082825260208201905092915050565b600060028204905060018216806200048857607f821691505b602082108114156200049f576200049e620004a5565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b614371806200050d6000396000f3fe60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461078c578063e985e9c5146107b7578063f2c4ce1e146107f4578063f2fde38b1461081d578063ff645691146108465761021a565b8063a22cb465146106bb578063a475b5dd146106e4578063b88d4fde146106fb578063ba7d2c7614610724578063c87b56dd1461074f5761021a565b80637ec4a659116100f25780637ec4a659146106095780638456cb59146106325780638da5cb5b1461064957806395d89b4114610674578063a0712d681461069f5761021a565b80636352211e1461054d57806370a082311461058a578063715018a6146105c757806372250380146105de5761021a565b806342842e0e116101a6578063518302271161017557806351830227146104785780635503a0e8146104a35780635c975abb146104ce5780635ef9ff37146104f957806362b99ad4146105225761021a565b806342842e0e146103c0578063438b6300146103e957806344a0d68a14610426578063512b658d1461044f5761021a565b806313faede6116101ed57806313faede6146102ed57806318160ddd1461031857806318cae2691461034357806323b872dd146103805780633ccfd60b146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613497565b610871565b60405161025391906139ee565b60405180910390f35b34801561026857600080fd5b50610271610953565b60405161027e9190613a09565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061353a565b6109e5565b6040516102bb9190613965565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613457565b610a61565b005b3480156102f957600080fd5b50610302610b66565b60405161030f9190613b8b565b60405180910390f35b34801561032457600080fd5b5061032d610b6c565b60405161033a9190613b8b565b60405180910390f35b34801561034f57600080fd5b5061036a600480360381019061036591906132d4565b610b83565b6040516103779190613b8b565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190613341565b610b9b565b005b3480156103b557600080fd5b506103be610bab565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613341565b610cfd565b005b3480156103f557600080fd5b50610410600480360381019061040b91906132d4565b610d1d565b60405161041d91906139cc565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061353a565b610f31565b005b34801561045b57600080fd5b5061047660048036038101906104719190613567565b610fb7565b005b34801561048457600080fd5b5061048d611098565b60405161049a91906139ee565b60405180910390f35b3480156104af57600080fd5b506104b86110ab565b6040516104c59190613a09565b60405180910390f35b3480156104da57600080fd5b506104e3611139565b6040516104f091906139ee565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b919061353a565b61114c565b005b34801561052e57600080fd5b506105376111d2565b6040516105449190613a09565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061353a565b611260565b6040516105819190613965565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac91906132d4565b611276565b6040516105be9190613b8b565b60405180910390f35b3480156105d357600080fd5b506105dc611346565b005b3480156105ea57600080fd5b506105f36113ce565b6040516106009190613a09565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906134f1565b61145c565b005b34801561063e57600080fd5b506106476114f2565b005b34801561065557600080fd5b5061065e6115c8565b60405161066b9190613965565b60405180910390f35b34801561068057600080fd5b506106896115f2565b6040516106969190613a09565b60405180910390f35b6106b960048036038101906106b4919061353a565b611684565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613417565b61196e565b005b3480156106f057600080fd5b506106f9611ae6565b005b34801561070757600080fd5b50610722600480360381019061071d9190613394565b611bbc565b005b34801561073057600080fd5b50610739611c34565b6040516107469190613b8b565b60405180910390f35b34801561075b57600080fd5b506107766004803603810190610771919061353a565b611c3a565b6040516107839190613a09565b60405180910390f35b34801561079857600080fd5b506107a1611d93565b6040516107ae9190613b8b565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613301565b611d99565b6040516107eb91906139ee565b60405180910390f35b34801561080057600080fd5b5061081b600480360381019061081691906134f1565b611e2d565b005b34801561082957600080fd5b50610844600480360381019061083f91906132d4565b611ec3565b005b34801561085257600080fd5b5061085b611fbb565b6040516108689190613b8b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c575061094b82611fc1565b5b9050919050565b60606002805461096290613e94565b80601f016020809104026020016040519081016040528092919081815260200182805461098e90613e94565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b60006109f08261202b565b610a26576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6c82611260565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af3612079565b73ffffffffffffffffffffffffffffffffffffffff1614610b5657610b1f81610b1a612079565b611d99565b610b55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b61838383612081565b505050565b600d5481565b6000610b76612133565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610ba683838361213c565b505050565b610bb3612079565b73ffffffffffffffffffffffffffffffffffffffff16610bd16115c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90613aab565b60405180910390fd5b60026009541415610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6490613b2b565b60405180910390fd5b60026009819055506000610c7f6115c8565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ca290613950565b60006040518083038185875af1925050503d8060008114610cdf576040519150601f19603f3d011682016040523d82523d6000602084013e610ce4565b606091505b5050905080610cf257600080fd5b506001600981905550565b610d1883838360405180602001604052806000815250611bbc565b505050565b60606000610d2a83611276565b905060008167ffffffffffffffff811115610d4857610d4761402d565b5b604051908082528060200260200182016040528015610d765781602001602082028036833780820191505090505b5090506000610d83612133565b90506000805b8482108015610d99575060005483105b15610f24576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f1057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eac57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0f5783858481518110610ef457610ef3613ffe565b5b6020026020010181815250508280610f0b90613ef7565b9350505b5b8380610f1b90613ef7565b94505050610d89565b8395505050505050919050565b610f39612079565b73ffffffffffffffffffffffffffffffffffffffff16610f576115c8565b73ffffffffffffffffffffffffffffffffffffffff1614610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490613aab565b60405180910390fd5b80600d8190555050565b610fbf612079565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6115c8565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613aab565b60405180910390fd5b600e548261103f610b6c565b6110499190613cc9565b111561108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190613a4b565b60405180910390fd5b61109481836125f2565b5050565b601160019054906101000a900460ff1681565b600c80546110b890613e94565b80601f01602080910402602001604051908101604052809291908181526020018280546110e490613e94565b80156111315780601f1061110657610100808354040283529160200191611131565b820191906000526020600020905b81548152906001019060200180831161111457829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b611154612079565b73ffffffffffffffffffffffffffffffffffffffff166111726115c8565b73ffffffffffffffffffffffffffffffffffffffff16146111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90613aab565b60405180910390fd5b80600f8190555050565b600a80546111df90613e94565b80601f016020809104026020016040519081016040528092919081815260200182805461120b90613e94565b80156112585780601f1061122d57610100808354040283529160200191611258565b820191906000526020600020905b81548152906001019060200180831161123b57829003601f168201915b505050505081565b600061126b82612610565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112de576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61134e612079565b73ffffffffffffffffffffffffffffffffffffffff1661136c6115c8565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990613aab565b60405180910390fd5b6113cc600061289b565b565b600b80546113db90613e94565b80601f016020809104026020016040519081016040528092919081815260200182805461140790613e94565b80156114545780601f1061142957610100808354040283529160200191611454565b820191906000526020600020905b81548152906001019060200180831161143757829003601f168201915b505050505081565b611464612079565b73ffffffffffffffffffffffffffffffffffffffff166114826115c8565b73ffffffffffffffffffffffffffffffffffffffff16146114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613aab565b60405180910390fd5b80600a90805190602001906114ee9291906130a5565b5050565b6114fa612079565b73ffffffffffffffffffffffffffffffffffffffff166115186115c8565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590613aab565b60405180910390fd5b60011515601160009054906101000a900460ff16151514156115aa576000601160006101000a81548160ff0219169083151502179055506115c6565b6001601160006101000a81548160ff0219169083151502179055505b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461160190613e94565b80601f016020809104026020016040519081016040528092919081815260200182805461162d90613e94565b801561167a5780601f1061164f5761010080835404028352916020019161167a565b820191906000526020600020905b81548152906001019060200180831161165d57829003601f168201915b5050505050905090565b80601160009054906101000a900460ff16156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613acb565b60405180910390fd5b60008111611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90613a8b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90613a6b565b60405180910390fd5b600f548111156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613b0b565b60405180910390fd5b60105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118199190613cc9565b111561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613aeb565b60405180910390fd5b600e5481611866610b6c565b6118709190613cc9565b11156118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890613a4b565b60405180910390fd5b8180600d546118c09190613d50565b341015611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990613b6b565b60405180910390fd5b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119519190613cc9565b92505081905550611969611963612079565b846125f2565b505050565b611976612079565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119db576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119e8612079565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a95612079565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ada91906139ee565b60405180910390a35050565b611aee612079565b73ffffffffffffffffffffffffffffffffffffffff16611b0c6115c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5990613aab565b60405180910390fd5b60011515601160019054906101000a900460ff1615151415611b9e576000601160016101000a81548160ff021916908315150217905550611bba565b6001601160016101000a81548160ff0219169083151502179055505b565b611bc784848461213c565b611be68373ffffffffffffffffffffffffffffffffffffffff16612961565b15611c2e57611bf784848484612984565b611c2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b6060611c458261202b565b611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613b4b565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611d3257600b8054611cad90613e94565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd990613e94565b8015611d265780601f10611cfb57610100808354040283529160200191611d26565b820191906000526020600020905b815481529060010190602001808311611d0957829003601f168201915b50505050509050611d8e565b6000611d3c612ae4565b90506000815111611d5c5760405180602001604052806000815250611d8a565b80611d6684612b76565b600c604051602001611d7a9392919061391f565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e35612079565b73ffffffffffffffffffffffffffffffffffffffff16611e536115c8565b73ffffffffffffffffffffffffffffffffffffffff1614611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090613aab565b60405180910390fd5b80600b9080519060200190611ebf9291906130a5565b5050565b611ecb612079565b73ffffffffffffffffffffffffffffffffffffffff16611ee96115c8565b73ffffffffffffffffffffffffffffffffffffffff1614611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3690613aab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa690613a2b565b60405180910390fd5b611fb88161289b565b50565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612036612133565b11158015612045575060005482105b8015612072575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061214782612610565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121d3612079565b73ffffffffffffffffffffffffffffffffffffffff1614806122025750612201856121fc612079565b611d99565b5b806122475750612210612079565b73ffffffffffffffffffffffffffffffffffffffff1661222f846109e5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612280576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122e7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122f48585856001612cd7565b61230060008487612081565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561258057600054821461257f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125eb8585856001612cdd565b5050505050565b61260c828260405180602001604052806000815250612ce3565b5050565b61261861312b565b600082905080612626612133565b1161286457600054811015612863576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161286157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612745578092505050612896565b5b60011561286057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461285b578092505050612896565b612746565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129aa612079565b8786866040518563ffffffff1660e01b81526004016129cc9493929190613980565b602060405180830381600087803b1580156129e657600080fd5b505af1925050508015612a1757506040513d601f19601f82011682018060405250810190612a1491906134c4565b60015b612a91573d8060008114612a47576040519150601f19603f3d011682016040523d82523d6000602084013e612a4c565b606091505b50600081511415612a89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612af390613e94565b80601f0160208091040260200160405190810160405280929190818152602001828054612b1f90613e94565b8015612b6c5780601f10612b4157610100808354040283529160200191612b6c565b820191906000526020600020905b815481529060010190602001808311612b4f57829003601f168201915b5050505050905090565b60606000821415612bbe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cd2565b600082905060005b60008214612bf0578080612bd990613ef7565b915050600a82612be99190613d1f565b9150612bc6565b60008167ffffffffffffffff811115612c0c57612c0b61402d565b5b6040519080825280601f01601f191660200182016040528015612c3e5781602001600182028036833780820191505090505b5090505b60008514612ccb57600182612c579190613daa565b9150600a85612c669190613f40565b6030612c729190613cc9565b60f81b818381518110612c8857612c87613ffe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cc49190613d1f565b9450612c42565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d50576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612d8b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d986000858386612cd7565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612f598673ffffffffffffffffffffffffffffffffffffffff16612961565b1561301e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fce6000878480600101955087612984565b613004576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612f5f57826000541461301957600080fd5b613089565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061301f575b81600081905550505061309f6000858386612cdd565b50505050565b8280546130b190613e94565b90600052602060002090601f0160209004810192826130d3576000855561311a565b82601f106130ec57805160ff191683800117855561311a565b8280016001018555821561311a579182015b828111156131195782518255916020019190600101906130fe565b5b509050613127919061316e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561318757600081600090555060010161316f565b5090565b600061319e61319984613bcb565b613ba6565b9050828152602081018484840111156131ba576131b9614061565b5b6131c5848285613e52565b509392505050565b60006131e06131db84613bfc565b613ba6565b9050828152602081018484840111156131fc576131fb614061565b5b613207848285613e52565b509392505050565b60008135905061321e816142df565b92915050565b600081359050613233816142f6565b92915050565b6000813590506132488161430d565b92915050565b60008151905061325d8161430d565b92915050565b600082601f8301126132785761327761405c565b5b813561328884826020860161318b565b91505092915050565b600082601f8301126132a6576132a561405c565b5b81356132b68482602086016131cd565b91505092915050565b6000813590506132ce81614324565b92915050565b6000602082840312156132ea576132e961406b565b5b60006132f88482850161320f565b91505092915050565b600080604083850312156133185761331761406b565b5b60006133268582860161320f565b92505060206133378582860161320f565b9150509250929050565b60008060006060848603121561335a5761335961406b565b5b60006133688682870161320f565b93505060206133798682870161320f565b925050604061338a868287016132bf565b9150509250925092565b600080600080608085870312156133ae576133ad61406b565b5b60006133bc8782880161320f565b94505060206133cd8782880161320f565b93505060406133de878288016132bf565b925050606085013567ffffffffffffffff8111156133ff576133fe614066565b5b61340b87828801613263565b91505092959194509250565b6000806040838503121561342e5761342d61406b565b5b600061343c8582860161320f565b925050602061344d85828601613224565b9150509250929050565b6000806040838503121561346e5761346d61406b565b5b600061347c8582860161320f565b925050602061348d858286016132bf565b9150509250929050565b6000602082840312156134ad576134ac61406b565b5b60006134bb84828501613239565b91505092915050565b6000602082840312156134da576134d961406b565b5b60006134e88482850161324e565b91505092915050565b6000602082840312156135075761350661406b565b5b600082013567ffffffffffffffff81111561352557613524614066565b5b61353184828501613291565b91505092915050565b6000602082840312156135505761354f61406b565b5b600061355e848285016132bf565b91505092915050565b6000806040838503121561357e5761357d61406b565b5b600061358c858286016132bf565b925050602061359d8582860161320f565b9150509250929050565b60006135b38383613901565b60208301905092915050565b6135c881613dde565b82525050565b60006135d982613c52565b6135e38185613c80565b93506135ee83613c2d565b8060005b8381101561361f57815161360688826135a7565b975061361183613c73565b9250506001810190506135f2565b5085935050505092915050565b61363581613df0565b82525050565b600061364682613c5d565b6136508185613c91565b9350613660818560208601613e61565b61366981614070565b840191505092915050565b600061367f82613c68565b6136898185613cad565b9350613699818560208601613e61565b6136a281614070565b840191505092915050565b60006136b882613c68565b6136c28185613cbe565b93506136d2818560208601613e61565b80840191505092915050565b600081546136eb81613e94565b6136f58186613cbe565b94506001821660008114613710576001811461372157613754565b60ff19831686528186019350613754565b61372a85613c3d565b60005b8381101561374c5781548189015260018201915060208101905061372d565b838801955050505b50505092915050565b600061376a602683613cad565b915061377582614081565b604082019050919050565b600061378d601f83613cad565b9150613798826140d0565b602082019050919050565b60006137b0601e83613cad565b91506137bb826140f9565b602082019050919050565b60006137d3601a83613cad565b91506137de82614122565b602082019050919050565b60006137f6602083613cad565b91506138018261414b565b602082019050919050565b6000613819601783613cad565b915061382482614174565b602082019050919050565b600061383c600083613ca2565b91506138478261419d565b600082019050919050565b600061385f602583613cad565b915061386a826141a0565b604082019050919050565b6000613882602283613cad565b915061388d826141ef565b604082019050919050565b60006138a5601f83613cad565b91506138b08261423e565b602082019050919050565b60006138c8603083613cad565b91506138d382614267565b604082019050919050565b60006138eb601383613cad565b91506138f6826142b6565b602082019050919050565b61390a81613e48565b82525050565b61391981613e48565b82525050565b600061392b82866136ad565b915061393782856136ad565b915061394382846136de565b9150819050949350505050565b600061395b8261382f565b9150819050919050565b600060208201905061397a60008301846135bf565b92915050565b600060808201905061399560008301876135bf565b6139a260208301866135bf565b6139af6040830185613910565b81810360608301526139c1818461363b565b905095945050505050565b600060208201905081810360008301526139e681846135ce565b905092915050565b6000602082019050613a03600083018461362c565b92915050565b60006020820190508181036000830152613a238184613674565b905092915050565b60006020820190508181036000830152613a448161375d565b9050919050565b60006020820190508181036000830152613a6481613780565b9050919050565b60006020820190508181036000830152613a84816137a3565b9050919050565b60006020820190508181036000830152613aa4816137c6565b9050919050565b60006020820190508181036000830152613ac4816137e9565b9050919050565b60006020820190508181036000830152613ae48161380c565b9050919050565b60006020820190508181036000830152613b0481613852565b9050919050565b60006020820190508181036000830152613b2481613875565b9050919050565b60006020820190508181036000830152613b4481613898565b9050919050565b60006020820190508181036000830152613b64816138bb565b9050919050565b60006020820190508181036000830152613b84816138de565b9050919050565b6000602082019050613ba06000830184613910565b92915050565b6000613bb0613bc1565b9050613bbc8282613ec6565b919050565b6000604051905090565b600067ffffffffffffffff821115613be657613be561402d565b5b613bef82614070565b9050602081019050919050565b600067ffffffffffffffff821115613c1757613c1661402d565b5b613c2082614070565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd482613e48565b9150613cdf83613e48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1457613d13613f71565b5b828201905092915050565b6000613d2a82613e48565b9150613d3583613e48565b925082613d4557613d44613fa0565b5b828204905092915050565b6000613d5b82613e48565b9150613d6683613e48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d9f57613d9e613f71565b5b828202905092915050565b6000613db582613e48565b9150613dc083613e48565b925082821015613dd357613dd2613f71565b5b828203905092915050565b6000613de982613e28565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e7f578082015181840152602081019050613e64565b83811115613e8e576000848401525b50505050565b60006002820490506001821680613eac57607f821691505b60208210811415613ec057613ebf613fcf565b5b50919050565b613ecf82614070565b810181811067ffffffffffffffff82111715613eee57613eed61402d565b5b80604052505050565b6000613f0282613e48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3557613f34613f71565b5b600182019050919050565b6000613f4b82613e48565b9150613f5683613e48565b925082613f6657613f65613fa0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d6178206d696e7420616d6f756e74207065722061646472657373206578636560008201527f6564656421000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7420706572207472616e73616374696f6e206578636565646560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6142e881613dde565b81146142f357600080fd5b50565b6142ff81613df0565b811461430a57600080fd5b50565b61431681613dfc565b811461432157600080fd5b50565b61432d81613e48565b811461433857600080fd5b5056fea26469706673582212200426706692dbfd4479229cc214695c8e9f3f87fd427a2d683283598716ac277264736f6c63430008070033697066733a2f2f516d66424c4b5350573872536e6a534758517332367033345661595236727a317675324c64686b4453666a55577a2f68696464656e2e6a736f6e

Deployed Bytecode

0x60806040526004361061021a5760003560e01c80636352211e11610123578063a22cb465116100ab578063d5abeb011161006f578063d5abeb011461078c578063e985e9c5146107b7578063f2c4ce1e146107f4578063f2fde38b1461081d578063ff645691146108465761021a565b8063a22cb465146106bb578063a475b5dd146106e4578063b88d4fde146106fb578063ba7d2c7614610724578063c87b56dd1461074f5761021a565b80637ec4a659116100f25780637ec4a659146106095780638456cb59146106325780638da5cb5b1461064957806395d89b4114610674578063a0712d681461069f5761021a565b80636352211e1461054d57806370a082311461058a578063715018a6146105c757806372250380146105de5761021a565b806342842e0e116101a6578063518302271161017557806351830227146104785780635503a0e8146104a35780635c975abb146104ce5780635ef9ff37146104f957806362b99ad4146105225761021a565b806342842e0e146103c0578063438b6300146103e957806344a0d68a14610426578063512b658d1461044f5761021a565b806313faede6116101ed57806313faede6146102ed57806318160ddd1461031857806318cae2691461034357806323b872dd146103805780633ccfd60b146103a95761021a565b806301ffc9a71461021f57806306fdde031461025c578063081812fc14610287578063095ea7b3146102c4575b600080fd5b34801561022b57600080fd5b5061024660048036038101906102419190613497565b610871565b60405161025391906139ee565b60405180910390f35b34801561026857600080fd5b50610271610953565b60405161027e9190613a09565b60405180910390f35b34801561029357600080fd5b506102ae60048036038101906102a9919061353a565b6109e5565b6040516102bb9190613965565b60405180910390f35b3480156102d057600080fd5b506102eb60048036038101906102e69190613457565b610a61565b005b3480156102f957600080fd5b50610302610b66565b60405161030f9190613b8b565b60405180910390f35b34801561032457600080fd5b5061032d610b6c565b60405161033a9190613b8b565b60405180910390f35b34801561034f57600080fd5b5061036a600480360381019061036591906132d4565b610b83565b6040516103779190613b8b565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190613341565b610b9b565b005b3480156103b557600080fd5b506103be610bab565b005b3480156103cc57600080fd5b506103e760048036038101906103e29190613341565b610cfd565b005b3480156103f557600080fd5b50610410600480360381019061040b91906132d4565b610d1d565b60405161041d91906139cc565b60405180910390f35b34801561043257600080fd5b5061044d6004803603810190610448919061353a565b610f31565b005b34801561045b57600080fd5b5061047660048036038101906104719190613567565b610fb7565b005b34801561048457600080fd5b5061048d611098565b60405161049a91906139ee565b60405180910390f35b3480156104af57600080fd5b506104b86110ab565b6040516104c59190613a09565b60405180910390f35b3480156104da57600080fd5b506104e3611139565b6040516104f091906139ee565b60405180910390f35b34801561050557600080fd5b50610520600480360381019061051b919061353a565b61114c565b005b34801561052e57600080fd5b506105376111d2565b6040516105449190613a09565b60405180910390f35b34801561055957600080fd5b50610574600480360381019061056f919061353a565b611260565b6040516105819190613965565b60405180910390f35b34801561059657600080fd5b506105b160048036038101906105ac91906132d4565b611276565b6040516105be9190613b8b565b60405180910390f35b3480156105d357600080fd5b506105dc611346565b005b3480156105ea57600080fd5b506105f36113ce565b6040516106009190613a09565b60405180910390f35b34801561061557600080fd5b50610630600480360381019061062b91906134f1565b61145c565b005b34801561063e57600080fd5b506106476114f2565b005b34801561065557600080fd5b5061065e6115c8565b60405161066b9190613965565b60405180910390f35b34801561068057600080fd5b506106896115f2565b6040516106969190613a09565b60405180910390f35b6106b960048036038101906106b4919061353a565b611684565b005b3480156106c757600080fd5b506106e260048036038101906106dd9190613417565b61196e565b005b3480156106f057600080fd5b506106f9611ae6565b005b34801561070757600080fd5b50610722600480360381019061071d9190613394565b611bbc565b005b34801561073057600080fd5b50610739611c34565b6040516107469190613b8b565b60405180910390f35b34801561075b57600080fd5b506107766004803603810190610771919061353a565b611c3a565b6040516107839190613a09565b60405180910390f35b34801561079857600080fd5b506107a1611d93565b6040516107ae9190613b8b565b60405180910390f35b3480156107c357600080fd5b506107de60048036038101906107d99190613301565b611d99565b6040516107eb91906139ee565b60405180910390f35b34801561080057600080fd5b5061081b600480360381019061081691906134f1565b611e2d565b005b34801561082957600080fd5b50610844600480360381019061083f91906132d4565b611ec3565b005b34801561085257600080fd5b5061085b611fbb565b6040516108689190613b8b565b60405180910390f35b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916148061093c57507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b8061094c575061094b82611fc1565b5b9050919050565b60606002805461096290613e94565b80601f016020809104026020016040519081016040528092919081815260200182805461098e90613e94565b80156109db5780601f106109b0576101008083540402835291602001916109db565b820191906000526020600020905b8154815290600101906020018083116109be57829003601f168201915b5050505050905090565b60006109f08261202b565b610a26576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610a6c82611260565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610ad4576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610af3612079565b73ffffffffffffffffffffffffffffffffffffffff1614610b5657610b1f81610b1a612079565b611d99565b610b55576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610b61838383612081565b505050565b600d5481565b6000610b76612133565b6001546000540303905090565b60126020528060005260406000206000915090505481565b610ba683838361213c565b505050565b610bb3612079565b73ffffffffffffffffffffffffffffffffffffffff16610bd16115c8565b73ffffffffffffffffffffffffffffffffffffffff1614610c27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c1e90613aab565b60405180910390fd5b60026009541415610c6d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6490613b2b565b60405180910390fd5b60026009819055506000610c7f6115c8565b73ffffffffffffffffffffffffffffffffffffffff1647604051610ca290613950565b60006040518083038185875af1925050503d8060008114610cdf576040519150601f19603f3d011682016040523d82523d6000602084013e610ce4565b606091505b5050905080610cf257600080fd5b506001600981905550565b610d1883838360405180602001604052806000815250611bbc565b505050565b60606000610d2a83611276565b905060008167ffffffffffffffff811115610d4857610d4761402d565b5b604051908082528060200260200182016040528015610d765781602001602082028036833780820191505090505b5090506000610d83612133565b90506000805b8482108015610d99575060005483105b15610f24576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff16151515158152505090508060400151610f1057600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614610eac57806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415610f0f5783858481518110610ef457610ef3613ffe565b5b6020026020010181815250508280610f0b90613ef7565b9350505b5b8380610f1b90613ef7565b94505050610d89565b8395505050505050919050565b610f39612079565b73ffffffffffffffffffffffffffffffffffffffff16610f576115c8565b73ffffffffffffffffffffffffffffffffffffffff1614610fad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fa490613aab565b60405180910390fd5b80600d8190555050565b610fbf612079565b73ffffffffffffffffffffffffffffffffffffffff16610fdd6115c8565b73ffffffffffffffffffffffffffffffffffffffff1614611033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161102a90613aab565b60405180910390fd5b600e548261103f610b6c565b6110499190613cc9565b111561108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190613a4b565b60405180910390fd5b61109481836125f2565b5050565b601160019054906101000a900460ff1681565b600c80546110b890613e94565b80601f01602080910402602001604051908101604052809291908181526020018280546110e490613e94565b80156111315780601f1061110657610100808354040283529160200191611131565b820191906000526020600020905b81548152906001019060200180831161111457829003601f168201915b505050505081565b601160009054906101000a900460ff1681565b611154612079565b73ffffffffffffffffffffffffffffffffffffffff166111726115c8565b73ffffffffffffffffffffffffffffffffffffffff16146111c8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111bf90613aab565b60405180910390fd5b80600f8190555050565b600a80546111df90613e94565b80601f016020809104026020016040519081016040528092919081815260200182805461120b90613e94565b80156112585780601f1061122d57610100808354040283529160200191611258565b820191906000526020600020905b81548152906001019060200180831161123b57829003601f168201915b505050505081565b600061126b82612610565b600001519050919050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156112de576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b61134e612079565b73ffffffffffffffffffffffffffffffffffffffff1661136c6115c8565b73ffffffffffffffffffffffffffffffffffffffff16146113c2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113b990613aab565b60405180910390fd5b6113cc600061289b565b565b600b80546113db90613e94565b80601f016020809104026020016040519081016040528092919081815260200182805461140790613e94565b80156114545780601f1061142957610100808354040283529160200191611454565b820191906000526020600020905b81548152906001019060200180831161143757829003601f168201915b505050505081565b611464612079565b73ffffffffffffffffffffffffffffffffffffffff166114826115c8565b73ffffffffffffffffffffffffffffffffffffffff16146114d8576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114cf90613aab565b60405180910390fd5b80600a90805190602001906114ee9291906130a5565b5050565b6114fa612079565b73ffffffffffffffffffffffffffffffffffffffff166115186115c8565b73ffffffffffffffffffffffffffffffffffffffff161461156e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161156590613aab565b60405180910390fd5b60011515601160009054906101000a900460ff16151514156115aa576000601160006101000a81548160ff0219169083151502179055506115c6565b6001601160006101000a81548160ff0219169083151502179055505b565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606003805461160190613e94565b80601f016020809104026020016040519081016040528092919081815260200182805461162d90613e94565b801561167a5780601f1061164f5761010080835404028352916020019161167a565b820191906000526020600020905b81548152906001019060200180831161165d57829003601f168201915b5050505050905090565b80601160009054906101000a900460ff16156116d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116cc90613acb565b60405180910390fd5b60008111611718576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170f90613a8b565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff163273ffffffffffffffffffffffffffffffffffffffff1614611786576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161177d90613a6b565b60405180910390fd5b600f548111156117cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c290613b0b565b60405180910390fd5b60105481601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546118199190613cc9565b111561185a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161185190613aeb565b60405180910390fd5b600e5481611866610b6c565b6118709190613cc9565b11156118b1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a890613a4b565b60405180910390fd5b8180600d546118c09190613d50565b341015611902576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118f990613b6b565b60405180910390fd5b82601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008282546119519190613cc9565b92505081905550611969611963612079565b846125f2565b505050565b611976612079565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156119db576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600760006119e8612079565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611a95612079565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611ada91906139ee565b60405180910390a35050565b611aee612079565b73ffffffffffffffffffffffffffffffffffffffff16611b0c6115c8565b73ffffffffffffffffffffffffffffffffffffffff1614611b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b5990613aab565b60405180910390fd5b60011515601160019054906101000a900460ff1615151415611b9e576000601160016101000a81548160ff021916908315150217905550611bba565b6001601160016101000a81548160ff0219169083151502179055505b565b611bc784848461213c565b611be68373ffffffffffffffffffffffffffffffffffffffff16612961565b15611c2e57611bf784848484612984565b611c2d576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b60105481565b6060611c458261202b565b611c84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c7b90613b4b565b60405180910390fd5b60001515601160019054906101000a900460ff1615151415611d3257600b8054611cad90613e94565b80601f0160208091040260200160405190810160405280929190818152602001828054611cd990613e94565b8015611d265780601f10611cfb57610100808354040283529160200191611d26565b820191906000526020600020905b815481529060010190602001808311611d0957829003601f168201915b50505050509050611d8e565b6000611d3c612ae4565b90506000815111611d5c5760405180602001604052806000815250611d8a565b80611d6684612b76565b600c604051602001611d7a9392919061391f565b6040516020818303038152906040525b9150505b919050565b600e5481565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b611e35612079565b73ffffffffffffffffffffffffffffffffffffffff16611e536115c8565b73ffffffffffffffffffffffffffffffffffffffff1614611ea9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ea090613aab565b60405180910390fd5b80600b9080519060200190611ebf9291906130a5565b5050565b611ecb612079565b73ffffffffffffffffffffffffffffffffffffffff16611ee96115c8565b73ffffffffffffffffffffffffffffffffffffffff1614611f3f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3690613aab565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415611faf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fa690613a2b565b60405180910390fd5b611fb88161289b565b50565b600f5481565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600081612036612133565b11158015612045575060005482105b8015612072575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b600061214782612610565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146121b2576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff166121d3612079565b73ffffffffffffffffffffffffffffffffffffffff1614806122025750612201856121fc612079565b611d99565b5b806122475750612210612079565b73ffffffffffffffffffffffffffffffffffffffff1661222f846109e5565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612280576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1614156122e7576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6122f48585856001612cd7565b61230060008487612081565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16141561258057600054821461257f57878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a46125eb8585856001612cdd565b5050505050565b61260c828260405180602001604052806000815250612ce3565b5050565b61261861312b565b600082905080612626612133565b1161286457600054811015612863576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050806040015161286157600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612745578092505050612896565b5b60011561286057818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461285b578092505050612896565b612746565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026129aa612079565b8786866040518563ffffffff1660e01b81526004016129cc9493929190613980565b602060405180830381600087803b1580156129e657600080fd5b505af1925050508015612a1757506040513d601f19601f82011682018060405250810190612a1491906134c4565b60015b612a91573d8060008114612a47576040519150601f19603f3d011682016040523d82523d6000602084013e612a4c565b606091505b50600081511415612a89576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600a8054612af390613e94565b80601f0160208091040260200160405190810160405280929190818152602001828054612b1f90613e94565b8015612b6c5780601f10612b4157610100808354040283529160200191612b6c565b820191906000526020600020905b815481529060010190602001808311612b4f57829003601f168201915b5050505050905090565b60606000821415612bbe576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050612cd2565b600082905060005b60008214612bf0578080612bd990613ef7565b915050600a82612be99190613d1f565b9150612bc6565b60008167ffffffffffffffff811115612c0c57612c0b61402d565b5b6040519080825280601f01601f191660200182016040528015612c3e5781602001600182028036833780820191505090505b5090505b60008514612ccb57600182612c579190613daa565b9150600a85612c669190613f40565b6030612c729190613cc9565b60f81b818381518110612c8857612c87613ffe565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85612cc49190613d1f565b9450612c42565b8093505050505b919050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff161415612d50576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6000831415612d8b576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612d986000858386612cd7565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050612f598673ffffffffffffffffffffffffffffffffffffffff16612961565b1561301e575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612fce6000878480600101955087612984565b613004576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210612f5f57826000541461301957600080fd5b613089565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a480821061301f575b81600081905550505061309f6000858386612cdd565b50505050565b8280546130b190613e94565b90600052602060002090601f0160209004810192826130d3576000855561311a565b82601f106130ec57805160ff191683800117855561311a565b8280016001018555821561311a579182015b828111156131195782518255916020019190600101906130fe565b5b509050613127919061316e565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b8082111561318757600081600090555060010161316f565b5090565b600061319e61319984613bcb565b613ba6565b9050828152602081018484840111156131ba576131b9614061565b5b6131c5848285613e52565b509392505050565b60006131e06131db84613bfc565b613ba6565b9050828152602081018484840111156131fc576131fb614061565b5b613207848285613e52565b509392505050565b60008135905061321e816142df565b92915050565b600081359050613233816142f6565b92915050565b6000813590506132488161430d565b92915050565b60008151905061325d8161430d565b92915050565b600082601f8301126132785761327761405c565b5b813561328884826020860161318b565b91505092915050565b600082601f8301126132a6576132a561405c565b5b81356132b68482602086016131cd565b91505092915050565b6000813590506132ce81614324565b92915050565b6000602082840312156132ea576132e961406b565b5b60006132f88482850161320f565b91505092915050565b600080604083850312156133185761331761406b565b5b60006133268582860161320f565b92505060206133378582860161320f565b9150509250929050565b60008060006060848603121561335a5761335961406b565b5b60006133688682870161320f565b93505060206133798682870161320f565b925050604061338a868287016132bf565b9150509250925092565b600080600080608085870312156133ae576133ad61406b565b5b60006133bc8782880161320f565b94505060206133cd8782880161320f565b93505060406133de878288016132bf565b925050606085013567ffffffffffffffff8111156133ff576133fe614066565b5b61340b87828801613263565b91505092959194509250565b6000806040838503121561342e5761342d61406b565b5b600061343c8582860161320f565b925050602061344d85828601613224565b9150509250929050565b6000806040838503121561346e5761346d61406b565b5b600061347c8582860161320f565b925050602061348d858286016132bf565b9150509250929050565b6000602082840312156134ad576134ac61406b565b5b60006134bb84828501613239565b91505092915050565b6000602082840312156134da576134d961406b565b5b60006134e88482850161324e565b91505092915050565b6000602082840312156135075761350661406b565b5b600082013567ffffffffffffffff81111561352557613524614066565b5b61353184828501613291565b91505092915050565b6000602082840312156135505761354f61406b565b5b600061355e848285016132bf565b91505092915050565b6000806040838503121561357e5761357d61406b565b5b600061358c858286016132bf565b925050602061359d8582860161320f565b9150509250929050565b60006135b38383613901565b60208301905092915050565b6135c881613dde565b82525050565b60006135d982613c52565b6135e38185613c80565b93506135ee83613c2d565b8060005b8381101561361f57815161360688826135a7565b975061361183613c73565b9250506001810190506135f2565b5085935050505092915050565b61363581613df0565b82525050565b600061364682613c5d565b6136508185613c91565b9350613660818560208601613e61565b61366981614070565b840191505092915050565b600061367f82613c68565b6136898185613cad565b9350613699818560208601613e61565b6136a281614070565b840191505092915050565b60006136b882613c68565b6136c28185613cbe565b93506136d2818560208601613e61565b80840191505092915050565b600081546136eb81613e94565b6136f58186613cbe565b94506001821660008114613710576001811461372157613754565b60ff19831686528186019350613754565b61372a85613c3d565b60005b8381101561374c5781548189015260018201915060208101905061372d565b838801955050505b50505092915050565b600061376a602683613cad565b915061377582614081565b604082019050919050565b600061378d601f83613cad565b9150613798826140d0565b602082019050919050565b60006137b0601e83613cad565b91506137bb826140f9565b602082019050919050565b60006137d3601a83613cad565b91506137de82614122565b602082019050919050565b60006137f6602083613cad565b91506138018261414b565b602082019050919050565b6000613819601783613cad565b915061382482614174565b602082019050919050565b600061383c600083613ca2565b91506138478261419d565b600082019050919050565b600061385f602583613cad565b915061386a826141a0565b604082019050919050565b6000613882602283613cad565b915061388d826141ef565b604082019050919050565b60006138a5601f83613cad565b91506138b08261423e565b602082019050919050565b60006138c8603083613cad565b91506138d382614267565b604082019050919050565b60006138eb601383613cad565b91506138f6826142b6565b602082019050919050565b61390a81613e48565b82525050565b61391981613e48565b82525050565b600061392b82866136ad565b915061393782856136ad565b915061394382846136de565b9150819050949350505050565b600061395b8261382f565b9150819050919050565b600060208201905061397a60008301846135bf565b92915050565b600060808201905061399560008301876135bf565b6139a260208301866135bf565b6139af6040830185613910565b81810360608301526139c1818461363b565b905095945050505050565b600060208201905081810360008301526139e681846135ce565b905092915050565b6000602082019050613a03600083018461362c565b92915050565b60006020820190508181036000830152613a238184613674565b905092915050565b60006020820190508181036000830152613a448161375d565b9050919050565b60006020820190508181036000830152613a6481613780565b9050919050565b60006020820190508181036000830152613a84816137a3565b9050919050565b60006020820190508181036000830152613aa4816137c6565b9050919050565b60006020820190508181036000830152613ac4816137e9565b9050919050565b60006020820190508181036000830152613ae48161380c565b9050919050565b60006020820190508181036000830152613b0481613852565b9050919050565b60006020820190508181036000830152613b2481613875565b9050919050565b60006020820190508181036000830152613b4481613898565b9050919050565b60006020820190508181036000830152613b64816138bb565b9050919050565b60006020820190508181036000830152613b84816138de565b9050919050565b6000602082019050613ba06000830184613910565b92915050565b6000613bb0613bc1565b9050613bbc8282613ec6565b919050565b6000604051905090565b600067ffffffffffffffff821115613be657613be561402d565b5b613bef82614070565b9050602081019050919050565b600067ffffffffffffffff821115613c1757613c1661402d565b5b613c2082614070565b9050602081019050919050565b6000819050602082019050919050565b60008190508160005260206000209050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000613cd482613e48565b9150613cdf83613e48565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613d1457613d13613f71565b5b828201905092915050565b6000613d2a82613e48565b9150613d3583613e48565b925082613d4557613d44613fa0565b5b828204905092915050565b6000613d5b82613e48565b9150613d6683613e48565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615613d9f57613d9e613f71565b5b828202905092915050565b6000613db582613e48565b9150613dc083613e48565b925082821015613dd357613dd2613f71565b5b828203905092915050565b6000613de982613e28565b9050919050565b60008115159050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b82818337600083830152505050565b60005b83811015613e7f578082015181840152602081019050613e64565b83811115613e8e576000848401525b50505050565b60006002820490506001821680613eac57607f821691505b60208210811415613ec057613ebf613fcf565b5b50919050565b613ecf82614070565b810181811067ffffffffffffffff82111715613eee57613eed61402d565b5b80604052505050565b6000613f0282613e48565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415613f3557613f34613f71565b5b600182019050919050565b6000613f4b82613e48565b9150613f5683613e48565b925082613f6657613f65613fa0565b5b828206905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f4d696e7420616d6f756e742065786365656473206d617820737570706c792100600082015250565b7f5468652063616c6c657220697320616e6f7468657220636f6e74726163740000600082015250565b7f4d696e7420616d6f756e742063616e2774206265207a65726f2e000000000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b50565b7f4d6178206d696e7420616d6f756e74207065722061646472657373206578636560008201527f6564656421000000000000000000000000000000000000000000000000000000602082015250565b7f4d6178206d696e7420706572207472616e73616374696f6e206578636565646560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e2e00000000000000000000000000000000602082015250565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6142e881613dde565b81146142f357600080fd5b50565b6142ff81613df0565b811461430a57600080fd5b50565b61431681613dfc565b811461432157600080fd5b50565b61432d81613e48565b811461433857600080fd5b5056fea26469706673582212200426706692dbfd4479229cc214695c8e9f3f87fd427a2d683283598716ac277264736f6c63430008070033

Deployed Bytecode Sourcemap

36975:4305:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;19833:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22948:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24452:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;24014:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37178:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19073:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37392:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25317:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;41115:162;;;;;;;;;;;;;:::i;:::-;;25558:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38949:827;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40417:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38698:217;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37357:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37136:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37327:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40497:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37075:23;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;22756:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;20202:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;4220:103;;;;;;;;;;;;;:::i;:::-;;37103:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40615:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40868:114;;;;;;;;;;;;;:::i;:::-;;3569:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;23117:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38455:214;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;24728:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;40988:121;;;;;;;;;;;;;:::i;:::-;;25814:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37281:39;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39964:428;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37212:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;25086:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;40742:120;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;4478:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;37248:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;19833:305;19935:4;19987:25;19972:40;;;:11;:40;;;;:105;;;;20044:33;20029:48;;;:11;:48;;;;19972:105;:158;;;;20094:36;20118:11;20094:23;:36::i;:::-;19972:158;19952:178;;19833:305;;;:::o;22948:100::-;23002:13;23035:5;23028:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22948:100;:::o;24452:204::-;24520:7;24545:16;24553:7;24545;:16::i;:::-;24540:64;;24570:34;;;;;;;;;;;;;;24540:64;24624:15;:24;24640:7;24624:24;;;;;;;;;;;;;;;;;;;;;24617:31;;24452:204;;;:::o;24014:372::-;24087:13;24103:24;24119:7;24103:15;:24::i;:::-;24087:40;;24148:5;24142:11;;:2;:11;;;24138:48;;;24162:24;;;;;;;;;;;;;;24138:48;24219:5;24203:21;;:12;:10;:12::i;:::-;:21;;;24199:139;;24230:37;24247:5;24254:12;:10;:12::i;:::-;24230:16;:37::i;:::-;24226:112;;24291:35;;;;;;;;;;;;;;24226:112;24199:139;24350:28;24359:2;24363:7;24372:5;24350:8;:28::i;:::-;24076:310;24014:372;;:::o;37178:29::-;;;;:::o;19073:312::-;19126:7;19351:15;:13;:15::i;:::-;19336:12;;19320:13;;:28;:46;19313:53;;19073:312;:::o;37392:55::-;;;;;;;;;;;;;;;;;:::o;25317:170::-;25451:28;25461:4;25467:2;25471:7;25451:9;:28::i;:::-;25317:170;;;:::o;41115:162::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;413:1:::1;633:7;;:19;;625:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;413:1;766:7;:18;;;;41175:12:::2;41201:7;:5;:7::i;:::-;41193:21;;41222;41193:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;41174:74;;;41263:7;41255:16;;;::::0;::::2;;41167:110;369:1:::1;811:7;:22;;;;41115:162::o:0;25558:185::-;25696:39;25713:4;25719:2;25723:7;25696:39;;;;;;;;;;;;:16;:39::i;:::-;25558:185;;;:::o;38949:827::-;39009:16;39034:23;39060:17;39070:6;39060:9;:17::i;:::-;39034:43;;39084:30;39131:15;39117:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39084:63;;39154:22;39179:15;:13;:15::i;:::-;39154:40;;39201:23;39235:26;39270:474;39295:15;39277;:33;:67;;;;;39331:13;;39314:14;:30;39277:67;39270:474;;;39355:31;39389:11;:27;39401:14;39389:27;;;;;;;;;;;39355:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;39432:9;:16;;;39427:285;;39491:1;39465:28;;:9;:14;;;:28;;;39461:94;;39529:9;:14;;;39508:35;;39461:94;39593:6;39571:28;;:18;:28;;;39567:136;;;39647:14;39614:13;39628:15;39614:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;39674:17;;;;;:::i;:::-;;;;39567:136;39427:285;39720:16;;;;;:::i;:::-;;;;39346:398;39270:474;;;39757:13;39750:20;;;;;;;38949:827;;;:::o;40417:74::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40480:5:::1;40473:4;:12;;;;40417:74:::0;:::o;38698:217::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;38824:9:::1;;38809:11;38793:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;38785:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;38876:33;38886:9;38897:11;38876:9;:33::i;:::-;38698:217:::0;;:::o;37357:28::-;;;;;;;;;;;;;:::o;37136:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;37327:25::-;;;;;;;;;;;;;:::o;40497:98::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40576:13:::1;40565:8;:24;;;;40497:98:::0;:::o;37075:23::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;22756:125::-;22820:7;22847:21;22860:7;22847:12;:21::i;:::-;:26;;;22840:33;;22756:125;;;:::o;20202:206::-;20266:7;20307:1;20290:19;;:5;:19;;;20286:60;;;20318:28;;;;;;;;;;;;;;20286:60;20372:12;:19;20385:5;20372:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;20364:36;;20357:43;;20202:206;;;:::o;4220:103::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4285:30:::1;4312:1;4285:18;:30::i;:::-;4220:103::o:0;37103:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;40615:100::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40699:10:::1;40687:9;:22;;;;;;;;;;;;:::i;:::-;;40615:100:::0;:::o;40868:114::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40923:4:::1;40913:14;;:6;;;;;;;;;;;:14;;;40909:68;;;40940:5;40931:6;;:14;;;;;;;;;;;;;;;;;;40909:68;;;40970:4;40961:6;;:13;;;;;;;;;;;;;;;;;;40909:68;40868:114::o:0;3569:87::-;3615:7;3642:6;;;;;;;;;;;3635:13;;3569:87;:::o;23117:104::-;23173:13;23206:7;23199:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;23117:104;:::o;38455:214::-;38520:11;37692:6;;;;;;;;;;;37691:7;37683:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;37755:1;37741:11;:15;37733:54;;;;;;;;;;;;:::i;:::-;;;;;;;;;37815:10;37802:23;;:9;:23;;;37794:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;37890:8;;37875:11;:23;;37867:70;;;;;;;;;;;;:::i;:::-;;;;;;;;;38002:18;;37987:11;37952:20;:32;37973:10;37952:32;;;;;;;;;;;;;;;;:46;;;;:::i;:::-;:68;;37944:118;;;;;;;;;;;;:::i;:::-;;;;;;;;;38108:9;;38093:11;38077:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;38069:84;;;;;;;;;;;;:::i;:::-;;;;;;;;;38553:11:::1;38258;38251:4;;:18;;;;:::i;:::-;38238:9;:31;;38230:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;38609:11:::2;38573:20;:32;38594:10;38573:32;;;;;;;;;;;;;;;;:47;;;;;;;:::i;:::-;;;;;;;;38627:36;38637:12;:10;:12::i;:::-;38651:11;38627:9;:36::i;:::-;38160:1:::1;38455:214:::0;;:::o;24728:287::-;24839:12;:10;:12::i;:::-;24827:24;;:8;:24;;;24823:54;;;24860:17;;;;;;;;;;;;;;24823:54;24935:8;24890:18;:32;24909:12;:10;:12::i;:::-;24890:32;;;;;;;;;;;;;;;:42;24923:8;24890:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;24988:8;24959:48;;24974:12;:10;:12::i;:::-;24959:48;;;24998:8;24959:48;;;;;;:::i;:::-;;;;;;;;24728:287;;:::o;40988:121::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;41046:4:::1;41034:16;;:8;;;;;;;;;;;:16;;;41030:74;;;41065:5;41054:8;;:16;;;;;;;;;;;;;;;;;;41030:74;;;41097:4;41086:8;;:15;;;;;;;;;;;;;;;;;;41030:74;40988:121::o:0;25814:370::-;25981:28;25991:4;25997:2;26001:7;25981:9;:28::i;:::-;26024:15;:2;:13;;;:15::i;:::-;26020:157;;;26045:56;26076:4;26082:2;26086:7;26095:5;26045:30;:56::i;:::-;26041:136;;26125:40;;;;;;;;;;;;;;26041:136;26020:157;25814:370;;;;:::o;37281:39::-;;;;:::o;39964:428::-;40038:13;40068:17;40076:8;40068:7;:17::i;:::-;40060:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;40166:5;40154:17;;:8;;;;;;;;;;;:17;;;40150:49;;;40182:14;40175:21;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;40150:49;40207:28;40238:10;:8;:10::i;:::-;40207:41;;40293:1;40268:14;40262:28;:32;:122;;;;;;;;;;;;;;;;;40326:14;40342:19;:8;:17;:19::i;:::-;40363:9;40309:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;40262:122;40255:129;;;39964:428;;;;:::o;37212:31::-;;;;:::o;25086:164::-;25183:4;25207:18;:25;25226:5;25207:25;;;;;;;;;;;;;;;:35;25233:8;25207:35;;;;;;;;;;;;;;;;;;;;;;;;;25200:42;;25086:164;;;;:::o;40742:120::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;40841:15:::1;40824:14;:32;;;;;;;;;;;;:::i;:::-;;40742:120:::0;:::o;4478:201::-;3800:12;:10;:12::i;:::-;3789:23;;:7;:5;:7::i;:::-;:23;;;3781:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;4587:1:::1;4567:22;;:8;:22;;;;4559:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;4643:28;4662:8;4643:18;:28::i;:::-;4478:201:::0;:::o;37248:28::-;;;;:::o;11061:157::-;11146:4;11185:25;11170:40;;;:11;:40;;;;11163:47;;11061:157;;;:::o;26439:174::-;26496:4;26539:7;26520:15;:13;:15::i;:::-;:26;;:53;;;;;26560:13;;26550:7;:23;26520:53;:85;;;;;26578:11;:20;26590:7;26578:20;;;;;;;;;;;:27;;;;;;;;;;;;26577:28;26520:85;26513:92;;26439:174;;;:::o;2859:98::-;2912:7;2939:10;2932:17;;2859:98;:::o;35661:196::-;35803:2;35776:15;:24;35792:7;35776:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;35841:7;35837:2;35821:28;;35830:5;35821:28;;;;;;;;;;;;35661:196;;;:::o;39802:95::-;39867:7;39890:1;39883:8;;39802:95;:::o;30609:2130::-;30724:35;30762:21;30775:7;30762:12;:21::i;:::-;30724:59;;30822:4;30800:26;;:13;:18;;;:26;;;30796:67;;30835:28;;;;;;;;;;;;;;30796:67;30876:22;30918:4;30902:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;30939:36;30956:4;30962:12;:10;:12::i;:::-;30939:16;:36::i;:::-;30902:73;:126;;;;31016:12;:10;:12::i;:::-;30992:36;;:20;31004:7;30992:11;:20::i;:::-;:36;;;30902:126;30876:153;;31047:17;31042:66;;31073:35;;;;;;;;;;;;;;31042:66;31137:1;31123:16;;:2;:16;;;31119:52;;;31148:23;;;;;;;;;;;;;;31119:52;31184:43;31206:4;31212:2;31216:7;31225:1;31184:21;:43::i;:::-;31292:35;31309:1;31313:7;31322:4;31292:8;:35::i;:::-;31653:1;31623:12;:18;31636:4;31623:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31697:1;31669:12;:16;31682:2;31669:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;31715:31;31749:11;:20;31761:7;31749:20;;;;;;;;;;;31715:54;;31800:2;31784:8;:13;;;:18;;;;;;;;;;;;;;;;;;31850:15;31817:8;:23;;;:49;;;;;;;;;;;;;;;;;;32118:19;32150:1;32140:7;:11;32118:33;;32166:31;32200:11;:24;32212:11;32200:24;;;;;;;;;;;32166:58;;32268:1;32243:27;;:8;:13;;;;;;;;;;;;:27;;;32239:384;;;32453:13;;32438:11;:28;32434:174;;32507:4;32491:8;:13;;;:20;;;;;;;;;;;;;;;;;;32560:13;:28;;;32534:8;:23;;;:54;;;;;;;;;;;;;;;;;;32434:174;32239:384;31598:1036;;;32670:7;32666:2;32651:27;;32660:4;32651:27;;;;;;;;;;;;32689:42;32710:4;32716:2;32720:7;32729:1;32689:20;:42::i;:::-;30713:2026;;30609:2130;;;:::o;26697:104::-;26766:27;26776:2;26780:8;26766:27;;;;;;;;;;;;:9;:27::i;:::-;26697:104;;:::o;21583:1111::-;21645:21;;:::i;:::-;21679:12;21694:7;21679:22;;21762:4;21743:15;:13;:15::i;:::-;:23;21739:888;;21779:13;;21772:4;:20;21768:859;;;21813:31;21847:11;:17;21859:4;21847:17;;;;;;;;;;;21813:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;21888:9;:16;;;21883:729;;21959:1;21933:28;;:9;:14;;;:28;;;21929:101;;21997:9;21990:16;;;;;;21929:101;22332:261;22339:4;22332:261;;;22372:6;;;;;;;;22417:11;:17;22429:4;22417:17;;;;;;;;;;;22405:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;22491:1;22465:28;;:9;:14;;;:28;;;22461:109;;22533:9;22526:16;;;;;;22461:109;22332:261;;;21883:729;21794:833;21768:859;21739:888;22655:31;;;;;;;;;;;;;;21583:1111;;;;:::o;4839:191::-;4913:16;4932:6;;;;;;;;;;;4913:25;;4958:8;4949:6;;:17;;;;;;;;;;;;;;;;;;5013:8;4982:40;;5003:8;4982:40;;;;;;;;;;;;4902:128;4839:191;:::o;5291:115::-;5351:4;5397:1;5375:7;:19;;;:23;5368:30;;5291:115;;;:::o;35867:667::-;36030:4;36067:2;36051:36;;;36088:12;:10;:12::i;:::-;36102:4;36108:7;36117:5;36051:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;36047:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36302:1;36285:6;:13;:18;36281:235;;;36331:40;;;;;;;;;;;;;;36281:235;36474:6;36468:13;36459:6;36455:2;36451:15;36444:38;36047:480;36180:45;;;36170:55;;;:6;:55;;;;36163:62;;;35867:667;;;;;;:::o;38325:104::-;38385:13;38414:9;38407:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;38325:104;:::o;1117:534::-;1173:13;1214:1;1205:5;:10;1201:53;;;1232:10;;;;;;;;;;;;;;;;;;;;;1201:53;1264:12;1279:5;1264:20;;1295:14;1320:78;1335:1;1327:4;:9;1320:78;;1353:8;;;;;:::i;:::-;;;;1384:2;1376:10;;;;;:::i;:::-;;;1320:78;;;1408:19;1440:6;1430:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;1408:39;;1458:154;1474:1;1465:5;:10;1458:154;;1502:1;1492:11;;;;;:::i;:::-;;;1569:2;1561:5;:10;;;;:::i;:::-;1548:2;:24;;;;:::i;:::-;1535:39;;1518:6;1525;1518:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;1598:2;1589:11;;;;;:::i;:::-;;;1458:154;;;1636:6;1622:21;;;;;1117:534;;;;:::o;36545:159::-;;;;;:::o;36714:158::-;;;;;:::o;27174:1749::-;27297:20;27320:13;;27297:36;;27362:1;27348:16;;:2;:16;;;27344:48;;;27373:19;;;;;;;;;;;;;;27344:48;27419:1;27407:8;:13;27403:44;;;27429:18;;;;;;;;;;;;;;27403:44;27460:61;27490:1;27494:2;27498:12;27512:8;27460:21;:61::i;:::-;27833:8;27798:12;:16;27811:2;27798:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27897:8;27857:12;:16;27870:2;27857:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;27956:2;27923:11;:25;27935:12;27923:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;28023:15;27973:11;:25;27985:12;27973:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;28056:20;28079:12;28056:35;;28106:11;28135:8;28120:12;:23;28106:37;;28164:15;:2;:13;;;:15::i;:::-;28160:631;;;28200:313;28256:12;28252:2;28231:38;;28248:1;28231:38;;;;;;;;;;;;28297:69;28336:1;28340:2;28344:14;;;;;;28360:5;28297:30;:69::i;:::-;28292:174;;28402:40;;;;;;;;;;;;;;28292:174;28508:3;28493:12;:18;28200:313;;28594:12;28577:13;;:29;28573:43;;28608:8;;;28573:43;28160:631;;;28657:119;28713:14;;;;;;28709:2;28688:40;;28705:1;28688:40;;;;;;;;;;;;28771:3;28756:12;:18;28657:119;;28160:631;28821:12;28805:13;:28;;;;27773:1072;;28855:60;28884:1;28888:2;28892:12;28906:8;28855:20;:60::i;:::-;27286:1637;27174:1749;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:410:1:-;84:5;109:65;125:48;166:6;125:48;:::i;:::-;109:65;:::i;:::-;100:74;;197:6;190:5;183:21;235:4;228:5;224:16;273:3;264:6;259:3;255:16;252:25;249:112;;;280:79;;:::i;:::-;249:112;370:41;404:6;399:3;394;370:41;:::i;:::-;90:327;7:410;;;;;:::o;423:412::-;501:5;526:66;542:49;584:6;542:49;:::i;:::-;526:66;:::i;:::-;517:75;;615:6;608:5;601:21;653:4;646:5;642:16;691:3;682:6;677:3;673:16;670:25;667:112;;;698:79;;:::i;:::-;667:112;788:41;822:6;817:3;812;788:41;:::i;:::-;507:328;423:412;;;;;:::o;841:139::-;887:5;925:6;912:20;903:29;;941:33;968:5;941:33;:::i;:::-;841:139;;;;:::o;986:133::-;1029:5;1067:6;1054:20;1045:29;;1083:30;1107:5;1083:30;:::i;:::-;986:133;;;;:::o;1125:137::-;1170:5;1208:6;1195:20;1186:29;;1224:32;1250:5;1224:32;:::i;:::-;1125:137;;;;:::o;1268:141::-;1324:5;1355:6;1349:13;1340:22;;1371:32;1397:5;1371:32;:::i;:::-;1268:141;;;;:::o;1428:338::-;1483:5;1532:3;1525:4;1517:6;1513:17;1509:27;1499:122;;1540:79;;:::i;:::-;1499:122;1657:6;1644:20;1682:78;1756:3;1748:6;1741:4;1733:6;1729:17;1682:78;:::i;:::-;1673:87;;1489:277;1428:338;;;;:::o;1786:340::-;1842:5;1891:3;1884:4;1876:6;1872:17;1868:27;1858:122;;1899:79;;:::i;:::-;1858:122;2016:6;2003:20;2041:79;2116:3;2108:6;2101:4;2093:6;2089:17;2041:79;:::i;:::-;2032:88;;1848:278;1786:340;;;;:::o;2132:139::-;2178:5;2216:6;2203:20;2194:29;;2232:33;2259:5;2232:33;:::i;:::-;2132:139;;;;:::o;2277:329::-;2336:6;2385:2;2373:9;2364:7;2360:23;2356:32;2353:119;;;2391:79;;:::i;:::-;2353:119;2511:1;2536:53;2581:7;2572:6;2561:9;2557:22;2536:53;:::i;:::-;2526:63;;2482:117;2277:329;;;;:::o;2612:474::-;2680:6;2688;2737:2;2725:9;2716:7;2712:23;2708:32;2705:119;;;2743:79;;:::i;:::-;2705:119;2863:1;2888:53;2933:7;2924:6;2913:9;2909:22;2888:53;:::i;:::-;2878:63;;2834:117;2990:2;3016:53;3061:7;3052:6;3041:9;3037:22;3016:53;:::i;:::-;3006:63;;2961:118;2612:474;;;;;:::o;3092:619::-;3169:6;3177;3185;3234:2;3222:9;3213:7;3209:23;3205:32;3202:119;;;3240:79;;:::i;:::-;3202:119;3360:1;3385:53;3430:7;3421:6;3410:9;3406:22;3385:53;:::i;:::-;3375:63;;3331:117;3487:2;3513:53;3558:7;3549:6;3538:9;3534:22;3513:53;:::i;:::-;3503:63;;3458:118;3615:2;3641:53;3686:7;3677:6;3666:9;3662:22;3641:53;:::i;:::-;3631:63;;3586:118;3092:619;;;;;:::o;3717:943::-;3812:6;3820;3828;3836;3885:3;3873:9;3864:7;3860:23;3856:33;3853:120;;;3892:79;;:::i;:::-;3853:120;4012:1;4037:53;4082:7;4073:6;4062:9;4058:22;4037:53;:::i;:::-;4027:63;;3983:117;4139:2;4165:53;4210:7;4201:6;4190:9;4186:22;4165:53;:::i;:::-;4155:63;;4110:118;4267:2;4293:53;4338:7;4329:6;4318:9;4314:22;4293:53;:::i;:::-;4283:63;;4238:118;4423:2;4412:9;4408:18;4395:32;4454:18;4446:6;4443:30;4440:117;;;4476:79;;:::i;:::-;4440:117;4581:62;4635:7;4626:6;4615:9;4611:22;4581:62;:::i;:::-;4571:72;;4366:287;3717:943;;;;;;;:::o;4666:468::-;4731:6;4739;4788:2;4776:9;4767:7;4763:23;4759:32;4756:119;;;4794:79;;:::i;:::-;4756:119;4914:1;4939:53;4984:7;4975:6;4964:9;4960:22;4939:53;:::i;:::-;4929:63;;4885:117;5041:2;5067:50;5109:7;5100:6;5089:9;5085:22;5067:50;:::i;:::-;5057:60;;5012:115;4666:468;;;;;:::o;5140:474::-;5208:6;5216;5265:2;5253:9;5244:7;5240:23;5236:32;5233:119;;;5271:79;;:::i;:::-;5233:119;5391:1;5416:53;5461:7;5452:6;5441:9;5437:22;5416:53;:::i;:::-;5406:63;;5362:117;5518:2;5544:53;5589:7;5580:6;5569:9;5565:22;5544:53;:::i;:::-;5534:63;;5489:118;5140:474;;;;;:::o;5620:327::-;5678:6;5727:2;5715:9;5706:7;5702:23;5698:32;5695:119;;;5733:79;;:::i;:::-;5695:119;5853:1;5878:52;5922:7;5913:6;5902:9;5898:22;5878:52;:::i;:::-;5868:62;;5824:116;5620:327;;;;:::o;5953:349::-;6022:6;6071:2;6059:9;6050:7;6046:23;6042:32;6039:119;;;6077:79;;:::i;:::-;6039:119;6197:1;6222:63;6277:7;6268:6;6257:9;6253:22;6222:63;:::i;:::-;6212:73;;6168:127;5953:349;;;;:::o;6308:509::-;6377:6;6426:2;6414:9;6405:7;6401:23;6397:32;6394:119;;;6432:79;;:::i;:::-;6394:119;6580:1;6569:9;6565:17;6552:31;6610:18;6602:6;6599:30;6596:117;;;6632:79;;:::i;:::-;6596:117;6737:63;6792:7;6783:6;6772:9;6768:22;6737:63;:::i;:::-;6727:73;;6523:287;6308:509;;;;:::o;6823:329::-;6882:6;6931:2;6919:9;6910:7;6906:23;6902:32;6899:119;;;6937:79;;:::i;:::-;6899:119;7057:1;7082:53;7127:7;7118:6;7107:9;7103:22;7082:53;:::i;:::-;7072:63;;7028:117;6823:329;;;;:::o;7158:474::-;7226:6;7234;7283:2;7271:9;7262:7;7258:23;7254:32;7251:119;;;7289:79;;:::i;:::-;7251:119;7409:1;7434:53;7479:7;7470:6;7459:9;7455:22;7434:53;:::i;:::-;7424:63;;7380:117;7536:2;7562:53;7607:7;7598:6;7587:9;7583:22;7562:53;:::i;:::-;7552:63;;7507:118;7158:474;;;;;:::o;7638:179::-;7707:10;7728:46;7770:3;7762:6;7728:46;:::i;:::-;7806:4;7801:3;7797:14;7783:28;;7638:179;;;;:::o;7823:118::-;7910:24;7928:5;7910:24;:::i;:::-;7905:3;7898:37;7823:118;;:::o;7977:732::-;8096:3;8125:54;8173:5;8125:54;:::i;:::-;8195:86;8274:6;8269:3;8195:86;:::i;:::-;8188:93;;8305:56;8355:5;8305:56;:::i;:::-;8384:7;8415:1;8400:284;8425:6;8422:1;8419:13;8400:284;;;8501:6;8495:13;8528:63;8587:3;8572:13;8528:63;:::i;:::-;8521:70;;8614:60;8667:6;8614:60;:::i;:::-;8604:70;;8460:224;8447:1;8444;8440:9;8435:14;;8400:284;;;8404:14;8700:3;8693:10;;8101:608;;;7977:732;;;;:::o;8715:109::-;8796:21;8811:5;8796:21;:::i;:::-;8791:3;8784:34;8715:109;;:::o;8830:360::-;8916:3;8944:38;8976:5;8944:38;:::i;:::-;8998:70;9061:6;9056:3;8998:70;:::i;:::-;8991:77;;9077:52;9122:6;9117:3;9110:4;9103:5;9099:16;9077:52;:::i;:::-;9154:29;9176:6;9154:29;:::i;:::-;9149:3;9145:39;9138:46;;8920:270;8830:360;;;;:::o;9196:364::-;9284:3;9312:39;9345:5;9312:39;:::i;:::-;9367:71;9431:6;9426:3;9367:71;:::i;:::-;9360:78;;9447:52;9492:6;9487:3;9480:4;9473:5;9469:16;9447:52;:::i;:::-;9524:29;9546:6;9524:29;:::i;:::-;9519:3;9515:39;9508:46;;9288:272;9196:364;;;;:::o;9566:377::-;9672:3;9700:39;9733:5;9700:39;:::i;:::-;9755:89;9837:6;9832:3;9755:89;:::i;:::-;9748:96;;9853:52;9898:6;9893:3;9886:4;9879:5;9875:16;9853:52;:::i;:::-;9930:6;9925:3;9921:16;9914:23;;9676:267;9566:377;;;;:::o;9973:845::-;10076:3;10113:5;10107:12;10142:36;10168:9;10142:36;:::i;:::-;10194:89;10276:6;10271:3;10194:89;:::i;:::-;10187:96;;10314:1;10303:9;10299:17;10330:1;10325:137;;;;10476:1;10471:341;;;;10292:520;;10325:137;10409:4;10405:9;10394;10390:25;10385:3;10378:38;10445:6;10440:3;10436:16;10429:23;;10325:137;;10471:341;10538:38;10570:5;10538:38;:::i;:::-;10598:1;10612:154;10626:6;10623:1;10620:13;10612:154;;;10700:7;10694:14;10690:1;10685:3;10681:11;10674:35;10750:1;10741:7;10737:15;10726:26;;10648:4;10645:1;10641:12;10636:17;;10612:154;;;10795:6;10790:3;10786:16;10779:23;;10478:334;;10292:520;;10080:738;;9973:845;;;;:::o;10824:366::-;10966:3;10987:67;11051:2;11046:3;10987:67;:::i;:::-;10980:74;;11063:93;11152:3;11063:93;:::i;:::-;11181:2;11176:3;11172:12;11165:19;;10824:366;;;:::o;11196:::-;11338:3;11359:67;11423:2;11418:3;11359:67;:::i;:::-;11352:74;;11435:93;11524:3;11435:93;:::i;:::-;11553:2;11548:3;11544:12;11537:19;;11196:366;;;:::o;11568:::-;11710:3;11731:67;11795:2;11790:3;11731:67;:::i;:::-;11724:74;;11807:93;11896:3;11807:93;:::i;:::-;11925:2;11920:3;11916:12;11909:19;;11568:366;;;:::o;11940:::-;12082:3;12103:67;12167:2;12162:3;12103:67;:::i;:::-;12096:74;;12179:93;12268:3;12179:93;:::i;:::-;12297:2;12292:3;12288:12;12281:19;;11940:366;;;:::o;12312:::-;12454:3;12475:67;12539:2;12534:3;12475:67;:::i;:::-;12468:74;;12551:93;12640:3;12551:93;:::i;:::-;12669:2;12664:3;12660:12;12653:19;;12312:366;;;:::o;12684:::-;12826:3;12847:67;12911:2;12906:3;12847:67;:::i;:::-;12840:74;;12923:93;13012:3;12923:93;:::i;:::-;13041:2;13036:3;13032:12;13025:19;;12684:366;;;:::o;13056:398::-;13215:3;13236:83;13317:1;13312:3;13236:83;:::i;:::-;13229:90;;13328:93;13417:3;13328:93;:::i;:::-;13446:1;13441:3;13437:11;13430:18;;13056:398;;;:::o;13460:366::-;13602:3;13623:67;13687:2;13682:3;13623:67;:::i;:::-;13616:74;;13699:93;13788:3;13699:93;:::i;:::-;13817:2;13812:3;13808:12;13801:19;;13460:366;;;:::o;13832:::-;13974:3;13995:67;14059:2;14054:3;13995:67;:::i;:::-;13988:74;;14071:93;14160:3;14071:93;:::i;:::-;14189:2;14184:3;14180:12;14173:19;;13832:366;;;:::o;14204:::-;14346:3;14367:67;14431:2;14426:3;14367:67;:::i;:::-;14360:74;;14443:93;14532:3;14443:93;:::i;:::-;14561:2;14556:3;14552:12;14545:19;;14204:366;;;:::o;14576:::-;14718:3;14739:67;14803:2;14798:3;14739:67;:::i;:::-;14732:74;;14815:93;14904:3;14815:93;:::i;:::-;14933:2;14928:3;14924:12;14917:19;;14576:366;;;:::o;14948:::-;15090:3;15111:67;15175:2;15170:3;15111:67;:::i;:::-;15104:74;;15187:93;15276:3;15187:93;:::i;:::-;15305:2;15300:3;15296:12;15289:19;;14948:366;;;:::o;15320:108::-;15397:24;15415:5;15397:24;:::i;:::-;15392:3;15385:37;15320:108;;:::o;15434:118::-;15521:24;15539:5;15521:24;:::i;:::-;15516:3;15509:37;15434:118;;:::o;15558:589::-;15783:3;15805:95;15896:3;15887:6;15805:95;:::i;:::-;15798:102;;15917:95;16008:3;15999:6;15917:95;:::i;:::-;15910:102;;16029:92;16117:3;16108:6;16029:92;:::i;:::-;16022:99;;16138:3;16131:10;;15558:589;;;;;;:::o;16153:379::-;16337:3;16359:147;16502:3;16359:147;:::i;:::-;16352:154;;16523:3;16516:10;;16153:379;;;:::o;16538:222::-;16631:4;16669:2;16658:9;16654:18;16646:26;;16682:71;16750:1;16739:9;16735:17;16726:6;16682:71;:::i;:::-;16538:222;;;;:::o;16766:640::-;16961:4;16999:3;16988:9;16984:19;16976:27;;17013:71;17081:1;17070:9;17066:17;17057:6;17013:71;:::i;:::-;17094:72;17162:2;17151:9;17147:18;17138:6;17094:72;:::i;:::-;17176;17244:2;17233:9;17229:18;17220:6;17176:72;:::i;:::-;17295:9;17289:4;17285:20;17280:2;17269:9;17265:18;17258:48;17323:76;17394:4;17385:6;17323:76;:::i;:::-;17315:84;;16766:640;;;;;;;:::o;17412:373::-;17555:4;17593:2;17582:9;17578:18;17570:26;;17642:9;17636:4;17632:20;17628:1;17617:9;17613:17;17606:47;17670:108;17773:4;17764:6;17670:108;:::i;:::-;17662:116;;17412:373;;;;:::o;17791:210::-;17878:4;17916:2;17905:9;17901:18;17893:26;;17929:65;17991:1;17980:9;17976:17;17967:6;17929:65;:::i;:::-;17791:210;;;;:::o;18007:313::-;18120:4;18158:2;18147:9;18143:18;18135:26;;18207:9;18201:4;18197:20;18193:1;18182:9;18178:17;18171:47;18235:78;18308:4;18299:6;18235:78;:::i;:::-;18227:86;;18007:313;;;;:::o;18326:419::-;18492:4;18530:2;18519:9;18515:18;18507:26;;18579:9;18573:4;18569:20;18565:1;18554:9;18550:17;18543:47;18607:131;18733:4;18607:131;:::i;:::-;18599:139;;18326:419;;;:::o;18751:::-;18917:4;18955:2;18944:9;18940:18;18932:26;;19004:9;18998:4;18994:20;18990:1;18979:9;18975:17;18968:47;19032:131;19158:4;19032:131;:::i;:::-;19024:139;;18751:419;;;:::o;19176:::-;19342:4;19380:2;19369:9;19365:18;19357:26;;19429:9;19423:4;19419:20;19415:1;19404:9;19400:17;19393:47;19457:131;19583:4;19457:131;:::i;:::-;19449:139;;19176:419;;;:::o;19601:::-;19767:4;19805:2;19794:9;19790:18;19782:26;;19854:9;19848:4;19844:20;19840:1;19829:9;19825:17;19818:47;19882:131;20008:4;19882:131;:::i;:::-;19874:139;;19601:419;;;:::o;20026:::-;20192:4;20230:2;20219:9;20215:18;20207:26;;20279:9;20273:4;20269:20;20265:1;20254:9;20250:17;20243:47;20307:131;20433:4;20307:131;:::i;:::-;20299:139;;20026:419;;;:::o;20451:::-;20617:4;20655:2;20644:9;20640:18;20632:26;;20704:9;20698:4;20694:20;20690:1;20679:9;20675:17;20668:47;20732:131;20858:4;20732:131;:::i;:::-;20724:139;;20451:419;;;:::o;20876:::-;21042:4;21080:2;21069:9;21065:18;21057:26;;21129:9;21123:4;21119:20;21115:1;21104:9;21100:17;21093:47;21157:131;21283:4;21157:131;:::i;:::-;21149:139;;20876:419;;;:::o;21301:::-;21467:4;21505:2;21494:9;21490:18;21482:26;;21554:9;21548:4;21544:20;21540:1;21529:9;21525:17;21518:47;21582:131;21708:4;21582:131;:::i;:::-;21574:139;;21301:419;;;:::o;21726:::-;21892:4;21930:2;21919:9;21915:18;21907:26;;21979:9;21973:4;21969:20;21965:1;21954:9;21950:17;21943:47;22007:131;22133:4;22007:131;:::i;:::-;21999:139;;21726:419;;;:::o;22151:::-;22317:4;22355:2;22344:9;22340:18;22332:26;;22404:9;22398:4;22394:20;22390:1;22379:9;22375:17;22368:47;22432:131;22558:4;22432:131;:::i;:::-;22424:139;;22151:419;;;:::o;22576:::-;22742:4;22780:2;22769:9;22765:18;22757:26;;22829:9;22823:4;22819:20;22815:1;22804:9;22800:17;22793:47;22857:131;22983:4;22857:131;:::i;:::-;22849:139;;22576:419;;;:::o;23001:222::-;23094:4;23132:2;23121:9;23117:18;23109:26;;23145:71;23213:1;23202:9;23198:17;23189:6;23145:71;:::i;:::-;23001:222;;;;:::o;23229:129::-;23263:6;23290:20;;:::i;:::-;23280:30;;23319:33;23347:4;23339:6;23319:33;:::i;:::-;23229:129;;;:::o;23364:75::-;23397:6;23430:2;23424:9;23414:19;;23364:75;:::o;23445:307::-;23506:4;23596:18;23588:6;23585:30;23582:56;;;23618:18;;:::i;:::-;23582:56;23656:29;23678:6;23656:29;:::i;:::-;23648:37;;23740:4;23734;23730:15;23722:23;;23445:307;;;:::o;23758:308::-;23820:4;23910:18;23902:6;23899:30;23896:56;;;23932:18;;:::i;:::-;23896:56;23970:29;23992:6;23970:29;:::i;:::-;23962:37;;24054:4;24048;24044:15;24036:23;;23758:308;;;:::o;24072:132::-;24139:4;24162:3;24154:11;;24192:4;24187:3;24183:14;24175:22;;24072:132;;;:::o;24210:141::-;24259:4;24282:3;24274:11;;24305:3;24302:1;24295:14;24339:4;24336:1;24326:18;24318:26;;24210:141;;;:::o;24357:114::-;24424:6;24458:5;24452:12;24442:22;;24357:114;;;:::o;24477:98::-;24528:6;24562:5;24556:12;24546:22;;24477:98;;;:::o;24581:99::-;24633:6;24667:5;24661:12;24651:22;;24581:99;;;:::o;24686:113::-;24756:4;24788;24783:3;24779:14;24771:22;;24686:113;;;:::o;24805:184::-;24904:11;24938:6;24933:3;24926:19;24978:4;24973:3;24969:14;24954:29;;24805:184;;;;:::o;24995:168::-;25078:11;25112:6;25107:3;25100:19;25152:4;25147:3;25143:14;25128:29;;24995:168;;;;:::o;25169:147::-;25270:11;25307:3;25292:18;;25169:147;;;;:::o;25322:169::-;25406:11;25440:6;25435:3;25428:19;25480:4;25475:3;25471:14;25456:29;;25322:169;;;;:::o;25497:148::-;25599:11;25636:3;25621:18;;25497:148;;;;:::o;25651:305::-;25691:3;25710:20;25728:1;25710:20;:::i;:::-;25705:25;;25744:20;25762:1;25744:20;:::i;:::-;25739:25;;25898:1;25830:66;25826:74;25823:1;25820:81;25817:107;;;25904:18;;:::i;:::-;25817:107;25948:1;25945;25941:9;25934:16;;25651:305;;;;:::o;25962:185::-;26002:1;26019:20;26037:1;26019:20;:::i;:::-;26014:25;;26053:20;26071:1;26053:20;:::i;:::-;26048:25;;26092:1;26082:35;;26097:18;;:::i;:::-;26082:35;26139:1;26136;26132:9;26127:14;;25962:185;;;;:::o;26153:348::-;26193:7;26216:20;26234:1;26216:20;:::i;:::-;26211:25;;26250:20;26268:1;26250:20;:::i;:::-;26245:25;;26438:1;26370:66;26366:74;26363:1;26360:81;26355:1;26348:9;26341:17;26337:105;26334:131;;;26445:18;;:::i;:::-;26334:131;26493:1;26490;26486:9;26475:20;;26153:348;;;;:::o;26507:191::-;26547:4;26567:20;26585:1;26567:20;:::i;:::-;26562:25;;26601:20;26619:1;26601:20;:::i;:::-;26596:25;;26640:1;26637;26634:8;26631:34;;;26645:18;;:::i;:::-;26631:34;26690:1;26687;26683:9;26675:17;;26507:191;;;;:::o;26704:96::-;26741:7;26770:24;26788:5;26770:24;:::i;:::-;26759:35;;26704:96;;;:::o;26806:90::-;26840:7;26883:5;26876:13;26869:21;26858:32;;26806:90;;;:::o;26902:149::-;26938:7;26978:66;26971:5;26967:78;26956:89;;26902:149;;;:::o;27057:126::-;27094:7;27134:42;27127:5;27123:54;27112:65;;27057:126;;;:::o;27189:77::-;27226:7;27255:5;27244:16;;27189:77;;;:::o;27272:154::-;27356:6;27351:3;27346;27333:30;27418:1;27409:6;27404:3;27400:16;27393:27;27272:154;;;:::o;27432:307::-;27500:1;27510:113;27524:6;27521:1;27518:13;27510:113;;;27609:1;27604:3;27600:11;27594:18;27590:1;27585:3;27581:11;27574:39;27546:2;27543:1;27539:10;27534:15;;27510:113;;;27641:6;27638:1;27635:13;27632:101;;;27721:1;27712:6;27707:3;27703:16;27696:27;27632:101;27481:258;27432:307;;;:::o;27745:320::-;27789:6;27826:1;27820:4;27816:12;27806:22;;27873:1;27867:4;27863:12;27894:18;27884:81;;27950:4;27942:6;27938:17;27928:27;;27884:81;28012:2;28004:6;28001:14;27981:18;27978:38;27975:84;;;28031:18;;:::i;:::-;27975:84;27796:269;27745:320;;;:::o;28071:281::-;28154:27;28176:4;28154:27;:::i;:::-;28146:6;28142:40;28284:6;28272:10;28269:22;28248:18;28236:10;28233:34;28230:62;28227:88;;;28295:18;;:::i;:::-;28227:88;28335:10;28331:2;28324:22;28114:238;28071:281;;:::o;28358:233::-;28397:3;28420:24;28438:5;28420:24;:::i;:::-;28411:33;;28466:66;28459:5;28456:77;28453:103;;;28536:18;;:::i;:::-;28453:103;28583:1;28576:5;28572:13;28565:20;;28358:233;;;:::o;28597:176::-;28629:1;28646:20;28664:1;28646:20;:::i;:::-;28641:25;;28680:20;28698:1;28680:20;:::i;:::-;28675:25;;28719:1;28709:35;;28724:18;;:::i;:::-;28709:35;28765:1;28762;28758:9;28753:14;;28597:176;;;;:::o;28779:180::-;28827:77;28824:1;28817:88;28924:4;28921:1;28914:15;28948:4;28945:1;28938:15;28965:180;29013:77;29010:1;29003:88;29110:4;29107:1;29100:15;29134:4;29131:1;29124:15;29151:180;29199:77;29196:1;29189:88;29296:4;29293:1;29286:15;29320:4;29317:1;29310:15;29337:180;29385:77;29382:1;29375:88;29482:4;29479:1;29472:15;29506:4;29503:1;29496:15;29523:180;29571:77;29568:1;29561:88;29668:4;29665:1;29658:15;29692:4;29689:1;29682:15;29709:117;29818:1;29815;29808:12;29832:117;29941:1;29938;29931:12;29955:117;30064:1;30061;30054:12;30078:117;30187:1;30184;30177:12;30201:102;30242:6;30293:2;30289:7;30284:2;30277:5;30273:14;30269:28;30259:38;;30201:102;;;:::o;30309:225::-;30449:34;30445:1;30437:6;30433:14;30426:58;30518:8;30513:2;30505:6;30501:15;30494:33;30309:225;:::o;30540:181::-;30680:33;30676:1;30668:6;30664:14;30657:57;30540:181;:::o;30727:180::-;30867:32;30863:1;30855:6;30851:14;30844:56;30727:180;:::o;30913:176::-;31053:28;31049:1;31041:6;31037:14;31030:52;30913:176;:::o;31095:182::-;31235:34;31231:1;31223:6;31219:14;31212:58;31095:182;:::o;31283:173::-;31423:25;31419:1;31411:6;31407:14;31400:49;31283:173;:::o;31462:114::-;;:::o;31582:224::-;31722:34;31718:1;31710:6;31706:14;31699:58;31791:7;31786:2;31778:6;31774:15;31767:32;31582:224;:::o;31812:221::-;31952:34;31948:1;31940:6;31936:14;31929:58;32021:4;32016:2;32008:6;32004:15;31997:29;31812:221;:::o;32039:181::-;32179:33;32175:1;32167:6;32163:14;32156:57;32039:181;:::o;32226:235::-;32366:34;32362:1;32354:6;32350:14;32343:58;32435:18;32430:2;32422:6;32418:15;32411:43;32226:235;:::o;32467:169::-;32607:21;32603:1;32595:6;32591:14;32584:45;32467:169;:::o;32642:122::-;32715:24;32733:5;32715:24;:::i;:::-;32708:5;32705:35;32695:63;;32754:1;32751;32744:12;32695:63;32642:122;:::o;32770:116::-;32840:21;32855:5;32840:21;:::i;:::-;32833:5;32830:32;32820:60;;32876:1;32873;32866:12;32820:60;32770:116;:::o;32892:120::-;32964:23;32981:5;32964:23;:::i;:::-;32957:5;32954:34;32944:62;;33002:1;32999;32992:12;32944:62;32892:120;:::o;33018:122::-;33091:24;33109:5;33091:24;:::i;:::-;33084:5;33081:35;33071:63;;33130:1;33127;33120:12;33071:63;33018:122;:::o

Swarm Source

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