ETH Price: $3,471.42 (+2.28%)
Gas: 12 Gwei

Token

WeAre (WeAre)
 

Overview

Max Total Supply

5,000 WeAre

Holders

2,173

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
13 WeAre
0x888142764db044b978b21c66b5F1301F002FFE84
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

No more SHIT or Goblins! WeAre NOT FUCKED!!! WeAre is part of WeArePiplWorld, created by award-winning artist John Johnny. LAND and Token might come sooner than you think. How soon? Only god knows......

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
WeAre

Compiler Version
v0.8.13+commit.abaa5c0e

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2022-06-21
*/

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


// OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol)

pragma solidity ^0.8.0;

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

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

    uint256 private _status;

    constructor() {
        _status = _NOT_ENTERED;
    }

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

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

        _;

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

// File: @openzeppelin/contracts/utils/cryptography/MerkleProof.sol


// OpenZeppelin Contracts (last updated v4.6.0) (utils/cryptography/MerkleProof.sol)

pragma solidity ^0.8.0;

/**
 * @dev These functions deal with verification of Merkle Trees proofs.
 *
 * The proofs can be generated using the JavaScript library
 * https://github.com/miguelmota/merkletreejs[merkletreejs].
 * Note: the hashing algorithm should be keccak256 and pair sorting should be enabled.
 *
 * See `test/utils/cryptography/MerkleProof.test.js` for some examples.
 *
 * WARNING: You should avoid using leaf values that are 64 bytes long prior to
 * hashing, or use a hash function other than keccak256 for hashing leaves.
 * This is because the concatenation of a sorted pair of internal nodes in
 * the merkle tree could be reinterpreted as a leaf value.
 */
library MerkleProof {
    /**
     * @dev Returns true if a `leaf` can be proved to be a part of a Merkle tree
     * defined by `root`. For this, a `proof` must be provided, containing
     * sibling hashes on the branch from the leaf to the root of the tree. Each
     * pair of leaves and each pair of pre-images are assumed to be sorted.
     */
    function verify(
        bytes32[] memory proof,
        bytes32 root,
        bytes32 leaf
    ) internal pure returns (bool) {
        return processProof(proof, leaf) == root;
    }

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

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

// File: @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";

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

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

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

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

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


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

pragma solidity ^0.8.0;

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

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

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


// OpenZeppelin Contracts v4.4.1 (access/Ownable.sol)

pragma solidity ^0.8.0;


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

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

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

        return account.code.length > 0;
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


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

pragma solidity ^0.8.0;

/**
 * @title ERC721 token receiver interface
 * @dev Interface for any contract that wants to support safeTransfers
 * from ERC721 asset contracts.
 */
interface IERC721Receiver {
    /**
     * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom}
     * by `operator` from `from`, this function is called.
     *
     * It must return its Solidity selector to confirm the token transfer.
     * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted.
     *
     * The selector can be obtained in Solidity with `IERC721Receiver.onERC721Received.selector`.
     */
    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 {
    /**
     * @dev Returns true if this contract implements the interface defined by
     * `interfaceId`. See the corresponding
     * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section]
     * to learn more about how these ids are created.
     *
     * This function call must use less than 30 000 gas.
     */
    function supportsInterface(bytes4 interfaceId) external view returns (bool);
}

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


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

pragma solidity ^0.8.0;


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

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

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

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

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

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

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

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

    /**
     * @dev Returns the account approved for `tokenId` token.
     *
     * Requirements:
     *
     * - `tokenId` must exist.
     */
    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);
    }

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

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

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

// File: contracts/weare.sol



pragma solidity >=0.8.9 <0.9.0;





contract WeAre is ERC721A, Ownable, ReentrancyGuard {

  using Strings for uint256;

  bytes32 public merkleRoot;
  mapping(address => bool) public whitelistAddressClaimed;
  mapping(address => bool) public addressClaimed;

  string public contractURi = "https://gateway.pinata.cloud/ipfs/QmQLTacNdjPWeCKZknda58J7PFfF45ejKnhbv1wCFTB2nG";
  string public uriPrefix = '';
  string public uriSuffix = '.json';
  string public hiddenMetadataUri = "ipfs://QmVJB8B1aSgHoC3Fuerg5eiTrSAN8VJRfwpwLj2tqaBCJJ";
  
  uint256 public cost = 0 ether;
  uint256 public maxSupply = 5000;
  uint256 public maxMintAmountPerTx = 1;

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

  event minted(address indexed _from, uint256 indexed _amount);
  event whitelist(bool _state);
  event pause(bool _state);

  constructor(
    string memory _tokenName,
    string memory _tokenSymbol
  ) ERC721A(_tokenName, _tokenSymbol) {
  }

  modifier mintCompliance(uint256 _mintAmount) {
    require(_mintAmount > 0 && _mintAmount <= maxMintAmountPerTx, 'Invalid mint amount!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    _;
  }

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

  function whitelistMint(uint256 _mintAmount, bytes32[] calldata _merkleProof) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){
    require(whitelistMintEnabled, 'The whitelist sale is not enabled!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    require(!whitelistAddressClaimed[_msgSender()], 'Address already claimed!');
    
    // Verify whitelist requirements
    bytes32 leaf = keccak256(abi.encodePacked(_msgSender()));
    require(MerkleProof.verify(_merkleProof, merkleRoot, leaf), 'You are not in Whitelist!');

    whitelistAddressClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
    emit minted(msg.sender, _mintAmount);
  }

  function mint(uint256 _mintAmount) public payable mintCompliance(_mintAmount) mintPriceCompliance(_mintAmount){
    require(!paused, 'The contract is paused!');
    require(totalSupply() + _mintAmount <= maxSupply, 'Max supply exceeded!');
    require(!addressClaimed[_msgSender()], 'Address already claimed!');

    addressClaimed[_msgSender()] = true;
    _safeMint(_msgSender(), _mintAmount);
    emit minted(msg.sender, _mintAmount);
  }
  
  // For marketing etc.
  function mintForAddress(uint256 _mintAmount, address _receiver) public onlyOwner {
    require(_mintAmount > 0 , 'Invalid mint amount!');
    _safeMint(_receiver, _mintAmount);
  }

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

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

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

  function contractURI() public view returns (string memory) {
        return contractURi;
    }

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

    if (revealed == false) {
      return hiddenMetadataUri;
    }

    string memory currentBaseURI = _baseURI();
    return bytes(currentBaseURI).length > 0
        ? string(abi.encodePacked(currentBaseURI, _tokenId.toString(), uriSuffix))
        : '';
  }

  function setContractURI(string memory _newContractURI) public onlyOwner {
    contractURi = _newContractURI;
  }

  function setRevealed(bool _state) public onlyOwner {
    revealed = _state;
  }

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

  function setMaxMintAmountPerTx(uint256 _maxMintAmountPerTx) public onlyOwner {
    maxMintAmountPerTx = _maxMintAmountPerTx;
  }

  function setHiddenMetadataUri(string memory _hiddenMetadataUri) public onlyOwner {
    hiddenMetadataUri = _hiddenMetadataUri;
  }

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

  function setUriSuffix(string memory _uriSuffix) public onlyOwner {
    uriSuffix = _uriSuffix;
  }

  function setPaused(bool _state) public onlyOwner {
    paused = _state;
    emit pause(_state);
  }

  function setMerkleRoot(bytes32 _merkleRoot) public onlyOwner {
    merkleRoot = _merkleRoot;
  }

  function setWhitelistMintEnabled(bool _state) public onlyOwner {
    whitelistMintEnabled = _state;
    emit whitelist(_state);
  }

  function withdraw() public onlyOwner nonReentrant {
    
    (bool os, ) = payable(owner()).call{value: address(this).balance}('');
    require(os);
    
  }

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

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_tokenName","type":"string"},{"internalType":"string","name":"_tokenSymbol","type":"string"}],"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"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_from","type":"address"},{"indexed":true,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"minted","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"pause","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"_state","type":"bool"}],"name":"whitelist","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"addressClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURi","outputs":[{"internalType":"string","name":"","type":"string"}],"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":[],"name":"hiddenMetadataUri","outputs":[{"internalType":"string","name":"","type":"string"}],"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":"maxMintAmountPerTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"merkleRoot","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"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":"mintForAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"ownerOf","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"revealed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_newContractURI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_cost","type":"uint256"}],"name":"setCost","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_hiddenMetadataUri","type":"string"}],"name":"setHiddenMetadataUri","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxMintAmountPerTx","type":"uint256"}],"name":"setMaxMintAmountPerTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32","name":"_merkleRoot","type":"bytes32"}],"name":"setMerkleRoot","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setPaused","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setRevealed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriPrefix","type":"string"}],"name":"setUriPrefix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_uriSuffix","type":"string"}],"name":"setUriSuffix","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_state","type":"bool"}],"name":"setWhitelistMintEnabled","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":[{"internalType":"address","name":"","type":"address"}],"name":"whitelistAddressClaimed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_mintAmount","type":"uint256"},{"internalType":"bytes32[]","name":"_merkleProof","type":"bytes32[]"}],"name":"whitelistMint","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"whitelistMintEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526040518060800160405280605081526020016200592760509139600d908051906020019062000035929190620002c5565b5060405180602001604052806000815250600e90805190602001906200005d929190620002c5565b506040518060400160405280600581526020017f2e6a736f6e000000000000000000000000000000000000000000000000000000815250600f9080519060200190620000ab929190620002c5565b50604051806060016040528060358152602001620059776035913960109080519060200190620000dd929190620002c5565b50600060115561138860125560016013556001601460006101000a81548160ff0219169083151502179055506000601460016101000a81548160ff0219169083151502179055506000601460026101000a81548160ff0219169083151502179055503480156200014c57600080fd5b50604051620059ac380380620059ac833981810160405281019062000172919062000512565b818181600290805190602001906200018c929190620002c5565b508060039080519060200190620001a5929190620002c5565b50620001b6620001ee60201b60201c565b6000819055505050620001de620001d2620001f760201b60201c565b620001ff60201b60201c565b60016009819055505050620005fb565b60006001905090565b600033905090565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b828054620002d390620005c6565b90600052602060002090601f016020900481019282620002f7576000855562000343565b82601f106200031257805160ff191683800117855562000343565b8280016001018555821562000343579182015b828111156200034257825182559160200191906001019062000325565b5b50905062000352919062000356565b5090565b5b808211156200037157600081600090555060010162000357565b5090565b6000604051905090565b600080fd5b600080fd5b600080fd5b600080fd5b6000601f19601f8301169050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b620003de8262000393565b810181811067ffffffffffffffff821117156200040057620003ff620003a4565b5b80604052505050565b60006200041562000375565b9050620004238282620003d3565b919050565b600067ffffffffffffffff821115620004465762000445620003a4565b5b620004518262000393565b9050602081019050919050565b60005b838110156200047e57808201518184015260208101905062000461565b838111156200048e576000848401525b50505050565b6000620004ab620004a58462000428565b62000409565b905082815260208101848484011115620004ca57620004c96200038e565b5b620004d78482856200045e565b509392505050565b600082601f830112620004f757620004f662000389565b5b81516200050984826020860162000494565b91505092915050565b600080604083850312156200052c576200052b6200037f565b5b600083015167ffffffffffffffff8111156200054d576200054c62000384565b5b6200055b85828601620004df565b925050602083015167ffffffffffffffff8111156200057f576200057e62000384565b5b6200058d85828601620004df565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620005df57607f821691505b602082108103620005f557620005f462000597565b5b50919050565b61531c806200060b6000396000f3fe6080604052600436106102885760003560e01c8063715018a61161015a578063b071401b116100c1578063e0a808531161007a578063e0a808531461099c578063e8a3d485146109c5578063e985e9c5146109f0578063efbd73f414610a2d578063f26c36e414610a56578063f2fde38b14610a8157610288565b8063b071401b1461089d578063b767a098146108c6578063b88d4fde146108ef578063c87b56dd14610918578063d2cab05614610955578063d5abeb011461097157610288565b8063938e3d7b11610113578063938e3d7b146107ae57806394354fd0146107d757806395d89b4114610802578063a0712d681461082d578063a22cb46514610849578063a45ba8e71461087257610288565b8063715018a6146106a0578063772dc32f146106b75780637af3c77b146106f45780637cb64759146107315780637ec4a6591461075a5780638da5cb5b1461078357610288565b806342842e0e116101fe5780635503a0e8116101b75780635503a0e81461057a5780635c975abb146105a557806362b99ad4146105d05780636352211e146105fb5780636caede3d1461063857806370a082311461066357610288565b806342842e0e1461046e57806342966c6814610497578063438b6300146104c057806344a0d68a146104fd5780634fdd43cb14610526578063518302271461054f57610288565b806316ba10e01161025057806316ba10e01461038657806316c38b3c146103af57806318160ddd146103d857806323b872dd146104035780632eb4a7ab1461042c5780633ccfd60b1461045757610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b31461033257806313faede61461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613fed565b610aaa565b6040516102c19190614035565b60405180910390f35b3480156102d657600080fd5b506102df610b8c565b6040516102ec91906140e9565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190614141565b610c1e565b60405161032991906141af565b60405180910390f35b34801561033e57600080fd5b50610359600480360381019061035491906141f6565b610c9a565b005b34801561036757600080fd5b50610370610d9e565b60405161037d9190614245565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190614395565b610da4565b005b3480156103bb57600080fd5b506103d660048036038101906103d1919061440a565b610e3a565b005b3480156103e457600080fd5b506103ed610f0a565b6040516103fa9190614245565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190614437565b610f21565b005b34801561043857600080fd5b50610441610f31565b60405161044e91906144a3565b60405180910390f35b34801561046357600080fd5b5061046c610f37565b005b34801561047a57600080fd5b5061049560048036038101906104909190614437565b611088565b005b3480156104a357600080fd5b506104be60048036038101906104b99190614141565b6110a8565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906144be565b6110b6565b6040516104f491906145a9565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190614141565b6112c9565b005b34801561053257600080fd5b5061054d60048036038101906105489190614395565b61134f565b005b34801561055b57600080fd5b506105646113e5565b6040516105719190614035565b60405180910390f35b34801561058657600080fd5b5061058f6113f8565b60405161059c91906140e9565b60405180910390f35b3480156105b157600080fd5b506105ba611486565b6040516105c79190614035565b60405180910390f35b3480156105dc57600080fd5b506105e5611499565b6040516105f291906140e9565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190614141565b611527565b60405161062f91906141af565b60405180910390f35b34801561064457600080fd5b5061064d61153d565b60405161065a9190614035565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906144be565b611550565b6040516106979190614245565b60405180910390f35b3480156106ac57600080fd5b506106b561161f565b005b3480156106c357600080fd5b506106de60048036038101906106d991906144be565b6116a7565b6040516106eb9190614035565b60405180910390f35b34801561070057600080fd5b5061071b600480360381019061071691906144be565b6116c7565b6040516107289190614035565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906145f7565b6116e7565b005b34801561076657600080fd5b50610781600480360381019061077c9190614395565b61176d565b005b34801561078f57600080fd5b50610798611803565b6040516107a591906141af565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190614395565b61182d565b005b3480156107e357600080fd5b506107ec6118c3565b6040516107f99190614245565b60405180910390f35b34801561080e57600080fd5b506108176118c9565b60405161082491906140e9565b60405180910390f35b61084760048036038101906108429190614141565b61195b565b005b34801561085557600080fd5b50610870600480360381019061086b9190614624565b611c49565b005b34801561087e57600080fd5b50610887611dc0565b60405161089491906140e9565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190614141565b611e4e565b005b3480156108d257600080fd5b506108ed60048036038101906108e8919061440a565b611ed4565b005b3480156108fb57600080fd5b5061091660048036038101906109119190614705565b611fa4565b005b34801561092457600080fd5b5061093f600480360381019061093a9190614141565b61201c565b60405161094c91906140e9565b60405180910390f35b61096f600480360381019061096a91906147e8565b612174565b005b34801561097d57600080fd5b50610986612523565b6040516109939190614245565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be919061440a565b612529565b005b3480156109d157600080fd5b506109da6125c2565b6040516109e791906140e9565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a129190614848565b612654565b604051610a249190614035565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f9190614888565b6126e8565b005b348015610a6257600080fd5b50610a6b6127b5565b604051610a7891906140e9565b60405180910390f35b348015610a8d57600080fd5b50610aa86004803603810190610aa391906144be565b612843565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b855750610b848261293a565b5b9050919050565b606060028054610b9b906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc7906148f7565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b6000610c29826129a4565b610c5f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca582611527565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d0c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2b6129f2565b73ffffffffffffffffffffffffffffffffffffffff1614610d8e57610d5781610d526129f2565b612654565b610d8d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d998383836129fa565b505050565b60115481565b610dac6129f2565b73ffffffffffffffffffffffffffffffffffffffff16610dca611803565b73ffffffffffffffffffffffffffffffffffffffff1614610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790614974565b60405180910390fd5b80600f9080519060200190610e36929190613e9b565b5050565b610e426129f2565b73ffffffffffffffffffffffffffffffffffffffff16610e60611803565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90614974565b60405180910390fd5b80601460006101000a81548160ff0219169083151502179055507f02329a294d5734b829d4797f78fefc968f9b8735a7058184e6754c5b3f27518a81604051610eff9190614035565b60405180910390a150565b6000610f14612aac565b6001546000540303905090565b610f2c838383612ab5565b505050565b600a5481565b610f3f6129f2565b73ffffffffffffffffffffffffffffffffffffffff16610f5d611803565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90614974565b60405180910390fd5b600260095403610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef906149e0565b60405180910390fd5b6002600981905550600061100a611803565b73ffffffffffffffffffffffffffffffffffffffff164760405161102d90614a31565b60006040518083038185875af1925050503d806000811461106a576040519150601f19603f3d011682016040523d82523d6000602084013e61106f565b606091505b505090508061107d57600080fd5b506001600981905550565b6110a383838360405180602001604052806000815250611fa4565b505050565b6110b3816001612f69565b50565b606060006110c383611550565b905060008167ffffffffffffffff8111156110e1576110e061426a565b5b60405190808252806020026020018201604052801561110f5781602001602082028036833780820191505090505b509050600061111c612aac565b90506000805b8482108015611132575060005483105b156112bc576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516112a857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461124557806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112a7578385848151811061128c5761128b614a46565b5b60200260200101818152505082806112a390614aa4565b9350505b5b83806112b390614aa4565b94505050611122565b8395505050505050919050565b6112d16129f2565b73ffffffffffffffffffffffffffffffffffffffff166112ef611803565b73ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90614974565b60405180910390fd5b8060118190555050565b6113576129f2565b73ffffffffffffffffffffffffffffffffffffffff16611375611803565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290614974565b60405180910390fd5b80601090805190602001906113e1929190613e9b565b5050565b601460029054906101000a900460ff1681565b600f8054611405906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611431906148f7565b801561147e5780601f106114535761010080835404028352916020019161147e565b820191906000526020600020905b81548152906001019060200180831161146157829003601f168201915b505050505081565b601460009054906101000a900460ff1681565b600e80546114a6906148f7565b80601f01602080910402602001604051908101604052809291908181526020018280546114d2906148f7565b801561151f5780601f106114f45761010080835404028352916020019161151f565b820191906000526020600020905b81548152906001019060200180831161150257829003601f168201915b505050505081565b600061153282613358565b600001519050919050565b601460019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116276129f2565b73ffffffffffffffffffffffffffffffffffffffff16611645611803565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614974565b60405180910390fd5b6116a560006135e3565b565b600c6020528060005260406000206000915054906101000a900460ff1681565b600b6020528060005260406000206000915054906101000a900460ff1681565b6116ef6129f2565b73ffffffffffffffffffffffffffffffffffffffff1661170d611803565b73ffffffffffffffffffffffffffffffffffffffff1614611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90614974565b60405180910390fd5b80600a8190555050565b6117756129f2565b73ffffffffffffffffffffffffffffffffffffffff16611793611803565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090614974565b60405180910390fd5b80600e90805190602001906117ff929190613e9b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118356129f2565b73ffffffffffffffffffffffffffffffffffffffff16611853611803565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090614974565b60405180910390fd5b80600d90805190602001906118bf929190613e9b565b5050565b60135481565b6060600380546118d8906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611904906148f7565b80156119515780601f1061192657610100808354040283529160200191611951565b820191906000526020600020905b81548152906001019060200180831161193457829003601f168201915b5050505050905090565b8060008111801561196e57506013548111155b6119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490614b38565b60405180910390fd5b601254816119b9610f0a565b6119c39190614b58565b1115611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90614bfa565b60405180910390fd5b8180601154611a139190614c1a565b341015611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614cc0565b60405180910390fd5b601460009054906101000a900460ff1615611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614d2c565b60405180910390fd5b60125483611ab1610f0a565b611abb9190614b58565b1115611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390614bfa565b60405180910390fd5b600c6000611b086129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790614d98565b60405180910390fd5b6001600c6000611b9e6129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c00611bfa6129f2565b846136a9565b823373ffffffffffffffffffffffffffffffffffffffff167fb7656808f0e04b4af7a20f7ef1caa7669f0d781f1ca4cba31a3ba467880766c960405160405180910390a3505050565b611c516129f2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611cc26129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d6f6129f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611db49190614035565b60405180910390a35050565b60108054611dcd906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611df9906148f7565b8015611e465780601f10611e1b57610100808354040283529160200191611e46565b820191906000526020600020905b815481529060010190602001808311611e2957829003601f168201915b505050505081565b611e566129f2565b73ffffffffffffffffffffffffffffffffffffffff16611e74611803565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190614974565b60405180910390fd5b8060138190555050565b611edc6129f2565b73ffffffffffffffffffffffffffffffffffffffff16611efa611803565b73ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790614974565b60405180910390fd5b80601460016101000a81548160ff0219169083151502179055507fd8811d133b86b3a166dbe4a4e44f65e10e72d43a11f393511cf5c69082fa356a81604051611f999190614035565b60405180910390a150565b611faf848484612ab5565b611fce8373ffffffffffffffffffffffffffffffffffffffff166136c7565b1561201657611fdf848484846136ea565b612015576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060612027826129a4565b612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90614e2a565b60405180910390fd5b60001515601460029054906101000a900460ff16151503612113576010805461208e906148f7565b80601f01602080910402602001604051908101604052809291908181526020018280546120ba906148f7565b80156121075780601f106120dc57610100808354040283529160200191612107565b820191906000526020600020905b8154815290600101906020018083116120ea57829003601f168201915b5050505050905061216f565b600061211d61383a565b9050600081511161213d576040518060200160405280600081525061216b565b80612147846138cc565b600f60405160200161215b93929190614f1a565b6040516020818303038152906040525b9150505b919050565b8260008111801561218757506013548111155b6121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd90614b38565b60405180910390fd5b601254816121d2610f0a565b6121dc9190614b58565b111561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490614bfa565b60405180910390fd5b838060115461222c9190614c1a565b34101561226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590614cc0565b60405180910390fd5b601460019054906101000a900460ff166122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490614fbd565b60405180910390fd5b601254856122c9610f0a565b6122d39190614b58565b1115612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90614bfa565b60405180910390fd5b600b60006123206129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90614d98565b60405180910390fd5b60006123b26129f2565b6040516020016123c29190615025565b604051602081830303815290604052805190602001209050612428858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613a2c565b612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e9061508c565b60405180910390fd5b6001600b60006124756129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506124d76124d16129f2565b876136a9565b853373ffffffffffffffffffffffffffffffffffffffff167fb7656808f0e04b4af7a20f7ef1caa7669f0d781f1ca4cba31a3ba467880766c960405160405180910390a3505050505050565b60125481565b6125316129f2565b73ffffffffffffffffffffffffffffffffffffffff1661254f611803565b73ffffffffffffffffffffffffffffffffffffffff16146125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90614974565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b6060600d80546125d1906148f7565b80601f01602080910402602001604051908101604052809291908181526020018280546125fd906148f7565b801561264a5780601f1061261f5761010080835404028352916020019161264a565b820191906000526020600020905b81548152906001019060200180831161262d57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126f06129f2565b73ffffffffffffffffffffffffffffffffffffffff1661270e611803565b73ffffffffffffffffffffffffffffffffffffffff1614612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b90614974565b60405180910390fd5b600082116127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e90614b38565b60405180910390fd5b6127b181836136a9565b5050565b600d80546127c2906148f7565b80601f01602080910402602001604051908101604052809291908181526020018280546127ee906148f7565b801561283b5780601f106128105761010080835404028352916020019161283b565b820191906000526020600020905b81548152906001019060200180831161281e57829003601f168201915b505050505081565b61284b6129f2565b73ffffffffffffffffffffffffffffffffffffffff16612869611803565b73ffffffffffffffffffffffffffffffffffffffff16146128bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b690614974565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361292e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129259061511e565b60405180910390fd5b612937816135e3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816129af612aac565b111580156129be575060005482105b80156129eb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612ac082613358565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b2b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612b4c6129f2565b73ffffffffffffffffffffffffffffffffffffffff161480612b7b5750612b7a85612b756129f2565b612654565b5b80612bc05750612b896129f2565b73ffffffffffffffffffffffffffffffffffffffff16612ba884610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612bf9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c5f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c6c8585856001613a43565b612c78600084876129fa565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612ef7576000548214612ef657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f628585856001613a49565b5050505050565b6000612f7483613358565b905060008160000151905082156130555760008173ffffffffffffffffffffffffffffffffffffffff16612fa66129f2565b73ffffffffffffffffffffffffffffffffffffffff161480612fd55750612fd482612fcf6129f2565b612654565b5b8061301a5750612fe36129f2565b73ffffffffffffffffffffffffffffffffffffffff1661300286610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613053576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b613063816000866001613a43565b61306f600085836129fa565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036132d25760005482146132d157848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613340816000866001613a49565b60016000815480929190600101919050555050505050565b613360613f21565b60008290508061336e612aac565b116135ac576000548110156135ab576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516135a957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461348d5780925050506135de565b5b6001156135a857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146135a35780925050506135de565b61348e565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6136c3828260405180602001604052806000815250613a4f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137106129f2565b8786866040518563ffffffff1660e01b81526004016137329493929190615193565b6020604051808303816000875af192505050801561376e57506040513d601f19601f8201168201806040525081019061376b91906151f4565b60015b6137e7573d806000811461379e576040519150601f19603f3d011682016040523d82523d6000602084013e6137a3565b606091505b5060008151036137df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054613849906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054613875906148f7565b80156138c25780601f10613897576101008083540402835291602001916138c2565b820191906000526020600020905b8154815290600101906020018083116138a557829003601f168201915b5050505050905090565b606060008203613913576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613a27565b600082905060005b6000821461394557808061392e90614aa4565b915050600a8261393e9190615250565b915061391b565b60008167ffffffffffffffff8111156139615761396061426a565b5b6040519080825280601f01601f1916602001820160405280156139935781602001600182028036833780820191505090505b5090505b60008514613a20576001826139ac9190615281565b9150600a856139bb91906152b5565b60306139c79190614b58565b60f81b8183815181106139dd576139dc614a46565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613a199190615250565b9450613997565b8093505050505b919050565b600082613a398584613e0f565b1490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613abb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303613af5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b026000858386613a43565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613cc38673ffffffffffffffffffffffffffffffffffffffff166136c7565b15613d88575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d3860008784806001019550876136ea565b613d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613cc9578260005414613d8357600080fd5b613df3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613d89575b816000819055505050613e096000858386613a49565b50505050565b60008082905060005b8451811015613e79576000858281518110613e3657613e35614a46565b5b60200260200101519050808311613e5857613e518382613e84565b9250613e65565b613e628184613e84565b92505b508080613e7190614aa4565b915050613e18565b508091505092915050565b600082600052816020526040600020905092915050565b828054613ea7906148f7565b90600052602060002090601f016020900481019282613ec95760008555613f10565b82601f10613ee257805160ff1916838001178555613f10565b82800160010185558215613f10579182015b82811115613f0f578251825591602001919060010190613ef4565b5b509050613f1d9190613f64565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613f7d576000816000905550600101613f65565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613fca81613f95565b8114613fd557600080fd5b50565b600081359050613fe781613fc1565b92915050565b60006020828403121561400357614002613f8b565b5b600061401184828501613fd8565b91505092915050565b60008115159050919050565b61402f8161401a565b82525050565b600060208201905061404a6000830184614026565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561408a57808201518184015260208101905061406f565b83811115614099576000848401525b50505050565b6000601f19601f8301169050919050565b60006140bb82614050565b6140c5818561405b565b93506140d581856020860161406c565b6140de8161409f565b840191505092915050565b6000602082019050818103600083015261410381846140b0565b905092915050565b6000819050919050565b61411e8161410b565b811461412957600080fd5b50565b60008135905061413b81614115565b92915050565b60006020828403121561415757614156613f8b565b5b60006141658482850161412c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141998261416e565b9050919050565b6141a98161418e565b82525050565b60006020820190506141c460008301846141a0565b92915050565b6141d38161418e565b81146141de57600080fd5b50565b6000813590506141f0816141ca565b92915050565b6000806040838503121561420d5761420c613f8b565b5b600061421b858286016141e1565b925050602061422c8582860161412c565b9150509250929050565b61423f8161410b565b82525050565b600060208201905061425a6000830184614236565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142a28261409f565b810181811067ffffffffffffffff821117156142c1576142c061426a565b5b80604052505050565b60006142d4613f81565b90506142e08282614299565b919050565b600067ffffffffffffffff821115614300576142ff61426a565b5b6143098261409f565b9050602081019050919050565b82818337600083830152505050565b6000614338614333846142e5565b6142ca565b90508281526020810184848401111561435457614353614265565b5b61435f848285614316565b509392505050565b600082601f83011261437c5761437b614260565b5b813561438c848260208601614325565b91505092915050565b6000602082840312156143ab576143aa613f8b565b5b600082013567ffffffffffffffff8111156143c9576143c8613f90565b5b6143d584828501614367565b91505092915050565b6143e78161401a565b81146143f257600080fd5b50565b600081359050614404816143de565b92915050565b6000602082840312156144205761441f613f8b565b5b600061442e848285016143f5565b91505092915050565b6000806000606084860312156144505761444f613f8b565b5b600061445e868287016141e1565b935050602061446f868287016141e1565b92505060406144808682870161412c565b9150509250925092565b6000819050919050565b61449d8161448a565b82525050565b60006020820190506144b86000830184614494565b92915050565b6000602082840312156144d4576144d3613f8b565b5b60006144e2848285016141e1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145208161410b565b82525050565b60006145328383614517565b60208301905092915050565b6000602082019050919050565b6000614556826144eb565b61456081856144f6565b935061456b83614507565b8060005b8381101561459c5781516145838882614526565b975061458e8361453e565b92505060018101905061456f565b5085935050505092915050565b600060208201905081810360008301526145c3818461454b565b905092915050565b6145d48161448a565b81146145df57600080fd5b50565b6000813590506145f1816145cb565b92915050565b60006020828403121561460d5761460c613f8b565b5b600061461b848285016145e2565b91505092915050565b6000806040838503121561463b5761463a613f8b565b5b6000614649858286016141e1565b925050602061465a858286016143f5565b9150509250929050565b600067ffffffffffffffff82111561467f5761467e61426a565b5b6146888261409f565b9050602081019050919050565b60006146a86146a384614664565b6142ca565b9050828152602081018484840111156146c4576146c3614265565b5b6146cf848285614316565b509392505050565b600082601f8301126146ec576146eb614260565b5b81356146fc848260208601614695565b91505092915050565b6000806000806080858703121561471f5761471e613f8b565b5b600061472d878288016141e1565b945050602061473e878288016141e1565b935050604061474f8782880161412c565b925050606085013567ffffffffffffffff8111156147705761476f613f90565b5b61477c878288016146d7565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126147a8576147a7614260565b5b8235905067ffffffffffffffff8111156147c5576147c4614788565b5b6020830191508360208202830111156147e1576147e061478d565b5b9250929050565b60008060006040848603121561480157614800613f8b565b5b600061480f8682870161412c565b935050602084013567ffffffffffffffff8111156148305761482f613f90565b5b61483c86828701614792565b92509250509250925092565b6000806040838503121561485f5761485e613f8b565b5b600061486d858286016141e1565b925050602061487e858286016141e1565b9150509250929050565b6000806040838503121561489f5761489e613f8b565b5b60006148ad8582860161412c565b92505060206148be858286016141e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061490f57607f821691505b602082108103614922576149216148c8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061495e60208361405b565b915061496982614928565b602082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006149ca601f8361405b565b91506149d582614994565b602082019050919050565b600060208201905081810360008301526149f9816149bd565b9050919050565b600081905092915050565b50565b6000614a1b600083614a00565b9150614a2682614a0b565b600082019050919050565b6000614a3c82614a0e565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614aaf8261410b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614ae157614ae0614a75565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614b2260148361405b565b9150614b2d82614aec565b602082019050919050565b60006020820190508181036000830152614b5181614b15565b9050919050565b6000614b638261410b565b9150614b6e8361410b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ba357614ba2614a75565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614be460148361405b565b9150614bef82614bae565b602082019050919050565b60006020820190508181036000830152614c1381614bd7565b9050919050565b6000614c258261410b565b9150614c308361410b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c6957614c68614a75565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614caa60138361405b565b9150614cb582614c74565b602082019050919050565b60006020820190508181036000830152614cd981614c9d565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614d1660178361405b565b9150614d2182614ce0565b602082019050919050565b60006020820190508181036000830152614d4581614d09565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000614d8260188361405b565b9150614d8d82614d4c565b602082019050919050565b60006020820190508181036000830152614db181614d75565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614e14602f8361405b565b9150614e1f82614db8565b604082019050919050565b60006020820190508181036000830152614e4381614e07565b9050919050565b600081905092915050565b6000614e6082614050565b614e6a8185614e4a565b9350614e7a81856020860161406c565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614ea8816148f7565b614eb28186614e4a565b94506001821660008114614ecd5760018114614ede57614f11565b60ff19831686528186019350614f11565b614ee785614e86565b60005b83811015614f0957815481890152600182019150602081019050614eea565b838801955050505b50505092915050565b6000614f268286614e55565b9150614f328285614e55565b9150614f3e8284614e9b565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fa760228361405b565b9150614fb282614f4b565b604082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b60008160601b9050919050565b6000614ff582614fdd565b9050919050565b600061500782614fea565b9050919050565b61501f61501a8261418e565b614ffc565b82525050565b6000615031828461500e565b60148201915081905092915050565b7f596f7520617265206e6f7420696e2057686974656c6973742100000000000000600082015250565b600061507660198361405b565b915061508182615040565b602082019050919050565b600060208201905081810360008301526150a581615069565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061510860268361405b565b9150615113826150ac565b604082019050919050565b60006020820190508181036000830152615137816150fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006151658261513e565b61516f8185615149565b935061517f81856020860161406c565b6151888161409f565b840191505092915050565b60006080820190506151a860008301876141a0565b6151b560208301866141a0565b6151c26040830185614236565b81810360608301526151d4818461515a565b905095945050505050565b6000815190506151ee81613fc1565b92915050565b60006020828403121561520a57615209613f8b565b5b6000615218848285016151df565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061525b8261410b565b91506152668361410b565b92508261527657615275615221565b5b828204905092915050565b600061528c8261410b565b91506152978361410b565b9250828210156152aa576152a9614a75565b5b828203905092915050565b60006152c08261410b565b91506152cb8361410b565b9250826152db576152da615221565b5b82820690509291505056fea2646970667358221220be8b85157dbbc291e035e5ba291776f7955405888749f091c6e419b732a8ff7264736f6c634300080d003368747470733a2f2f676174657761792e70696e6174612e636c6f75642f697066732f516d514c5461634e646a505765434b5a6b6e646135384a37504666463435656a4b6e686276317743465442326e47697066733a2f2f516d564a42384231615367486f43334675657267356569547253414e38564a52667770774c6a3274716142434a4a000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005576541726500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055765417265000000000000000000000000000000000000000000000000000000

Deployed Bytecode

0x6080604052600436106102885760003560e01c8063715018a61161015a578063b071401b116100c1578063e0a808531161007a578063e0a808531461099c578063e8a3d485146109c5578063e985e9c5146109f0578063efbd73f414610a2d578063f26c36e414610a56578063f2fde38b14610a8157610288565b8063b071401b1461089d578063b767a098146108c6578063b88d4fde146108ef578063c87b56dd14610918578063d2cab05614610955578063d5abeb011461097157610288565b8063938e3d7b11610113578063938e3d7b146107ae57806394354fd0146107d757806395d89b4114610802578063a0712d681461082d578063a22cb46514610849578063a45ba8e71461087257610288565b8063715018a6146106a0578063772dc32f146106b75780637af3c77b146106f45780637cb64759146107315780637ec4a6591461075a5780638da5cb5b1461078357610288565b806342842e0e116101fe5780635503a0e8116101b75780635503a0e81461057a5780635c975abb146105a557806362b99ad4146105d05780636352211e146105fb5780636caede3d1461063857806370a082311461066357610288565b806342842e0e1461046e57806342966c6814610497578063438b6300146104c057806344a0d68a146104fd5780634fdd43cb14610526578063518302271461054f57610288565b806316ba10e01161025057806316ba10e01461038657806316c38b3c146103af57806318160ddd146103d857806323b872dd146104035780632eb4a7ab1461042c5780633ccfd60b1461045757610288565b806301ffc9a71461028d57806306fdde03146102ca578063081812fc146102f5578063095ea7b31461033257806313faede61461035b575b600080fd5b34801561029957600080fd5b506102b460048036038101906102af9190613fed565b610aaa565b6040516102c19190614035565b60405180910390f35b3480156102d657600080fd5b506102df610b8c565b6040516102ec91906140e9565b60405180910390f35b34801561030157600080fd5b5061031c60048036038101906103179190614141565b610c1e565b60405161032991906141af565b60405180910390f35b34801561033e57600080fd5b50610359600480360381019061035491906141f6565b610c9a565b005b34801561036757600080fd5b50610370610d9e565b60405161037d9190614245565b60405180910390f35b34801561039257600080fd5b506103ad60048036038101906103a89190614395565b610da4565b005b3480156103bb57600080fd5b506103d660048036038101906103d1919061440a565b610e3a565b005b3480156103e457600080fd5b506103ed610f0a565b6040516103fa9190614245565b60405180910390f35b34801561040f57600080fd5b5061042a60048036038101906104259190614437565b610f21565b005b34801561043857600080fd5b50610441610f31565b60405161044e91906144a3565b60405180910390f35b34801561046357600080fd5b5061046c610f37565b005b34801561047a57600080fd5b5061049560048036038101906104909190614437565b611088565b005b3480156104a357600080fd5b506104be60048036038101906104b99190614141565b6110a8565b005b3480156104cc57600080fd5b506104e760048036038101906104e291906144be565b6110b6565b6040516104f491906145a9565b60405180910390f35b34801561050957600080fd5b50610524600480360381019061051f9190614141565b6112c9565b005b34801561053257600080fd5b5061054d60048036038101906105489190614395565b61134f565b005b34801561055b57600080fd5b506105646113e5565b6040516105719190614035565b60405180910390f35b34801561058657600080fd5b5061058f6113f8565b60405161059c91906140e9565b60405180910390f35b3480156105b157600080fd5b506105ba611486565b6040516105c79190614035565b60405180910390f35b3480156105dc57600080fd5b506105e5611499565b6040516105f291906140e9565b60405180910390f35b34801561060757600080fd5b50610622600480360381019061061d9190614141565b611527565b60405161062f91906141af565b60405180910390f35b34801561064457600080fd5b5061064d61153d565b60405161065a9190614035565b60405180910390f35b34801561066f57600080fd5b5061068a600480360381019061068591906144be565b611550565b6040516106979190614245565b60405180910390f35b3480156106ac57600080fd5b506106b561161f565b005b3480156106c357600080fd5b506106de60048036038101906106d991906144be565b6116a7565b6040516106eb9190614035565b60405180910390f35b34801561070057600080fd5b5061071b600480360381019061071691906144be565b6116c7565b6040516107289190614035565b60405180910390f35b34801561073d57600080fd5b50610758600480360381019061075391906145f7565b6116e7565b005b34801561076657600080fd5b50610781600480360381019061077c9190614395565b61176d565b005b34801561078f57600080fd5b50610798611803565b6040516107a591906141af565b60405180910390f35b3480156107ba57600080fd5b506107d560048036038101906107d09190614395565b61182d565b005b3480156107e357600080fd5b506107ec6118c3565b6040516107f99190614245565b60405180910390f35b34801561080e57600080fd5b506108176118c9565b60405161082491906140e9565b60405180910390f35b61084760048036038101906108429190614141565b61195b565b005b34801561085557600080fd5b50610870600480360381019061086b9190614624565b611c49565b005b34801561087e57600080fd5b50610887611dc0565b60405161089491906140e9565b60405180910390f35b3480156108a957600080fd5b506108c460048036038101906108bf9190614141565b611e4e565b005b3480156108d257600080fd5b506108ed60048036038101906108e8919061440a565b611ed4565b005b3480156108fb57600080fd5b5061091660048036038101906109119190614705565b611fa4565b005b34801561092457600080fd5b5061093f600480360381019061093a9190614141565b61201c565b60405161094c91906140e9565b60405180910390f35b61096f600480360381019061096a91906147e8565b612174565b005b34801561097d57600080fd5b50610986612523565b6040516109939190614245565b60405180910390f35b3480156109a857600080fd5b506109c360048036038101906109be919061440a565b612529565b005b3480156109d157600080fd5b506109da6125c2565b6040516109e791906140e9565b60405180910390f35b3480156109fc57600080fd5b50610a176004803603810190610a129190614848565b612654565b604051610a249190614035565b60405180910390f35b348015610a3957600080fd5b50610a546004803603810190610a4f9190614888565b6126e8565b005b348015610a6257600080fd5b50610a6b6127b5565b604051610a7891906140e9565b60405180910390f35b348015610a8d57600080fd5b50610aa86004803603810190610aa391906144be565b612843565b005b60007f80ac58cd000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19161480610b7557507f5b5e139f000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916145b80610b855750610b848261293a565b5b9050919050565b606060028054610b9b906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054610bc7906148f7565b8015610c145780601f10610be957610100808354040283529160200191610c14565b820191906000526020600020905b815481529060010190602001808311610bf757829003601f168201915b5050505050905090565b6000610c29826129a4565b610c5f576040517fcf4700e400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b6006600083815260200190815260200160002060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050919050565b6000610ca582611527565b90508073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d0c576040517f943f7b8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16610d2b6129f2565b73ffffffffffffffffffffffffffffffffffffffff1614610d8e57610d5781610d526129f2565b612654565b610d8d576040517fcfb3b94200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b610d998383836129fa565b505050565b60115481565b610dac6129f2565b73ffffffffffffffffffffffffffffffffffffffff16610dca611803565b73ffffffffffffffffffffffffffffffffffffffff1614610e20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e1790614974565b60405180910390fd5b80600f9080519060200190610e36929190613e9b565b5050565b610e426129f2565b73ffffffffffffffffffffffffffffffffffffffff16610e60611803565b73ffffffffffffffffffffffffffffffffffffffff1614610eb6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ead90614974565b60405180910390fd5b80601460006101000a81548160ff0219169083151502179055507f02329a294d5734b829d4797f78fefc968f9b8735a7058184e6754c5b3f27518a81604051610eff9190614035565b60405180910390a150565b6000610f14612aac565b6001546000540303905090565b610f2c838383612ab5565b505050565b600a5481565b610f3f6129f2565b73ffffffffffffffffffffffffffffffffffffffff16610f5d611803565b73ffffffffffffffffffffffffffffffffffffffff1614610fb3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610faa90614974565b60405180910390fd5b600260095403610ff8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fef906149e0565b60405180910390fd5b6002600981905550600061100a611803565b73ffffffffffffffffffffffffffffffffffffffff164760405161102d90614a31565b60006040518083038185875af1925050503d806000811461106a576040519150601f19603f3d011682016040523d82523d6000602084013e61106f565b606091505b505090508061107d57600080fd5b506001600981905550565b6110a383838360405180602001604052806000815250611fa4565b505050565b6110b3816001612f69565b50565b606060006110c383611550565b905060008167ffffffffffffffff8111156110e1576110e061426a565b5b60405190808252806020026020018201604052801561110f5781602001602082028036833780820191505090505b509050600061111c612aac565b90506000805b8482108015611132575060005483105b156112bc576000600460008581526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516112a857600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461124557806000015191505b8773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036112a7578385848151811061128c5761128b614a46565b5b60200260200101818152505082806112a390614aa4565b9350505b5b83806112b390614aa4565b94505050611122565b8395505050505050919050565b6112d16129f2565b73ffffffffffffffffffffffffffffffffffffffff166112ef611803565b73ffffffffffffffffffffffffffffffffffffffff1614611345576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161133c90614974565b60405180910390fd5b8060118190555050565b6113576129f2565b73ffffffffffffffffffffffffffffffffffffffff16611375611803565b73ffffffffffffffffffffffffffffffffffffffff16146113cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c290614974565b60405180910390fd5b80601090805190602001906113e1929190613e9b565b5050565b601460029054906101000a900460ff1681565b600f8054611405906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611431906148f7565b801561147e5780601f106114535761010080835404028352916020019161147e565b820191906000526020600020905b81548152906001019060200180831161146157829003601f168201915b505050505081565b601460009054906101000a900460ff1681565b600e80546114a6906148f7565b80601f01602080910402602001604051908101604052809291908181526020018280546114d2906148f7565b801561151f5780601f106114f45761010080835404028352916020019161151f565b820191906000526020600020905b81548152906001019060200180831161150257829003601f168201915b505050505081565b600061153282613358565b600001519050919050565b601460019054906101000a900460ff1681565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036115b7576040517f8f4eb60400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff169050919050565b6116276129f2565b73ffffffffffffffffffffffffffffffffffffffff16611645611803565b73ffffffffffffffffffffffffffffffffffffffff161461169b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169290614974565b60405180910390fd5b6116a560006135e3565b565b600c6020528060005260406000206000915054906101000a900460ff1681565b600b6020528060005260406000206000915054906101000a900460ff1681565b6116ef6129f2565b73ffffffffffffffffffffffffffffffffffffffff1661170d611803565b73ffffffffffffffffffffffffffffffffffffffff1614611763576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175a90614974565b60405180910390fd5b80600a8190555050565b6117756129f2565b73ffffffffffffffffffffffffffffffffffffffff16611793611803565b73ffffffffffffffffffffffffffffffffffffffff16146117e9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e090614974565b60405180910390fd5b80600e90805190602001906117ff929190613e9b565b5050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6118356129f2565b73ffffffffffffffffffffffffffffffffffffffff16611853611803565b73ffffffffffffffffffffffffffffffffffffffff16146118a9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118a090614974565b60405180910390fd5b80600d90805190602001906118bf929190613e9b565b5050565b60135481565b6060600380546118d8906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611904906148f7565b80156119515780601f1061192657610100808354040283529160200191611951565b820191906000526020600020905b81548152906001019060200180831161193457829003601f168201915b5050505050905090565b8060008111801561196e57506013548111155b6119ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119a490614b38565b60405180910390fd5b601254816119b9610f0a565b6119c39190614b58565b1115611a04576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119fb90614bfa565b60405180910390fd5b8180601154611a139190614c1a565b341015611a55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a4c90614cc0565b60405180910390fd5b601460009054906101000a900460ff1615611aa5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a9c90614d2c565b60405180910390fd5b60125483611ab1610f0a565b611abb9190614b58565b1115611afc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611af390614bfa565b60405180910390fd5b600c6000611b086129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1615611b90576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b8790614d98565b60405180910390fd5b6001600c6000611b9e6129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550611c00611bfa6129f2565b846136a9565b823373ffffffffffffffffffffffffffffffffffffffff167fb7656808f0e04b4af7a20f7ef1caa7669f0d781f1ca4cba31a3ba467880766c960405160405180910390a3505050565b611c516129f2565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611cb5576040517fb06307db00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b8060076000611cc26129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff16611d6f6129f2565b73ffffffffffffffffffffffffffffffffffffffff167f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c3183604051611db49190614035565b60405180910390a35050565b60108054611dcd906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054611df9906148f7565b8015611e465780601f10611e1b57610100808354040283529160200191611e46565b820191906000526020600020905b815481529060010190602001808311611e2957829003601f168201915b505050505081565b611e566129f2565b73ffffffffffffffffffffffffffffffffffffffff16611e74611803565b73ffffffffffffffffffffffffffffffffffffffff1614611eca576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ec190614974565b60405180910390fd5b8060138190555050565b611edc6129f2565b73ffffffffffffffffffffffffffffffffffffffff16611efa611803565b73ffffffffffffffffffffffffffffffffffffffff1614611f50576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f4790614974565b60405180910390fd5b80601460016101000a81548160ff0219169083151502179055507fd8811d133b86b3a166dbe4a4e44f65e10e72d43a11f393511cf5c69082fa356a81604051611f999190614035565b60405180910390a150565b611faf848484612ab5565b611fce8373ffffffffffffffffffffffffffffffffffffffff166136c7565b1561201657611fdf848484846136ea565b612015576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b50505050565b6060612027826129a4565b612066576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161205d90614e2a565b60405180910390fd5b60001515601460029054906101000a900460ff16151503612113576010805461208e906148f7565b80601f01602080910402602001604051908101604052809291908181526020018280546120ba906148f7565b80156121075780601f106120dc57610100808354040283529160200191612107565b820191906000526020600020905b8154815290600101906020018083116120ea57829003601f168201915b5050505050905061216f565b600061211d61383a565b9050600081511161213d576040518060200160405280600081525061216b565b80612147846138cc565b600f60405160200161215b93929190614f1a565b6040516020818303038152906040525b9150505b919050565b8260008111801561218757506013548111155b6121c6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121bd90614b38565b60405180910390fd5b601254816121d2610f0a565b6121dc9190614b58565b111561221d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161221490614bfa565b60405180910390fd5b838060115461222c9190614c1a565b34101561226e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161226590614cc0565b60405180910390fd5b601460019054906101000a900460ff166122bd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122b490614fbd565b60405180910390fd5b601254856122c9610f0a565b6122d39190614b58565b1115612314576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161230b90614bfa565b60405180910390fd5b600b60006123206129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16156123a8576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161239f90614d98565b60405180910390fd5b60006123b26129f2565b6040516020016123c29190615025565b604051602081830303815290604052805190602001209050612428858580806020026020016040519081016040528093929190818152602001838360200280828437600081840152601f19601f82011690508083019250505050505050600a5483613a2c565b612467576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161245e9061508c565b60405180910390fd5b6001600b60006124756129f2565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506124d76124d16129f2565b876136a9565b853373ffffffffffffffffffffffffffffffffffffffff167fb7656808f0e04b4af7a20f7ef1caa7669f0d781f1ca4cba31a3ba467880766c960405160405180910390a3505050505050565b60125481565b6125316129f2565b73ffffffffffffffffffffffffffffffffffffffff1661254f611803565b73ffffffffffffffffffffffffffffffffffffffff16146125a5576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161259c90614974565b60405180910390fd5b80601460026101000a81548160ff02191690831515021790555050565b6060600d80546125d1906148f7565b80601f01602080910402602001604051908101604052809291908181526020018280546125fd906148f7565b801561264a5780601f1061261f5761010080835404028352916020019161264a565b820191906000526020600020905b81548152906001019060200180831161262d57829003601f168201915b5050505050905090565b6000600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b6126f06129f2565b73ffffffffffffffffffffffffffffffffffffffff1661270e611803565b73ffffffffffffffffffffffffffffffffffffffff1614612764576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161275b90614974565b60405180910390fd5b600082116127a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161279e90614b38565b60405180910390fd5b6127b181836136a9565b5050565b600d80546127c2906148f7565b80601f01602080910402602001604051908101604052809291908181526020018280546127ee906148f7565b801561283b5780601f106128105761010080835404028352916020019161283b565b820191906000526020600020905b81548152906001019060200180831161281e57829003601f168201915b505050505081565b61284b6129f2565b73ffffffffffffffffffffffffffffffffffffffff16612869611803565b73ffffffffffffffffffffffffffffffffffffffff16146128bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016128b690614974565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff160361292e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129259061511e565b60405180910390fd5b612937816135e3565b50565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b6000816129af612aac565b111580156129be575060005482105b80156129eb575060046000838152602001908152602001600020600001601c9054906101000a900460ff16155b9050919050565b600033905090565b826006600084815260200190815260200160002060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550818373ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a4505050565b60006001905090565b6000612ac082613358565b90508373ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff1614612b2b576040517fa114810000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008473ffffffffffffffffffffffffffffffffffffffff16612b4c6129f2565b73ffffffffffffffffffffffffffffffffffffffff161480612b7b5750612b7a85612b756129f2565b612654565b5b80612bc05750612b896129f2565b73ffffffffffffffffffffffffffffffffffffffff16612ba884610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080612bf9576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603612c5f576040517fea553b3400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b612c6c8585856001613a43565b612c78600084876129fa565b6001600560008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008581526020019081526020016000209050848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060006001850190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603612ef7576000548214612ef657878160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555084602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b505050828473ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4612f628585856001613a49565b5050505050565b6000612f7483613358565b905060008160000151905082156130555760008173ffffffffffffffffffffffffffffffffffffffff16612fa66129f2565b73ffffffffffffffffffffffffffffffffffffffff161480612fd55750612fd482612fcf6129f2565b612654565b5b8061301a5750612fe36129f2565b73ffffffffffffffffffffffffffffffffffffffff1661300286610c1e565b73ffffffffffffffffffffffffffffffffffffffff16145b905080613053576040517f59c896be00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b505b613063816000866001613a43565b61306f600085836129fa565b6000600560008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020905060018160000160008282829054906101000a900467ffffffffffffffff160392506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060018160000160108282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506000600460008781526020019081526020016000209050828160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550428160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600181600001601c6101000a81548160ff02191690831515021790555060006001870190506000600460008381526020019081526020016000209050600073ffffffffffffffffffffffffffffffffffffffff168160000160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16036132d25760005482146132d157848160000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085602001518160000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055505b5b5050505083600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613340816000866001613a49565b60016000815480929190600101919050555050505050565b613360613f21565b60008290508061336e612aac565b116135ac576000548110156135ab576000600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff161515151581525050905080604001516135a957600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff161461348d5780925050506135de565b5b6001156135a857818060019003925050600460008381526020019081526020016000206040518060600160405290816000820160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020016000820160149054906101000a900467ffffffffffffffff1667ffffffffffffffff1667ffffffffffffffff16815260200160008201601c9054906101000a900460ff1615151515815250509050600073ffffffffffffffffffffffffffffffffffffffff16816000015173ffffffffffffffffffffffffffffffffffffffff16146135a35780925050506135de565b61348e565b5b505b5b6040517fdf2d9b4200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b919050565b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6136c3828260405180602001604052806000815250613a4f565b5050565b6000808273ffffffffffffffffffffffffffffffffffffffff163b119050919050565b60008373ffffffffffffffffffffffffffffffffffffffff1663150b7a026137106129f2565b8786866040518563ffffffff1660e01b81526004016137329493929190615193565b6020604051808303816000875af192505050801561376e57506040513d601f19601f8201168201806040525081019061376b91906151f4565b60015b6137e7573d806000811461379e576040519150601f19603f3d011682016040523d82523d6000602084013e6137a3565b606091505b5060008151036137df576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b805181602001fd5b63150b7a0260e01b7bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916817bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614915050949350505050565b6060600e8054613849906148f7565b80601f0160208091040260200160405190810160405280929190818152602001828054613875906148f7565b80156138c25780601f10613897576101008083540402835291602001916138c2565b820191906000526020600020905b8154815290600101906020018083116138a557829003601f168201915b5050505050905090565b606060008203613913576040518060400160405280600181526020017f30000000000000000000000000000000000000000000000000000000000000008152509050613a27565b600082905060005b6000821461394557808061392e90614aa4565b915050600a8261393e9190615250565b915061391b565b60008167ffffffffffffffff8111156139615761396061426a565b5b6040519080825280601f01601f1916602001820160405280156139935781602001600182028036833780820191505090505b5090505b60008514613a20576001826139ac9190615281565b9150600a856139bb91906152b5565b60306139c79190614b58565b60f81b8183815181106139dd576139dc614a46565b5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600a85613a199190615250565b9450613997565b8093505050505b919050565b600082613a398584613e0f565b1490509392505050565b50505050565b50505050565b600080549050600073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603613abb576040517f2e07630000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008303613af5576040517fb562e8dd00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b613b026000858386613a43565b82600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160008282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555082600560008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060000160088282829054906101000a900467ffffffffffffffff160192506101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550836004600083815260200190815260200160002060000160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550426004600083815260200190815260200160002060000160146101000a81548167ffffffffffffffff021916908367ffffffffffffffff160217905550600081905060008482019050613cc38673ffffffffffffffffffffffffffffffffffffffff166136c7565b15613d88575b818673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4613d3860008784806001019550876136ea565b613d6e576040517fd1a57ed600000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b808210613cc9578260005414613d8357600080fd5b613df3565b5b818060010192508673ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef60405160405180910390a4808210613d89575b816000819055505050613e096000858386613a49565b50505050565b60008082905060005b8451811015613e79576000858281518110613e3657613e35614a46565b5b60200260200101519050808311613e5857613e518382613e84565b9250613e65565b613e628184613e84565b92505b508080613e7190614aa4565b915050613e18565b508091505092915050565b600082600052816020526040600020905092915050565b828054613ea7906148f7565b90600052602060002090601f016020900481019282613ec95760008555613f10565b82601f10613ee257805160ff1916838001178555613f10565b82800160010185558215613f10579182015b82811115613f0f578251825591602001919060010190613ef4565b5b509050613f1d9190613f64565b5090565b6040518060600160405280600073ffffffffffffffffffffffffffffffffffffffff168152602001600067ffffffffffffffff1681526020016000151581525090565b5b80821115613f7d576000816000905550600101613f65565b5090565b6000604051905090565b600080fd5b600080fd5b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b613fca81613f95565b8114613fd557600080fd5b50565b600081359050613fe781613fc1565b92915050565b60006020828403121561400357614002613f8b565b5b600061401184828501613fd8565b91505092915050565b60008115159050919050565b61402f8161401a565b82525050565b600060208201905061404a6000830184614026565b92915050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561408a57808201518184015260208101905061406f565b83811115614099576000848401525b50505050565b6000601f19601f8301169050919050565b60006140bb82614050565b6140c5818561405b565b93506140d581856020860161406c565b6140de8161409f565b840191505092915050565b6000602082019050818103600083015261410381846140b0565b905092915050565b6000819050919050565b61411e8161410b565b811461412957600080fd5b50565b60008135905061413b81614115565b92915050565b60006020828403121561415757614156613f8b565b5b60006141658482850161412c565b91505092915050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006141998261416e565b9050919050565b6141a98161418e565b82525050565b60006020820190506141c460008301846141a0565b92915050565b6141d38161418e565b81146141de57600080fd5b50565b6000813590506141f0816141ca565b92915050565b6000806040838503121561420d5761420c613f8b565b5b600061421b858286016141e1565b925050602061422c8582860161412c565b9150509250929050565b61423f8161410b565b82525050565b600060208201905061425a6000830184614236565b92915050565b600080fd5b600080fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6142a28261409f565b810181811067ffffffffffffffff821117156142c1576142c061426a565b5b80604052505050565b60006142d4613f81565b90506142e08282614299565b919050565b600067ffffffffffffffff821115614300576142ff61426a565b5b6143098261409f565b9050602081019050919050565b82818337600083830152505050565b6000614338614333846142e5565b6142ca565b90508281526020810184848401111561435457614353614265565b5b61435f848285614316565b509392505050565b600082601f83011261437c5761437b614260565b5b813561438c848260208601614325565b91505092915050565b6000602082840312156143ab576143aa613f8b565b5b600082013567ffffffffffffffff8111156143c9576143c8613f90565b5b6143d584828501614367565b91505092915050565b6143e78161401a565b81146143f257600080fd5b50565b600081359050614404816143de565b92915050565b6000602082840312156144205761441f613f8b565b5b600061442e848285016143f5565b91505092915050565b6000806000606084860312156144505761444f613f8b565b5b600061445e868287016141e1565b935050602061446f868287016141e1565b92505060406144808682870161412c565b9150509250925092565b6000819050919050565b61449d8161448a565b82525050565b60006020820190506144b86000830184614494565b92915050565b6000602082840312156144d4576144d3613f8b565b5b60006144e2848285016141e1565b91505092915050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6145208161410b565b82525050565b60006145328383614517565b60208301905092915050565b6000602082019050919050565b6000614556826144eb565b61456081856144f6565b935061456b83614507565b8060005b8381101561459c5781516145838882614526565b975061458e8361453e565b92505060018101905061456f565b5085935050505092915050565b600060208201905081810360008301526145c3818461454b565b905092915050565b6145d48161448a565b81146145df57600080fd5b50565b6000813590506145f1816145cb565b92915050565b60006020828403121561460d5761460c613f8b565b5b600061461b848285016145e2565b91505092915050565b6000806040838503121561463b5761463a613f8b565b5b6000614649858286016141e1565b925050602061465a858286016143f5565b9150509250929050565b600067ffffffffffffffff82111561467f5761467e61426a565b5b6146888261409f565b9050602081019050919050565b60006146a86146a384614664565b6142ca565b9050828152602081018484840111156146c4576146c3614265565b5b6146cf848285614316565b509392505050565b600082601f8301126146ec576146eb614260565b5b81356146fc848260208601614695565b91505092915050565b6000806000806080858703121561471f5761471e613f8b565b5b600061472d878288016141e1565b945050602061473e878288016141e1565b935050604061474f8782880161412c565b925050606085013567ffffffffffffffff8111156147705761476f613f90565b5b61477c878288016146d7565b91505092959194509250565b600080fd5b600080fd5b60008083601f8401126147a8576147a7614260565b5b8235905067ffffffffffffffff8111156147c5576147c4614788565b5b6020830191508360208202830111156147e1576147e061478d565b5b9250929050565b60008060006040848603121561480157614800613f8b565b5b600061480f8682870161412c565b935050602084013567ffffffffffffffff8111156148305761482f613f90565b5b61483c86828701614792565b92509250509250925092565b6000806040838503121561485f5761485e613f8b565b5b600061486d858286016141e1565b925050602061487e858286016141e1565b9150509250929050565b6000806040838503121561489f5761489e613f8b565b5b60006148ad8582860161412c565b92505060206148be858286016141e1565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061490f57607f821691505b602082108103614922576149216148c8565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061495e60208361405b565b915061496982614928565b602082019050919050565b6000602082019050818103600083015261498d81614951565b9050919050565b7f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00600082015250565b60006149ca601f8361405b565b91506149d582614994565b602082019050919050565b600060208201905081810360008301526149f9816149bd565b9050919050565b600081905092915050565b50565b6000614a1b600083614a00565b9150614a2682614a0b565b600082019050919050565b6000614a3c82614a0e565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000614aaf8261410b565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8203614ae157614ae0614a75565b5b600182019050919050565b7f496e76616c6964206d696e7420616d6f756e7421000000000000000000000000600082015250565b6000614b2260148361405b565b9150614b2d82614aec565b602082019050919050565b60006020820190508181036000830152614b5181614b15565b9050919050565b6000614b638261410b565b9150614b6e8361410b565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115614ba357614ba2614a75565b5b828201905092915050565b7f4d617820737570706c7920657863656564656421000000000000000000000000600082015250565b6000614be460148361405b565b9150614bef82614bae565b602082019050919050565b60006020820190508181036000830152614c1381614bd7565b9050919050565b6000614c258261410b565b9150614c308361410b565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615614c6957614c68614a75565b5b828202905092915050565b7f496e73756666696369656e742066756e64732100000000000000000000000000600082015250565b6000614caa60138361405b565b9150614cb582614c74565b602082019050919050565b60006020820190508181036000830152614cd981614c9d565b9050919050565b7f54686520636f6e74726163742069732070617573656421000000000000000000600082015250565b6000614d1660178361405b565b9150614d2182614ce0565b602082019050919050565b60006020820190508181036000830152614d4581614d09565b9050919050565b7f4164647265737320616c726561647920636c61696d6564210000000000000000600082015250565b6000614d8260188361405b565b9150614d8d82614d4c565b602082019050919050565b60006020820190508181036000830152614db181614d75565b9050919050565b7f4552433732314d657461646174613a2055524920717565727920666f72206e6f60008201527f6e6578697374656e7420746f6b656e0000000000000000000000000000000000602082015250565b6000614e14602f8361405b565b9150614e1f82614db8565b604082019050919050565b60006020820190508181036000830152614e4381614e07565b9050919050565b600081905092915050565b6000614e6082614050565b614e6a8185614e4a565b9350614e7a81856020860161406c565b80840191505092915050565b60008190508160005260206000209050919050565b60008154614ea8816148f7565b614eb28186614e4a565b94506001821660008114614ecd5760018114614ede57614f11565b60ff19831686528186019350614f11565b614ee785614e86565b60005b83811015614f0957815481890152600182019150602081019050614eea565b838801955050505b50505092915050565b6000614f268286614e55565b9150614f328285614e55565b9150614f3e8284614e9b565b9150819050949350505050565b7f5468652077686974656c6973742073616c65206973206e6f7420656e61626c6560008201527f6421000000000000000000000000000000000000000000000000000000000000602082015250565b6000614fa760228361405b565b9150614fb282614f4b565b604082019050919050565b60006020820190508181036000830152614fd681614f9a565b9050919050565b60008160601b9050919050565b6000614ff582614fdd565b9050919050565b600061500782614fea565b9050919050565b61501f61501a8261418e565b614ffc565b82525050565b6000615031828461500e565b60148201915081905092915050565b7f596f7520617265206e6f7420696e2057686974656c6973742100000000000000600082015250565b600061507660198361405b565b915061508182615040565b602082019050919050565b600060208201905081810360008301526150a581615069565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600061510860268361405b565b9150615113826150ac565b604082019050919050565b60006020820190508181036000830152615137816150fb565b9050919050565b600081519050919050565b600082825260208201905092915050565b60006151658261513e565b61516f8185615149565b935061517f81856020860161406c565b6151888161409f565b840191505092915050565b60006080820190506151a860008301876141a0565b6151b560208301866141a0565b6151c26040830185614236565b81810360608301526151d4818461515a565b905095945050505050565b6000815190506151ee81613fc1565b92915050565b60006020828403121561520a57615209613f8b565b5b6000615218848285016151df565b91505092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061525b8261410b565b91506152668361410b565b92508261527657615275615221565b5b828204905092915050565b600061528c8261410b565b91506152978361410b565b9250828210156152aa576152a9614a75565b5b828203905092915050565b60006152c08261410b565b91506152cb8361410b565b9250826152db576152da615221565b5b82820690509291505056fea2646970667358221220be8b85157dbbc291e035e5ba291776f7955405888749f091c6e419b732a8ff7264736f6c634300080d0033

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

000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000005576541726500000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000055765417265000000000000000000000000000000000000000000000000000000

-----Decoded View---------------
Arg [0] : _tokenName (string): WeAre
Arg [1] : _tokenSymbol (string): WeAre

-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000040
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000080
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [3] : 5765417265000000000000000000000000000000000000000000000000000000
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [5] : 5765417265000000000000000000000000000000000000000000000000000000


Deployed Bytecode Sourcemap

52882:5757:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;33989:305;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37104:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38608:204;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;38170:372;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53400:29;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57906:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58012:102;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33229:312;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39473:170;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;52973:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58364:162;;;;;;;;;;;;;:::i;:::-;;39714:185;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56508:71;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;55669:833;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57446:74;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57662:132;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53589:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53264:33;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53514:25;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53231:28;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;36912:125;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53544:40;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;34358:206;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10174:103;;;;;;;;;;;;;:::i;:::-;;53063:46;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;53003:55;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;58120:98;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;57800:100;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;9523:87;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57239:114;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53470:37;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;37273:104;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54998:449;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;38884:287;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53302:89;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57526:130;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;58224:134;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;39970:370;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56788:445;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;54257:735;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53434:31;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;57359:81;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;56686:96;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;39242:164;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;55480:183;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;53116:110;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10432:201;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;:::i;:::-;;33989:305;34091:4;34143:25;34128:40;;;:11;:40;;;;:105;;;;34200:33;34185:48;;;:11;:48;;;;34128:105;:158;;;;34250:36;34274:11;34250:23;:36::i;:::-;34128:158;34108:178;;33989:305;;;:::o;37104:100::-;37158:13;37191:5;37184:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37104:100;:::o;38608:204::-;38676:7;38701:16;38709:7;38701;:16::i;:::-;38696:64;;38726:34;;;;;;;;;;;;;;38696:64;38780:15;:24;38796:7;38780:24;;;;;;;;;;;;;;;;;;;;;38773:31;;38608:204;;;:::o;38170:372::-;38243:13;38259:24;38275:7;38259:15;:24::i;:::-;38243:40;;38304:5;38298:11;;:2;:11;;;38294:48;;38318:24;;;;;;;;;;;;;;38294:48;38375:5;38359:21;;:12;:10;:12::i;:::-;:21;;;38355:139;;38386:37;38403:5;38410:12;:10;:12::i;:::-;38386:16;:37::i;:::-;38382:112;;38447:35;;;;;;;;;;;;;;38382:112;38355:139;38506:28;38515:2;38519:7;38528:5;38506:8;:28::i;:::-;38232:310;38170:372;;:::o;53400:29::-;;;;:::o;57906:100::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57990:10:::1;57978:9;:22;;;;;;;;;;;;:::i;:::-;;57906:100:::0;:::o;58012:102::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58077:6:::1;58068;;:15;;;;;;;;;;;;;;;;;;58095:13;58101:6;58095:13;;;;;;:::i;:::-;;;;;;;;58012:102:::0;:::o;33229:312::-;33282:7;33507:15;:13;:15::i;:::-;33492:12;;33476:13;;:28;:46;33469:53;;33229:312;:::o;39473:170::-;39607:28;39617:4;39623:2;39627:7;39607:9;:28::i;:::-;39473:170;;;:::o;52973:25::-;;;;:::o;58364:162::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1:::1;2410:7;;:19:::0;2402:63:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;1812:1;2543:7;:18;;;;58428:7:::2;58449;:5;:7::i;:::-;58441:21;;58470;58441:55;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58427:69;;;58511:2;58503:11;;;::::0;::::2;;58414:112;1768:1:::1;2722:7;:22;;;;58364:162::o:0;39714:185::-;39852:39;39869:4;39875:2;39879:7;39852:39;;;;;;;;;;;;:16;:39::i;:::-;39714:185;;;:::o;56508:71::-;56553:20;56559:7;56568:4;56553:5;:20::i;:::-;56508:71;:::o;55669:833::-;55729:16;55754:23;55780:17;55790:6;55780:9;:17::i;:::-;55754:43;;55804:30;55851:15;55837:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;55804:63;;55874:22;55899:15;:13;:15::i;:::-;55874:40;;55921:23;55955:26;55990:478;56015:15;55997;:33;:67;;;;;56051:13;;56034:14;:30;55997:67;55990:478;;;56075:31;56109:11;:27;56121:14;56109:27;;;;;;;;;;;56075:61;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56152:9;:16;;;56147:287;;56211:1;56185:28;;:9;:14;;;:28;;;56181:94;;56249:9;:14;;;56228:35;;56181:94;56313:6;56291:28;;:18;:28;;;56287:138;;56367:14;56334:13;56348:15;56334:30;;;;;;;;:::i;:::-;;;;;;;:47;;;;;56396:17;;;;;:::i;:::-;;;;56287:138;56147:287;56444:16;;;;;:::i;:::-;;;;56066:402;55990:478;;;56483:13;56476:20;;;;;;;55669:833;;;:::o;57446:74::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57509:5:::1;57502:4;:12;;;;57446:74:::0;:::o;57662:132::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57770:18:::1;57750:17;:38;;;;;;;;;;;;:::i;:::-;;57662:132:::0;:::o;53589:28::-;;;;;;;;;;;;;:::o;53264:33::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;53514:25::-;;;;;;;;;;;;;:::o;53231:28::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;36912:125::-;36976:7;37003:21;37016:7;37003:12;:21::i;:::-;:26;;;36996:33;;36912:125;;;:::o;53544:40::-;;;;;;;;;;;;;:::o;34358:206::-;34422:7;34463:1;34446:19;;:5;:19;;;34442:60;;34474:28;;;;;;;;;;;;;;34442:60;34528:12;:19;34541:5;34528:19;;;;;;;;;;;;;;;:27;;;;;;;;;;;;34520:36;;34513:43;;34358:206;;;:::o;10174:103::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10239:30:::1;10266:1;10239:18;:30::i;:::-;10174:103::o:0;53063:46::-;;;;;;;;;;;;;;;;;;;;;;:::o;53003:55::-;;;;;;;;;;;;;;;;;;;;;;:::o;58120:98::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58201:11:::1;58188:10;:24;;;;58120:98:::0;:::o;57800:100::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57884:10:::1;57872:9;:22;;;;;;;;;;;;:::i;:::-;;57800:100:::0;:::o;9523:87::-;9569:7;9596:6;;;;;;;;;;;9589:13;;9523:87;:::o;57239:114::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57332:15:::1;57318:11;:29;;;;;;;;;;;;:::i;:::-;;57239:114:::0;:::o;53470:37::-;;;;:::o;37273:104::-;37329:13;37362:7;37355:14;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;37273:104;:::o;54998:449::-;55063:11;53954:1;53940:11;:15;:52;;;;;53974:18;;53959:11;:33;;53940:52;53932:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;54063:9;;54048:11;54032:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;54024:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55096:11:::1;54202;54195:4;;:18;;;;:::i;:::-;54182:9;:31;;54174:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;55124:6:::2;;;;;;;;;;;55123:7;55115:43;;;;;;;;;;;;:::i;:::-;;;;;;;;;55204:9;;55189:11;55173:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;55165:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;55254:14;:28;55269:12;:10;:12::i;:::-;55254:28;;;;;;;;;;;;;;;;;;;;;;;;;55253:29;55245:66;;;;;;;;;;;;:::i;:::-;;;;;;;;;55351:4;55320:14;:28;55335:12;:10;:12::i;:::-;55320:28;;;;;;;;;;;;;;;;:35;;;;;;;;;;;;;;;;;;55362:36;55372:12;:10;:12::i;:::-;55386:11;55362:9;:36::i;:::-;55429:11;55417:10;55410:31;;;;;;;;;;;;54104:1:::1;54998:449:::0;;:::o;38884:287::-;38995:12;:10;:12::i;:::-;38983:24;;:8;:24;;;38979:54;;39016:17;;;;;;;;;;;;;;38979:54;39091:8;39046:18;:32;39065:12;:10;:12::i;:::-;39046:32;;;;;;;;;;;;;;;:42;39079:8;39046:42;;;;;;;;;;;;;;;;:53;;;;;;;;;;;;;;;;;;39144:8;39115:48;;39130:12;:10;:12::i;:::-;39115:48;;;39154:8;39115:48;;;;;;:::i;:::-;;;;;;;;38884:287;;:::o;53302:89::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;57526:130::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57631:19:::1;57610:18;:40;;;;57526:130:::0;:::o;58224:134::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;58317:6:::1;58294:20;;:29;;;;;;;;;;;;;;;;;;58335:17;58345:6;58335:17;;;;;;:::i;:::-;;;;;;;;58224:134:::0;:::o;39970:370::-;40137:28;40147:4;40153:2;40157:7;40137:9;:28::i;:::-;40180:15;:2;:13;;;:15::i;:::-;40176:157;;;40201:56;40232:4;40238:2;40242:7;40251:5;40201:30;:56::i;:::-;40197:136;;40281:40;;;;;;;;;;;;;;40197:136;40176:157;39970:370;;;;:::o;56788:445::-;56862:13;56892:17;56900:8;56892:7;:17::i;:::-;56884:77;;;;;;;;;;;;:::i;:::-;;;;;;;;;56986:5;56974:17;;:8;;;;;;;;;;;:17;;;56970:64;;57009:17;57002:24;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56970:64;57042:28;57073:10;:8;:10::i;:::-;57042:41;;57128:1;57103:14;57097:28;:32;:130;;;;;;;;;;;;;;;;;57165:14;57181:19;:8;:17;:19::i;:::-;57202:9;57148:64;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;57097:130;57090:137;;;56788:445;;;;:::o;54257:735::-;54364:11;53954:1;53940:11;:15;:52;;;;;53974:18;;53959:11;:33;;53940:52;53932:85;;;;;;;;;;;;:::i;:::-;;;;;;;;;54063:9;;54048:11;54032:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;54024:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54397:11:::1;54202;54195:4;;:18;;;;:::i;:::-;54182:9;:31;;54174:63;;;;;;;;;;;;:::i;:::-;;;;;;;;;54424:20:::2;;;;;;;;;;;54416:67;;;;;;;;;;;;:::i;:::-;;;;;;;;;54529:9;;54514:11;54498:13;:11;:13::i;:::-;:27;;;;:::i;:::-;:40;;54490:73;;;;;;;;;;;;:::i;:::-;;;;;;;;;54579:23;:37;54603:12;:10;:12::i;:::-;54579:37;;;;;;;;;;;;;;;;;;;;;;;;;54578:38;54570:75;;;;;;;;;;;;:::i;:::-;;;;;;;;;54696:12;54738;:10;:12::i;:::-;54721:30;;;;;;;;:::i;:::-;;;;;;;;;;;;;54711:41;;;;;;54696:56;;54767:50;54786:12;;54767:50;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;54800:10;;54812:4;54767:18;:50::i;:::-;54759:88;;;;;;;;;;;;:::i;:::-;;;;;;;;;54896:4;54856:23;:37;54880:12;:10;:12::i;:::-;54856:37;;;;;;;;;;;;;;;;:44;;;;;;;;;;;;;;;;;;54907:36;54917:12;:10;:12::i;:::-;54931:11;54907:9;:36::i;:::-;54974:11;54962:10;54955:31;;;;;;;;;;;;54409:583;54104:1:::1;54257:735:::0;;;;:::o;53434:31::-;;;;:::o;57359:81::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;57428:6:::1;57417:8;;:17;;;;;;;;;;;;;;;;;;57359:81:::0;:::o;56686:96::-;56730:13;56763:11;56756:18;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;56686:96;:::o;39242:164::-;39339:4;39363:18;:25;39382:5;39363:25;;;;;;;;;;;;;;;:35;39389:8;39363:35;;;;;;;;;;;;;;;;;;;;;;;;;39356:42;;39242:164;;;;:::o;55480:183::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;55590:1:::1;55576:11;:15;55568:49;;;;;;;;;;;;:::i;:::-;;;;;;;;;55624:33;55634:9;55645:11;55624:9;:33::i;:::-;55480:183:::0;;:::o;53116:110::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;10432:201::-;9754:12;:10;:12::i;:::-;9743:23;;:7;:5;:7::i;:::-;:23;;;9735:68;;;;;;;;;;;;:::i;:::-;;;;;;;;;10541:1:::1;10521:22;;:8;:22;;::::0;10513:73:::1;;;;;;;;;;;;:::i;:::-;;;;;;;;;10597:28;10616:8;10597:18;:28::i;:::-;10432:201:::0;:::o;22330:157::-;22415:4;22454:25;22439:40;;;:11;:40;;;;22432:47;;22330:157;;;:::o;40595:174::-;40652:4;40695:7;40676:15;:13;:15::i;:::-;:26;;:53;;;;;40716:13;;40706:7;:23;40676:53;:85;;;;;40734:11;:20;40746:7;40734:20;;;;;;;;;;;:27;;;;;;;;;;;;40733:28;40676:85;40669:92;;40595:174;;;:::o;8247:98::-;8300:7;8327:10;8320:17;;8247:98;:::o;49817:196::-;49959:2;49932:15;:24;49948:7;49932:24;;;;;;;;;;;;:29;;;;;;;;;;;;;;;;;;49997:7;49993:2;49977:28;;49986:5;49977:28;;;;;;;;;;;;49817:196;;;:::o;56585:95::-;56650:7;56673:1;56666:8;;56585:95;:::o;44765:2130::-;44880:35;44918:21;44931:7;44918:12;:21::i;:::-;44880:59;;44978:4;44956:26;;:13;:18;;;:26;;;44952:67;;44991:28;;;;;;;;;;;;;;44952:67;45032:22;45074:4;45058:20;;:12;:10;:12::i;:::-;:20;;;:73;;;;45095:36;45112:4;45118:12;:10;:12::i;:::-;45095:16;:36::i;:::-;45058:73;:126;;;;45172:12;:10;:12::i;:::-;45148:36;;:20;45160:7;45148:11;:20::i;:::-;:36;;;45058:126;45032:153;;45203:17;45198:66;;45229:35;;;;;;;;;;;;;;45198:66;45293:1;45279:16;;:2;:16;;;45275:52;;45304:23;;;;;;;;;;;;;;45275:52;45340:43;45362:4;45368:2;45372:7;45381:1;45340:21;:43::i;:::-;45448:35;45465:1;45469:7;45478:4;45448:8;:35::i;:::-;45809:1;45779:12;:18;45792:4;45779:18;;;;;;;;;;;;;;;:26;;;:31;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45853:1;45825:12;:16;45838:2;45825:16;;;;;;;;;;;;;;;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;45871:31;45905:11;:20;45917:7;45905:20;;;;;;;;;;;45871:54;;45956:2;45940:8;:13;;;:18;;;;;;;;;;;;;;;;;;46006:15;45973:8;:23;;;:49;;;;;;;;;;;;;;;;;;46274:19;46306:1;46296:7;:11;46274:33;;46322:31;46356:11;:24;46368:11;46356:24;;;;;;;;;;;46322:58;;46424:1;46399:27;;:8;:13;;;;;;;;;;;;:27;;;46395:384;;46609:13;;46594:11;:28;46590:174;;46663:4;46647:8;:13;;;:20;;;;;;;;;;;;;;;;;;46716:13;:28;;;46690:8;:23;;;:54;;;;;;;;;;;;;;;;;;46590:174;46395:384;45754:1036;;;46826:7;46822:2;46807:27;;46816:4;46807:27;;;;;;;;;;;;46845:42;46866:4;46872:2;46876:7;46885:1;46845:20;:42::i;:::-;44869:2026;;44765:2130;;;:::o;47291:2408::-;47371:35;47409:21;47422:7;47409:12;:21::i;:::-;47371:59;;47443:12;47458:13;:18;;;47443:33;;47493:13;47489:290;;;47523:22;47565:4;47549:20;;:12;:10;:12::i;:::-;:20;;;:77;;;;47590:36;47607:4;47613:12;:10;:12::i;:::-;47590:16;:36::i;:::-;47549:77;:134;;;;47671:12;:10;:12::i;:::-;47647:36;;:20;47659:7;47647:11;:20::i;:::-;:36;;;47549:134;47523:161;;47706:17;47701:66;;47732:35;;;;;;;;;;;;;;47701:66;47508:271;47489:290;47791:51;47813:4;47827:1;47831:7;47840:1;47791:21;:51::i;:::-;47907:35;47924:1;47928:7;47937:4;47907:8;:35::i;:::-;48238:31;48272:12;:18;48285:4;48272:18;;;;;;;;;;;;;;;48238:52;;48328:1;48305:11;:19;;;:24;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48372:1;48344:11;:24;;;:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;48472:31;48506:11;:20;48518:7;48506:20;;;;;;;;;;;48472:54;;48557:4;48541:8;:13;;;:20;;;;;;;;;;;;;;;;;;48609:15;48576:8;:23;;;:49;;;;;;;;;;;;;;;;;;48658:4;48640:8;:15;;;:22;;;;;;;;;;;;;;;;;;48910:19;48942:1;48932:7;:11;48910:33;;48958:31;48992:11;:24;49004:11;48992:24;;;;;;;;;;;48958:58;;49060:1;49035:27;;:8;:13;;;;;;;;;;;;:27;;;49031:384;;49245:13;;49230:11;:28;49226:174;;49299:4;49283:8;:13;;;:20;;;;;;;;;;;;;;;;;;49352:13;:28;;;49326:8;:23;;;:54;;;;;;;;;;;;;;;;;;49226:174;49031:384;48213:1213;;;;49470:7;49466:1;49443:35;;49452:4;49443:35;;;;;;;;;;;;49489:50;49510:4;49524:1;49528:7;49537:1;49489:20;:50::i;:::-;49666:12;;:14;;;;;;;;;;;;;47360:2339;;47291:2408;;:::o;35739:1111::-;35801:21;;:::i;:::-;35835:12;35850:7;35835:22;;35918:4;35899:15;:13;:15::i;:::-;:23;35895:888;;35935:13;;35928:4;:20;35924:859;;;35969:31;36003:11;:17;36015:4;36003:17;;;;;;;;;;;35969:51;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36044:9;:16;;;36039:729;;36115:1;36089:28;;:9;:14;;;:28;;;36085:101;;36153:9;36146:16;;;;;;36085:101;36488:261;36495:4;36488:261;;;36528:6;;;;;;;;36573:11;:17;36585:4;36573:17;;;;;;;;;;;36561:29;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;36647:1;36621:28;;:9;:14;;;:28;;;36617:109;;36689:9;36682:16;;;;;;36617:109;36488:261;;;36039:729;35950:833;35924:859;35895:888;36811:31;;;;;;;;;;;;;;35739:1111;;;;:::o;10793:191::-;10867:16;10886:6;;;;;;;;;;;10867:25;;10912:8;10903:6;;:17;;;;;;;;;;;;;;;;;;10967:8;10936:40;;10957:8;10936:40;;;;;;;;;;;;10856:128;10793:191;:::o;40853:104::-;40922:27;40932:2;40936:8;40922:27;;;;;;;;;;;;:9;:27::i;:::-;40853:104;;:::o;12224:326::-;12284:4;12541:1;12519:7;:19;;;:23;12512:30;;12224:326;;;:::o;50505:667::-;50668:4;50705:2;50689:36;;;50726:12;:10;:12::i;:::-;50740:4;50746:7;50755:5;50689:72;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;50685:480;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;50940:1;50923:6;:13;:18;50919:235;;50969:40;;;;;;;;;;;;;;50919:235;51112:6;51106:13;51097:6;51093:2;51089:15;51082:38;50685:480;50818:45;;;50808:55;;;:6;:55;;;;50801:62;;;50505:667;;;;;;:::o;58532:104::-;58592:13;58621:9;58614:16;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;58532:104;:::o;5809:723::-;5865:13;6095:1;6086:5;:10;6082:53;;6113:10;;;;;;;;;;;;;;;;;;;;;6082:53;6145:12;6160:5;6145:20;;6176:14;6201:78;6216:1;6208:4;:9;6201:78;;6234:8;;;;;:::i;:::-;;;;6265:2;6257:10;;;;;:::i;:::-;;;6201:78;;;6289:19;6321:6;6311:17;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6289:39;;6339:154;6355:1;6346:5;:10;6339:154;;6383:1;6373:11;;;;;:::i;:::-;;;6450:2;6442:5;:10;;;;:::i;:::-;6429:2;:24;;;;:::i;:::-;6416:39;;6399:6;6406;6399:14;;;;;;;;:::i;:::-;;;;;:56;;;;;;;;;;;6479:2;6470:11;;;;;:::i;:::-;;;6339:154;;;6517:6;6503:21;;;;;5809:723;;;;:::o;3979:190::-;4104:4;4157;4128:25;4141:5;4148:4;4128:12;:25::i;:::-;:33;4121:40;;3979:190;;;;;:::o;51820:159::-;;;;;:::o;52638:158::-;;;;;:::o;41330:1749::-;41453:20;41476:13;;41453:36;;41518:1;41504:16;;:2;:16;;;41500:48;;41529:19;;;;;;;;;;;;;;41500:48;41575:1;41563:8;:13;41559:44;;41585:18;;;;;;;;;;;;;;41559:44;41616:61;41646:1;41650:2;41654:12;41668:8;41616:21;:61::i;:::-;41989:8;41954:12;:16;41967:2;41954:16;;;;;;;;;;;;;;;:24;;;:44;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42053:8;42013:12;:16;42026:2;42013:16;;;;;;;;;;;;;;;:29;;;:49;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;42112:2;42079:11;:25;42091:12;42079:25;;;;;;;;;;;:30;;;:35;;;;;;;;;;;;;;;;;;42179:15;42129:11;:25;42141:12;42129:25;;;;;;;;;;;:40;;;:66;;;;;;;;;;;;;;;;;;42212:20;42235:12;42212:35;;42262:11;42291:8;42276:12;:23;42262:37;;42320:15;:2;:13;;;:15::i;:::-;42316:631;;;42356:313;42412:12;42408:2;42387:38;;42404:1;42387:38;;;;;;;;;;;;42453:69;42492:1;42496:2;42500:14;;;;;;42516:5;42453:30;:69::i;:::-;42448:174;;42558:40;;;;;;;;;;;;;;42448:174;42664:3;42649:12;:18;42356:313;;42750:12;42733:13;;:29;42729:43;;42764:8;;;42729:43;42316:631;;;42813:119;42869:14;;;;;;42865:2;42844:40;;42861:1;42844:40;;;;;;;;;;;;42927:3;42912:12;:18;42813:119;;42316:631;42977:12;42961:13;:28;;;;41929:1072;;43011:60;43040:1;43044:2;43048:12;43062:8;43011:20;:60::i;:::-;41442:1637;41330:1749;;;:::o;4530:675::-;4613:7;4633:20;4656:4;4633:27;;4676:9;4671:497;4695:5;:12;4691:1;:16;4671:497;;;4729:20;4752:5;4758:1;4752:8;;;;;;;;:::i;:::-;;;;;;;;4729:31;;4795:12;4779;:28;4775:382;;4922:42;4937:12;4951;4922:14;:42::i;:::-;4907:57;;4775:382;;;5099:42;5114:12;5128;5099:14;:42::i;:::-;5084:57;;4775:382;4714:454;4709:3;;;;;:::i;:::-;;;;4671:497;;;;5185:12;5178:19;;;4530:675;;;;:::o;5213:224::-;5281:13;5344:1;5338:4;5331:15;5373:1;5367:4;5360:15;5414:4;5408;5398:21;5389:30;;5213:224;;;;:::o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;:::-;;;;;;;;;;;;;;;;;;;;;:::o;7:75:1:-;40:6;73:2;67:9;57:19;;7:75;:::o;88:117::-;197:1;194;187:12;211:117;320:1;317;310:12;334:149;370:7;410:66;403:5;399:78;388:89;;334:149;;;:::o;489:120::-;561:23;578:5;561:23;:::i;:::-;554:5;551:34;541:62;;599:1;596;589:12;541:62;489:120;:::o;615:137::-;660:5;698:6;685:20;676:29;;714:32;740:5;714:32;:::i;:::-;615:137;;;;:::o;758:327::-;816:6;865:2;853:9;844:7;840:23;836:32;833:119;;;871:79;;:::i;:::-;833:119;991:1;1016:52;1060:7;1051:6;1040:9;1036:22;1016:52;:::i;:::-;1006:62;;962:116;758:327;;;;:::o;1091:90::-;1125:7;1168:5;1161:13;1154:21;1143:32;;1091:90;;;:::o;1187:109::-;1268:21;1283:5;1268:21;:::i;:::-;1263:3;1256:34;1187:109;;:::o;1302:210::-;1389:4;1427:2;1416:9;1412:18;1404:26;;1440:65;1502:1;1491:9;1487:17;1478:6;1440:65;:::i;:::-;1302:210;;;;:::o;1518:99::-;1570:6;1604:5;1598:12;1588:22;;1518:99;;;:::o;1623:169::-;1707:11;1741:6;1736:3;1729:19;1781:4;1776:3;1772:14;1757:29;;1623:169;;;;:::o;1798:307::-;1866:1;1876:113;1890:6;1887:1;1884:13;1876:113;;;1975:1;1970:3;1966:11;1960:18;1956:1;1951:3;1947:11;1940:39;1912:2;1909:1;1905:10;1900:15;;1876:113;;;2007:6;2004:1;2001:13;1998:101;;;2087:1;2078:6;2073:3;2069:16;2062:27;1998:101;1847:258;1798:307;;;:::o;2111:102::-;2152:6;2203:2;2199:7;2194:2;2187:5;2183:14;2179:28;2169:38;;2111:102;;;:::o;2219:364::-;2307:3;2335:39;2368:5;2335:39;:::i;:::-;2390:71;2454:6;2449:3;2390:71;:::i;:::-;2383:78;;2470:52;2515:6;2510:3;2503:4;2496:5;2492:16;2470:52;:::i;:::-;2547:29;2569:6;2547:29;:::i;:::-;2542:3;2538:39;2531:46;;2311:272;2219:364;;;;:::o;2589:313::-;2702:4;2740:2;2729:9;2725:18;2717:26;;2789:9;2783:4;2779:20;2775:1;2764:9;2760:17;2753:47;2817:78;2890:4;2881:6;2817:78;:::i;:::-;2809:86;;2589:313;;;;:::o;2908:77::-;2945:7;2974:5;2963:16;;2908:77;;;:::o;2991:122::-;3064:24;3082:5;3064:24;:::i;:::-;3057:5;3054:35;3044:63;;3103:1;3100;3093:12;3044:63;2991:122;:::o;3119:139::-;3165:5;3203:6;3190:20;3181:29;;3219:33;3246:5;3219:33;:::i;:::-;3119:139;;;;:::o;3264:329::-;3323:6;3372:2;3360:9;3351:7;3347:23;3343:32;3340:119;;;3378:79;;:::i;:::-;3340:119;3498:1;3523:53;3568:7;3559:6;3548:9;3544:22;3523:53;:::i;:::-;3513:63;;3469:117;3264:329;;;;:::o;3599:126::-;3636:7;3676:42;3669:5;3665:54;3654:65;;3599:126;;;:::o;3731:96::-;3768:7;3797:24;3815:5;3797:24;:::i;:::-;3786:35;;3731:96;;;:::o;3833:118::-;3920:24;3938:5;3920:24;:::i;:::-;3915:3;3908:37;3833:118;;:::o;3957:222::-;4050:4;4088:2;4077:9;4073:18;4065:26;;4101:71;4169:1;4158:9;4154:17;4145:6;4101:71;:::i;:::-;3957:222;;;;:::o;4185:122::-;4258:24;4276:5;4258:24;:::i;:::-;4251:5;4248:35;4238:63;;4297:1;4294;4287:12;4238:63;4185:122;:::o;4313:139::-;4359:5;4397:6;4384:20;4375:29;;4413:33;4440:5;4413:33;:::i;:::-;4313:139;;;;:::o;4458:474::-;4526:6;4534;4583:2;4571:9;4562:7;4558:23;4554:32;4551:119;;;4589:79;;:::i;:::-;4551:119;4709:1;4734:53;4779:7;4770:6;4759:9;4755:22;4734:53;:::i;:::-;4724:63;;4680:117;4836:2;4862:53;4907:7;4898:6;4887:9;4883:22;4862:53;:::i;:::-;4852:63;;4807:118;4458:474;;;;;:::o;4938:118::-;5025:24;5043:5;5025:24;:::i;:::-;5020:3;5013:37;4938:118;;:::o;5062:222::-;5155:4;5193:2;5182:9;5178:18;5170:26;;5206:71;5274:1;5263:9;5259:17;5250:6;5206:71;:::i;:::-;5062:222;;;;:::o;5290:117::-;5399:1;5396;5389:12;5413:117;5522:1;5519;5512:12;5536:180;5584:77;5581:1;5574:88;5681:4;5678:1;5671:15;5705:4;5702:1;5695:15;5722:281;5805:27;5827:4;5805:27;:::i;:::-;5797:6;5793:40;5935:6;5923:10;5920:22;5899:18;5887:10;5884:34;5881:62;5878:88;;;5946:18;;:::i;:::-;5878:88;5986:10;5982:2;5975:22;5765:238;5722:281;;:::o;6009:129::-;6043:6;6070:20;;:::i;:::-;6060:30;;6099:33;6127:4;6119:6;6099:33;:::i;:::-;6009:129;;;:::o;6144:308::-;6206:4;6296:18;6288:6;6285:30;6282:56;;;6318:18;;:::i;:::-;6282:56;6356:29;6378:6;6356:29;:::i;:::-;6348:37;;6440:4;6434;6430:15;6422:23;;6144:308;;;:::o;6458:154::-;6542:6;6537:3;6532;6519:30;6604:1;6595:6;6590:3;6586:16;6579:27;6458:154;;;:::o;6618:412::-;6696:5;6721:66;6737:49;6779:6;6737:49;:::i;:::-;6721:66;:::i;:::-;6712:75;;6810:6;6803:5;6796:21;6848:4;6841:5;6837:16;6886:3;6877:6;6872:3;6868:16;6865:25;6862:112;;;6893:79;;:::i;:::-;6862:112;6983:41;7017:6;7012:3;7007;6983:41;:::i;:::-;6702:328;6618:412;;;;;:::o;7050:340::-;7106:5;7155:3;7148:4;7140:6;7136:17;7132:27;7122:122;;7163:79;;:::i;:::-;7122:122;7280:6;7267:20;7305:79;7380:3;7372:6;7365:4;7357:6;7353:17;7305:79;:::i;:::-;7296:88;;7112:278;7050:340;;;;:::o;7396:509::-;7465:6;7514:2;7502:9;7493:7;7489:23;7485:32;7482:119;;;7520:79;;:::i;:::-;7482:119;7668:1;7657:9;7653:17;7640:31;7698:18;7690:6;7687:30;7684:117;;;7720:79;;:::i;:::-;7684:117;7825:63;7880:7;7871:6;7860:9;7856:22;7825:63;:::i;:::-;7815:73;;7611:287;7396:509;;;;:::o;7911:116::-;7981:21;7996:5;7981:21;:::i;:::-;7974:5;7971:32;7961:60;;8017:1;8014;8007:12;7961:60;7911:116;:::o;8033:133::-;8076:5;8114:6;8101:20;8092:29;;8130:30;8154:5;8130:30;:::i;:::-;8033:133;;;;:::o;8172:323::-;8228:6;8277:2;8265:9;8256:7;8252:23;8248:32;8245:119;;;8283:79;;:::i;:::-;8245:119;8403:1;8428:50;8470:7;8461:6;8450:9;8446:22;8428:50;:::i;:::-;8418:60;;8374:114;8172:323;;;;:::o;8501:619::-;8578:6;8586;8594;8643:2;8631:9;8622:7;8618:23;8614:32;8611:119;;;8649:79;;:::i;:::-;8611:119;8769:1;8794:53;8839:7;8830:6;8819:9;8815:22;8794:53;:::i;:::-;8784:63;;8740:117;8896:2;8922:53;8967:7;8958:6;8947:9;8943:22;8922:53;:::i;:::-;8912:63;;8867:118;9024:2;9050:53;9095:7;9086:6;9075:9;9071:22;9050:53;:::i;:::-;9040:63;;8995:118;8501:619;;;;;:::o;9126:77::-;9163:7;9192:5;9181:16;;9126:77;;;:::o;9209:118::-;9296:24;9314:5;9296:24;:::i;:::-;9291:3;9284:37;9209:118;;:::o;9333:222::-;9426:4;9464:2;9453:9;9449:18;9441:26;;9477:71;9545:1;9534:9;9530:17;9521:6;9477:71;:::i;:::-;9333:222;;;;:::o;9561:329::-;9620:6;9669:2;9657:9;9648:7;9644:23;9640:32;9637:119;;;9675:79;;:::i;:::-;9637:119;9795:1;9820:53;9865:7;9856:6;9845:9;9841:22;9820:53;:::i;:::-;9810:63;;9766:117;9561:329;;;;:::o;9896:114::-;9963:6;9997:5;9991:12;9981:22;;9896:114;;;:::o;10016:184::-;10115:11;10149:6;10144:3;10137:19;10189:4;10184:3;10180:14;10165:29;;10016:184;;;;:::o;10206:132::-;10273:4;10296:3;10288:11;;10326:4;10321:3;10317:14;10309:22;;10206:132;;;:::o;10344:108::-;10421:24;10439:5;10421:24;:::i;:::-;10416:3;10409:37;10344:108;;:::o;10458:179::-;10527:10;10548:46;10590:3;10582:6;10548:46;:::i;:::-;10626:4;10621:3;10617:14;10603:28;;10458:179;;;;:::o;10643:113::-;10713:4;10745;10740:3;10736:14;10728:22;;10643:113;;;:::o;10792:732::-;10911:3;10940:54;10988:5;10940:54;:::i;:::-;11010:86;11089:6;11084:3;11010:86;:::i;:::-;11003:93;;11120:56;11170:5;11120:56;:::i;:::-;11199:7;11230:1;11215:284;11240:6;11237:1;11234:13;11215:284;;;11316:6;11310:13;11343:63;11402:3;11387:13;11343:63;:::i;:::-;11336:70;;11429:60;11482:6;11429:60;:::i;:::-;11419:70;;11275:224;11262:1;11259;11255:9;11250:14;;11215:284;;;11219:14;11515:3;11508:10;;10916:608;;;10792:732;;;;:::o;11530:373::-;11673:4;11711:2;11700:9;11696:18;11688:26;;11760:9;11754:4;11750:20;11746:1;11735:9;11731:17;11724:47;11788:108;11891:4;11882:6;11788:108;:::i;:::-;11780:116;;11530:373;;;;:::o;11909:122::-;11982:24;12000:5;11982:24;:::i;:::-;11975:5;11972:35;11962:63;;12021:1;12018;12011:12;11962:63;11909:122;:::o;12037:139::-;12083:5;12121:6;12108:20;12099:29;;12137:33;12164:5;12137:33;:::i;:::-;12037:139;;;;:::o;12182:329::-;12241:6;12290:2;12278:9;12269:7;12265:23;12261:32;12258:119;;;12296:79;;:::i;:::-;12258:119;12416:1;12441:53;12486:7;12477:6;12466:9;12462:22;12441:53;:::i;:::-;12431:63;;12387:117;12182:329;;;;:::o;12517:468::-;12582:6;12590;12639:2;12627:9;12618:7;12614:23;12610:32;12607:119;;;12645:79;;:::i;:::-;12607:119;12765:1;12790:53;12835:7;12826:6;12815:9;12811:22;12790:53;:::i;:::-;12780:63;;12736:117;12892:2;12918:50;12960:7;12951:6;12940:9;12936:22;12918:50;:::i;:::-;12908:60;;12863:115;12517:468;;;;;:::o;12991:307::-;13052:4;13142:18;13134:6;13131:30;13128:56;;;13164:18;;:::i;:::-;13128:56;13202:29;13224:6;13202:29;:::i;:::-;13194:37;;13286:4;13280;13276:15;13268:23;;12991:307;;;:::o;13304:410::-;13381:5;13406:65;13422:48;13463:6;13422:48;:::i;:::-;13406:65;:::i;:::-;13397:74;;13494:6;13487:5;13480:21;13532:4;13525:5;13521:16;13570:3;13561:6;13556:3;13552:16;13549:25;13546:112;;;13577:79;;:::i;:::-;13546:112;13667:41;13701:6;13696:3;13691;13667:41;:::i;:::-;13387:327;13304:410;;;;;:::o;13733:338::-;13788:5;13837:3;13830:4;13822:6;13818:17;13814:27;13804:122;;13845:79;;:::i;:::-;13804:122;13962:6;13949:20;13987:78;14061:3;14053:6;14046:4;14038:6;14034:17;13987:78;:::i;:::-;13978:87;;13794:277;13733:338;;;;:::o;14077:943::-;14172:6;14180;14188;14196;14245:3;14233:9;14224:7;14220:23;14216:33;14213:120;;;14252:79;;:::i;:::-;14213:120;14372:1;14397:53;14442:7;14433:6;14422:9;14418:22;14397:53;:::i;:::-;14387:63;;14343:117;14499:2;14525:53;14570:7;14561:6;14550:9;14546:22;14525:53;:::i;:::-;14515:63;;14470:118;14627:2;14653:53;14698:7;14689:6;14678:9;14674:22;14653:53;:::i;:::-;14643:63;;14598:118;14783:2;14772:9;14768:18;14755:32;14814:18;14806:6;14803:30;14800:117;;;14836:79;;:::i;:::-;14800:117;14941:62;14995:7;14986:6;14975:9;14971:22;14941:62;:::i;:::-;14931:72;;14726:287;14077:943;;;;;;;:::o;15026:117::-;15135:1;15132;15125:12;15149:117;15258:1;15255;15248:12;15289:568;15362:8;15372:6;15422:3;15415:4;15407:6;15403:17;15399:27;15389:122;;15430:79;;:::i;:::-;15389:122;15543:6;15530:20;15520:30;;15573:18;15565:6;15562:30;15559:117;;;15595:79;;:::i;:::-;15559:117;15709:4;15701:6;15697:17;15685:29;;15763:3;15755:4;15747:6;15743:17;15733:8;15729:32;15726:41;15723:128;;;15770:79;;:::i;:::-;15723:128;15289:568;;;;;:::o;15863:704::-;15958:6;15966;15974;16023:2;16011:9;16002:7;15998:23;15994:32;15991:119;;;16029:79;;:::i;:::-;15991:119;16149:1;16174:53;16219:7;16210:6;16199:9;16195:22;16174:53;:::i;:::-;16164:63;;16120:117;16304:2;16293:9;16289:18;16276:32;16335:18;16327:6;16324:30;16321:117;;;16357:79;;:::i;:::-;16321:117;16470:80;16542:7;16533:6;16522:9;16518:22;16470:80;:::i;:::-;16452:98;;;;16247:313;15863:704;;;;;:::o;16573:474::-;16641:6;16649;16698:2;16686:9;16677:7;16673:23;16669:32;16666:119;;;16704:79;;:::i;:::-;16666:119;16824:1;16849:53;16894:7;16885:6;16874:9;16870:22;16849:53;:::i;:::-;16839:63;;16795:117;16951:2;16977:53;17022:7;17013:6;17002:9;16998:22;16977:53;:::i;:::-;16967:63;;16922:118;16573:474;;;;;:::o;17053:::-;17121:6;17129;17178:2;17166:9;17157:7;17153:23;17149:32;17146:119;;;17184:79;;:::i;:::-;17146:119;17304:1;17329:53;17374:7;17365:6;17354:9;17350:22;17329:53;:::i;:::-;17319:63;;17275:117;17431:2;17457:53;17502:7;17493:6;17482:9;17478:22;17457:53;:::i;:::-;17447:63;;17402:118;17053:474;;;;;:::o;17533:180::-;17581:77;17578:1;17571:88;17678:4;17675:1;17668:15;17702:4;17699:1;17692:15;17719:320;17763:6;17800:1;17794:4;17790:12;17780:22;;17847:1;17841:4;17837:12;17868:18;17858:81;;17924:4;17916:6;17912:17;17902:27;;17858:81;17986:2;17978:6;17975:14;17955:18;17952:38;17949:84;;18005:18;;:::i;:::-;17949:84;17770:269;17719:320;;;:::o;18045:182::-;18185:34;18181:1;18173:6;18169:14;18162:58;18045:182;:::o;18233:366::-;18375:3;18396:67;18460:2;18455:3;18396:67;:::i;:::-;18389:74;;18472:93;18561:3;18472:93;:::i;:::-;18590:2;18585:3;18581:12;18574:19;;18233:366;;;:::o;18605:419::-;18771:4;18809:2;18798:9;18794:18;18786:26;;18858:9;18852:4;18848:20;18844:1;18833:9;18829:17;18822:47;18886:131;19012:4;18886:131;:::i;:::-;18878:139;;18605:419;;;:::o;19030:181::-;19170:33;19166:1;19158:6;19154:14;19147:57;19030:181;:::o;19217:366::-;19359:3;19380:67;19444:2;19439:3;19380:67;:::i;:::-;19373:74;;19456:93;19545:3;19456:93;:::i;:::-;19574:2;19569:3;19565:12;19558:19;;19217:366;;;:::o;19589:419::-;19755:4;19793:2;19782:9;19778:18;19770:26;;19842:9;19836:4;19832:20;19828:1;19817:9;19813:17;19806:47;19870:131;19996:4;19870:131;:::i;:::-;19862:139;;19589:419;;;:::o;20014:147::-;20115:11;20152:3;20137:18;;20014:147;;;;:::o;20167:114::-;;:::o;20287:398::-;20446:3;20467:83;20548:1;20543:3;20467:83;:::i;:::-;20460:90;;20559:93;20648:3;20559:93;:::i;:::-;20677:1;20672:3;20668:11;20661:18;;20287:398;;;:::o;20691:379::-;20875:3;20897:147;21040:3;20897:147;:::i;:::-;20890:154;;21061:3;21054:10;;20691:379;;;:::o;21076:180::-;21124:77;21121:1;21114:88;21221:4;21218:1;21211:15;21245:4;21242:1;21235:15;21262:180;21310:77;21307:1;21300:88;21407:4;21404:1;21397:15;21431:4;21428:1;21421:15;21448:233;21487:3;21510:24;21528:5;21510:24;:::i;:::-;21501:33;;21556:66;21549:5;21546:77;21543:103;;21626:18;;:::i;:::-;21543:103;21673:1;21666:5;21662:13;21655:20;;21448:233;;;:::o;21687:170::-;21827:22;21823:1;21815:6;21811:14;21804:46;21687:170;:::o;21863:366::-;22005:3;22026:67;22090:2;22085:3;22026:67;:::i;:::-;22019:74;;22102:93;22191:3;22102:93;:::i;:::-;22220:2;22215:3;22211:12;22204:19;;21863:366;;;:::o;22235:419::-;22401:4;22439:2;22428:9;22424:18;22416:26;;22488:9;22482:4;22478:20;22474:1;22463:9;22459:17;22452:47;22516:131;22642:4;22516:131;:::i;:::-;22508:139;;22235:419;;;:::o;22660:305::-;22700:3;22719:20;22737:1;22719:20;:::i;:::-;22714:25;;22753:20;22771:1;22753:20;:::i;:::-;22748:25;;22907:1;22839:66;22835:74;22832:1;22829:81;22826:107;;;22913:18;;:::i;:::-;22826:107;22957:1;22954;22950:9;22943:16;;22660:305;;;;:::o;22971:170::-;23111:22;23107:1;23099:6;23095:14;23088:46;22971:170;:::o;23147:366::-;23289:3;23310:67;23374:2;23369:3;23310:67;:::i;:::-;23303:74;;23386:93;23475:3;23386:93;:::i;:::-;23504:2;23499:3;23495:12;23488:19;;23147:366;;;:::o;23519:419::-;23685:4;23723:2;23712:9;23708:18;23700:26;;23772:9;23766:4;23762:20;23758:1;23747:9;23743:17;23736:47;23800:131;23926:4;23800:131;:::i;:::-;23792:139;;23519:419;;;:::o;23944:348::-;23984:7;24007:20;24025:1;24007:20;:::i;:::-;24002:25;;24041:20;24059:1;24041:20;:::i;:::-;24036:25;;24229:1;24161:66;24157:74;24154:1;24151:81;24146:1;24139:9;24132:17;24128:105;24125:131;;;24236:18;;:::i;:::-;24125:131;24284:1;24281;24277:9;24266:20;;23944:348;;;;:::o;24298:169::-;24438:21;24434:1;24426:6;24422:14;24415:45;24298:169;:::o;24473:366::-;24615:3;24636:67;24700:2;24695:3;24636:67;:::i;:::-;24629:74;;24712:93;24801:3;24712:93;:::i;:::-;24830:2;24825:3;24821:12;24814:19;;24473:366;;;:::o;24845:419::-;25011:4;25049:2;25038:9;25034:18;25026:26;;25098:9;25092:4;25088:20;25084:1;25073:9;25069:17;25062:47;25126:131;25252:4;25126:131;:::i;:::-;25118:139;;24845:419;;;:::o;25270:173::-;25410:25;25406:1;25398:6;25394:14;25387:49;25270:173;:::o;25449:366::-;25591:3;25612:67;25676:2;25671:3;25612:67;:::i;:::-;25605:74;;25688:93;25777:3;25688:93;:::i;:::-;25806:2;25801:3;25797:12;25790:19;;25449:366;;;:::o;25821:419::-;25987:4;26025:2;26014:9;26010:18;26002:26;;26074:9;26068:4;26064:20;26060:1;26049:9;26045:17;26038:47;26102:131;26228:4;26102:131;:::i;:::-;26094:139;;25821:419;;;:::o;26246:174::-;26386:26;26382:1;26374:6;26370:14;26363:50;26246:174;:::o;26426:366::-;26568:3;26589:67;26653:2;26648:3;26589:67;:::i;:::-;26582:74;;26665:93;26754:3;26665:93;:::i;:::-;26783:2;26778:3;26774:12;26767:19;;26426:366;;;:::o;26798:419::-;26964:4;27002:2;26991:9;26987:18;26979:26;;27051:9;27045:4;27041:20;27037:1;27026:9;27022:17;27015:47;27079:131;27205:4;27079:131;:::i;:::-;27071:139;;26798:419;;;:::o;27223:234::-;27363:34;27359:1;27351:6;27347:14;27340:58;27432:17;27427:2;27419:6;27415:15;27408:42;27223:234;:::o;27463:366::-;27605:3;27626:67;27690:2;27685:3;27626:67;:::i;:::-;27619:74;;27702:93;27791:3;27702:93;:::i;:::-;27820:2;27815:3;27811:12;27804:19;;27463:366;;;:::o;27835:419::-;28001:4;28039:2;28028:9;28024:18;28016:26;;28088:9;28082:4;28078:20;28074:1;28063:9;28059:17;28052:47;28116:131;28242:4;28116:131;:::i;:::-;28108:139;;27835:419;;;:::o;28260:148::-;28362:11;28399:3;28384:18;;28260:148;;;;:::o;28414:377::-;28520:3;28548:39;28581:5;28548:39;:::i;:::-;28603:89;28685:6;28680:3;28603:89;:::i;:::-;28596:96;;28701:52;28746:6;28741:3;28734:4;28727:5;28723:16;28701:52;:::i;:::-;28778:6;28773:3;28769:16;28762:23;;28524:267;28414:377;;;;:::o;28797:141::-;28846:4;28869:3;28861:11;;28892:3;28889:1;28882:14;28926:4;28923:1;28913:18;28905:26;;28797:141;;;:::o;28968:845::-;29071:3;29108:5;29102:12;29137:36;29163:9;29137:36;:::i;:::-;29189:89;29271:6;29266:3;29189:89;:::i;:::-;29182:96;;29309:1;29298:9;29294:17;29325:1;29320:137;;;;29471:1;29466:341;;;;29287:520;;29320:137;29404:4;29400:9;29389;29385:25;29380:3;29373:38;29440:6;29435:3;29431:16;29424:23;;29320:137;;29466:341;29533:38;29565:5;29533:38;:::i;:::-;29593:1;29607:154;29621:6;29618:1;29615:13;29607:154;;;29695:7;29689:14;29685:1;29680:3;29676:11;29669:35;29745:1;29736:7;29732:15;29721:26;;29643:4;29640:1;29636:12;29631:17;;29607:154;;;29790:6;29785:3;29781:16;29774:23;;29473:334;;29287:520;;29075:738;;28968:845;;;;:::o;29819:589::-;30044:3;30066:95;30157:3;30148:6;30066:95;:::i;:::-;30059:102;;30178:95;30269:3;30260:6;30178:95;:::i;:::-;30171:102;;30290:92;30378:3;30369:6;30290:92;:::i;:::-;30283:99;;30399:3;30392:10;;29819:589;;;;;;:::o;30414:221::-;30554:34;30550:1;30542:6;30538:14;30531:58;30623:4;30618:2;30610:6;30606:15;30599:29;30414:221;:::o;30641:366::-;30783:3;30804:67;30868:2;30863:3;30804:67;:::i;:::-;30797:74;;30880:93;30969:3;30880:93;:::i;:::-;30998:2;30993:3;30989:12;30982:19;;30641:366;;;:::o;31013:419::-;31179:4;31217:2;31206:9;31202:18;31194:26;;31266:9;31260:4;31256:20;31252:1;31241:9;31237:17;31230:47;31294:131;31420:4;31294:131;:::i;:::-;31286:139;;31013:419;;;:::o;31438:94::-;31471:8;31519:5;31515:2;31511:14;31490:35;;31438:94;;;:::o;31538:::-;31577:7;31606:20;31620:5;31606:20;:::i;:::-;31595:31;;31538:94;;;:::o;31638:100::-;31677:7;31706:26;31726:5;31706:26;:::i;:::-;31695:37;;31638:100;;;:::o;31744:157::-;31849:45;31869:24;31887:5;31869:24;:::i;:::-;31849:45;:::i;:::-;31844:3;31837:58;31744:157;;:::o;31907:256::-;32019:3;32034:75;32105:3;32096:6;32034:75;:::i;:::-;32134:2;32129:3;32125:12;32118:19;;32154:3;32147:10;;31907:256;;;;:::o;32169:175::-;32309:27;32305:1;32297:6;32293:14;32286:51;32169:175;:::o;32350:366::-;32492:3;32513:67;32577:2;32572:3;32513:67;:::i;:::-;32506:74;;32589:93;32678:3;32589:93;:::i;:::-;32707:2;32702:3;32698:12;32691:19;;32350:366;;;:::o;32722:419::-;32888:4;32926:2;32915:9;32911:18;32903:26;;32975:9;32969:4;32965:20;32961:1;32950:9;32946:17;32939:47;33003:131;33129:4;33003:131;:::i;:::-;32995:139;;32722:419;;;:::o;33147:225::-;33287:34;33283:1;33275:6;33271:14;33264:58;33356:8;33351:2;33343:6;33339:15;33332:33;33147:225;:::o;33378:366::-;33520:3;33541:67;33605:2;33600:3;33541:67;:::i;:::-;33534:74;;33617:93;33706:3;33617:93;:::i;:::-;33735:2;33730:3;33726:12;33719:19;;33378:366;;;:::o;33750:419::-;33916:4;33954:2;33943:9;33939:18;33931:26;;34003:9;33997:4;33993:20;33989:1;33978:9;33974:17;33967:47;34031:131;34157:4;34031:131;:::i;:::-;34023:139;;33750:419;;;:::o;34175:98::-;34226:6;34260:5;34254:12;34244:22;;34175:98;;;:::o;34279:168::-;34362:11;34396:6;34391:3;34384:19;34436:4;34431:3;34427:14;34412:29;;34279:168;;;;:::o;34453:360::-;34539:3;34567:38;34599:5;34567:38;:::i;:::-;34621:70;34684:6;34679:3;34621:70;:::i;:::-;34614:77;;34700:52;34745:6;34740:3;34733:4;34726:5;34722:16;34700:52;:::i;:::-;34777:29;34799:6;34777:29;:::i;:::-;34772:3;34768:39;34761:46;;34543:270;34453:360;;;;:::o;34819:640::-;35014:4;35052:3;35041:9;35037:19;35029:27;;35066:71;35134:1;35123:9;35119:17;35110:6;35066:71;:::i;:::-;35147:72;35215:2;35204:9;35200:18;35191:6;35147:72;:::i;:::-;35229;35297:2;35286:9;35282:18;35273:6;35229:72;:::i;:::-;35348:9;35342:4;35338:20;35333:2;35322:9;35318:18;35311:48;35376:76;35447:4;35438:6;35376:76;:::i;:::-;35368:84;;34819:640;;;;;;;:::o;35465:141::-;35521:5;35552:6;35546:13;35537:22;;35568:32;35594:5;35568:32;:::i;:::-;35465:141;;;;:::o;35612:349::-;35681:6;35730:2;35718:9;35709:7;35705:23;35701:32;35698:119;;;35736:79;;:::i;:::-;35698:119;35856:1;35881:63;35936:7;35927:6;35916:9;35912:22;35881:63;:::i;:::-;35871:73;;35827:127;35612:349;;;;:::o;35967:180::-;36015:77;36012:1;36005:88;36112:4;36109:1;36102:15;36136:4;36133:1;36126:15;36153:185;36193:1;36210:20;36228:1;36210:20;:::i;:::-;36205:25;;36244:20;36262:1;36244:20;:::i;:::-;36239:25;;36283:1;36273:35;;36288:18;;:::i;:::-;36273:35;36330:1;36327;36323:9;36318:14;;36153:185;;;;:::o;36344:191::-;36384:4;36404:20;36422:1;36404:20;:::i;:::-;36399:25;;36438:20;36456:1;36438:20;:::i;:::-;36433:25;;36477:1;36474;36471:8;36468:34;;;36482:18;;:::i;:::-;36468:34;36527:1;36524;36520:9;36512:17;;36344:191;;;;:::o;36541:176::-;36573:1;36590:20;36608:1;36590:20;:::i;:::-;36585:25;;36624:20;36642:1;36624:20;:::i;:::-;36619:25;;36663:1;36653:35;;36668:18;;:::i;:::-;36653:35;36709:1;36706;36702:9;36697:14;;36541:176;;;;:::o

Swarm Source

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