ETH Price: $3,485.23 (+2.27%)
Gas: 9 Gwei

Token

DeusX (DX)
 

Overview

Max Total Supply

2,296 DX

Holders

1,064

Market

Volume (24H)

N/A

Min Price (24H)

N/A

Max Price (24H)

N/A
Balance
2 DX
0x89d1ca67e7e9bde74fffaaee6343faa13c759dc9
Loading...
Loading
Loading...
Loading
Loading...
Loading

OVERVIEW

##The Old Gods have abandoned us, leaving us with the Cyber Gods. DeusX is a collection of 10,101 Cybernetically Enhanced Beings (CEBs) featuring over 120 hand-drawn traits. Become a part of the innovative, immersive story experience and lock in 1 of 3 Factions to gain access...

# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
DeusX

Compiler Version
v0.8.4+commit.c7e474f2

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

//                                                                            .*@@#-             .*@@#:
//                                                                              .*@@%-         .*@@#:  
// .::::::::::::..      ::::::::::::::::   :               .     .:::::::::::::.  .*@@%-     .*@@#:    
// =@@@@@@@@@@@@@@@*.   +@@@@@@@@@@@@@@@:  @@*           +@@.  #@@@@@@@@@@@@@@@:    .*@@%- .*@@#:      
//  :::..........-#@@-   :::::::::::::::   @@#           *@@. +@@=:::::::::::..       .*@@%@@#:        
//  @@#            @@#  @@@@@@@@@@@@@@@@:  @@#           *@@. .%@@@@@@@@@@@@@%+        .#@@@@-         
//  @@#           +@@+  @@%-------------   @@%           *@@.   .-----------+@@=     .*@@#-*@@%-       
//  @@@%%%%%%%%%@@@@=   @@@%%%%%%%%%%%%%:  =@@@%%%%%%%%%@@@*  .%%%%%%%%%%%%%@@@:   .*@@#:   .*@@%-     
//  =============-:     =+++++++++++++++.   .-===========-.   :==============-   .*@@#:       .*@@%-   
//                                                                             .*@@#:           .*@@%-
//
// Choose your fate. Become a legend.
//



// File @openzeppelin/contracts/utils/cryptography/[email protected]

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.0;

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

        for (uint256 i = 0; i < proof.length; i++) {
            bytes32 proofElement = proof[i];

            if (computedHash <= proofElement) {
                // Hash(current computed hash + current element of the proof)
                computedHash = keccak256(abi.encodePacked(computedHash, proofElement));
            } else {
                // Hash(current element of the proof + current computed hash)
                computedHash = keccak256(abi.encodePacked(proofElement, computedHash));
            }
        }

        // Check if the computed hash (root) is equal to the provided root
        return computedHash == root;
    }
}


// File @openzeppelin/contracts/utils/introspection/[email protected]

/**
 * @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/token/ERC721/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/token/ERC721/[email protected]

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/utils/[email protected]

/**
 * @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/utils/[email protected]

/**
 * @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/introspection/[email protected]

/**
 * @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/[email protected]

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

    // Token name
    string private _name;

    // Token symbol
    string private _symbol;

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _approve(to, tokenId);
    }

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

        return _tokenApprovals[tokenId];
    }

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

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

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

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

        _transfer(from, to, tokenId);
    }

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

        _beforeTokenTransfer(from, to, tokenId);

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

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

        emit Transfer(from, to, tokenId);
    }

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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


// File @openzeppelin/contracts/token/ERC721/extensions/[email protected]

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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


// File @openzeppelin/contracts/access/[email protected]

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

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

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

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

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

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

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

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


// File contracts/DeusX.sol

contract DeusX is ERC721Enumerable, Ownable {
  using Strings for uint256;

  uint256 public constant DEUSX_GIFT = 101;
  uint256 public constant DEUSX_PUBLIC = 10000; 
  uint256 public constant DEUSX_MAX = DEUSX_GIFT + DEUSX_PUBLIC; 
  uint256 public constant PURCHASE_LIMIT = 10; // per tx, contracts can still recursively call 
  uint256 public constant PRICE = 0.08 ether;

  string[] public FACTION_NAMES = [
    'None',
    'Valks',
    'Roks',
    'Monsters'
  ];
  
  address[] TEAM_ADDRESSES = [
    0x9cc35B5bB5c4fC544eeC96a33baa7BB5c5966095,
    0xa2E9986C8936E9Ff788B167e85Ef92ae309ecc4C,
    0x64ac893a59096Fc13dBD39c35Ce894833db62b7a,
    0x0e6596a739FCEb57fCA595b78EF0F6e586e8938c,
    0xa55033bFB357eFDd804f2391E30a52291C77dD51,
    0x5B1212FE9b20D32688F5f02973087f828b0a4824,
    0x31C5327974f02406b698DB4a51eA860Aa411E8A1,
    0x78eEb89ae305cCc774516546b43a11fc74794222,
    0xb34C812501bCb190Cf21ed7623F89924549970fb,
    0xa096F2F973b91F5E148301f9C4f5BC56165E0865
  ];

  uint256[] TEAM_PCTS = [
    0.25e18,
    0.25e18,
    0.20e18,
    0.08e18,	
    0.06e18,	
    0.0501e18,
    0.04e18,
    0.01e18,
    0.01e18,
    0.0499e18
  ];

  uint256 constant UNIT = 1e18;

  bool public isActive = true;

  string public provenanceHash;

  uint256 public allowListMaxMint = 2;

  uint256 public totalGiftSupply;
  uint256 public totalPublicSupply;

  /**
  * 0 - presale batch 1
  * 1 - presale batch 2
  * 2 - waitlist 
  * 3 - public sale
  */

  bytes32[] public roots;
  uint256[] public startTimes;

  mapping(uint256 => uint256) public factionOf;
  mapping(address => uint256) public allowListClaimed;
  mapping(uint256 => uint256) private factionNumbers;

  string public contractURI = '';
  string public tokenBaseURI = '';
  string public tokenRevealedBaseURI = '';
  constructor(string memory _name, string memory _symbol, string memory _contractURI, string memory _tokenBaseURI, bytes32[] memory _roots, uint256[] memory _startTimes) ERC721(_name, _symbol) {
    contractURI = _contractURI;
    tokenBaseURI = _tokenBaseURI;
    roots = _roots;
    startTimes = _startTimes;
  }

  function purchase(uint256 numberOfTokens, uint256[] calldata factions) external payable {
    require(isActive, 'Inactive');
    require(block.timestamp > startTimes[2], 'Not started');
    require(totalPublicSupply < DEUSX_PUBLIC, 'Exceeds supply');
    require(numberOfTokens <= PURCHASE_LIMIT, 'Exceeds limit');
    require(numberOfTokens == factions.length, 'Invalid factions');

    /**
    * The last person to purchase might overpay, but this prevents them
    * from getting sniped. 
    * If this happens, we'll refund the ETH for the unavailable tokens.
    */

    require(numberOfTokens * PRICE <= msg.value, 'Insufficient ETH');

    for (uint256 i = 0; i < numberOfTokens; i++) {
      if (totalPublicSupply < DEUSX_PUBLIC) { 

        /**
        * Public token numbering starts after DEUSX_GIFT.
        * Token numbers should start at 1
        */

        totalPublicSupply += 1;
        uint256 tokenId = DEUSX_GIFT + totalPublicSupply;
        _safeMint(msg.sender, tokenId);

        uint256 _faction = factions[i];
        require(_faction < FACTION_NAMES.length, 'Invalid faction'); 
        factionOf[tokenId] = _faction;
        factionNumbers[_faction] += 1;
        emit SetFaction(tokenId, _faction);
      }
    }
  }

  function purchaseAllowList(uint256 numberOfTokens, uint256[] calldata factions, bytes32[] memory merkleProof) external payable {
    require(isActive, 'Inactive');
    require(block.timestamp < startTimes[3], 'Public sale started');

    bytes32 root;
    if (block.timestamp > startTimes[2]) {
      root = roots[2];
    } else if (block.timestamp > startTimes[1]) {
      root = roots[1];
    }  else if (block.timestamp > startTimes[0]) {
      root = roots[0];
    } else {
      revert('Not started');
    }

    require(numberOfTokens == factions.length, 'Invalid params');
    require(totalPublicSupply + numberOfTokens <= DEUSX_PUBLIC, 'Exceeds supply limit');
    require(allowListClaimed[msg.sender] + numberOfTokens <= allowListMaxMint, 'Exceeds max allowed');
    require(numberOfTokens * PRICE <= msg.value, 'Insufficient ETH'); 

    bytes32 leaf = keccak256(abi.encodePacked(msg.sender));

    require(MerkleProof.verify(merkleProof, root, leaf), 'Invalid proof');

    allowListClaimed[msg.sender] += numberOfTokens;

    for (uint256 i = 0; i < numberOfTokens; i++) {

      /*
      * Public token numbering starts after DEUSX_GIFT.
      * Tokens IDs start at 1.
      */

      totalPublicSupply += 1;
      uint256 tokenId = DEUSX_GIFT + totalPublicSupply;

      _safeMint(msg.sender, tokenId);

      uint256 _faction = factions[i];
      require(_faction < FACTION_NAMES.length, 'Invalid faction'); 
      factionOf[tokenId] = _faction;
      factionNumbers[_faction] += 1;
      emit SetFaction(tokenId, _faction);
    }
  }

  function setFactions(uint256[] calldata _tokenIds, uint256[] calldata _factions) external {
      require(_tokenIds.length == _factions.length, 'Invalid params');
      
      for(uint256 i = 0; i < _tokenIds.length; i++) {
        require(msg.sender == ownerOf(_tokenIds[i]), 'Invalid caller');
        require(factionOf[_tokenIds[i]] == 0, 'Faction already set');
        require(_factions[i] < FACTION_NAMES.length, 'Invalid faction'); 
        
        factionOf[_tokenIds[i]] = _factions[i];
        factionNumbers[_factions[i]] += 1;
        emit SetFaction(_tokenIds[i], _factions[i]);
      }
  }

  function tokenURI(uint256 tokenId) public view override(ERC721) returns (string memory) {
    require(_exists(tokenId), 'Token does not exist');

    string memory revealedBaseURI = tokenRevealedBaseURI;
    
    if (bytes(revealedBaseURI).length > 0) {
      uint256 faction = factionOf[tokenId];
      if(faction > 0) {
        return string(abi.encodePacked(revealedBaseURI, tokenId.toString(), '-', FACTION_NAMES[faction]));
      } else {
        return string(abi.encodePacked(revealedBaseURI, tokenId.toString()));
      }
    } else {
      return tokenBaseURI;
    }
  }

  function totalInFaction(uint256 _faction) external view returns (uint256) {
    if(_faction == 0) {
      return DEUSX_MAX - factionNumbers[1] - factionNumbers[2] - factionNumbers[3];
    } else {
      return factionNumbers[_faction];
    }
  }

  function onAccesslist(bytes32[] memory _proof, uint256 _rootIndex, address _address) external view returns (bool) {
    return MerkleProof.verify(_proof, roots[_rootIndex], keccak256(abi.encodePacked(_address)));
  }

  function gift(address[] calldata to) external onlyOwner {
    require(totalGiftSupply + to.length <= DEUSX_GIFT, 'Gifts finished');

    for(uint256 i = 0; i < to.length; i++) {

       // Tokens IDs start at 1.
      totalGiftSupply += 1;
      uint256 tokenId = totalGiftSupply;
      
      _safeMint(to[i], tokenId);
    }
  }

  function withdraw() external {
    uint256 balance = address(this).balance;
    for(uint256 i = 0; i < TEAM_ADDRESSES.length; i++) {
      payable(TEAM_ADDRESSES[i]).transfer(balance*TEAM_PCTS[i]/UNIT);
    }
  }

  function emergencyWithdrawal() external onlyOwner {
    require(block.timestamp > startTimes[3] + 10*24*60*60, 'Cannot withdraw yet'); // if there's a problem with the payout, allow an emergency release after 10 days 
    uint256 balance = address(this).balance;
    (bool success, ) = payable(msg.sender).call{value: balance}('');
    require(success, 'Transfer failed.');
  }

  function setStartTimes(uint256[] calldata _startTimes) external onlyOwner {
      require(block.timestamp < startTimes[0], 'Sale started'); // prevent owner from rugging emergency withdrawal
      startTimes = _startTimes;
  }

  function setAllowListMaxMint(uint256 maxMint) external onlyOwner {
    allowListMaxMint = maxMint;
  }

  function setContractURI(string calldata URI) external onlyOwner {
    contractURI = URI;
  }

  function setBaseURI(string calldata URI) external onlyOwner {
    tokenBaseURI = URI;
  }

  function setRevealedBaseURI(string calldata revealedBaseURI) external onlyOwner {
    tokenRevealedBaseURI = revealedBaseURI;
  }

  function setRoots(bytes32[] calldata _roots) external onlyOwner {
      roots = _roots;
  }

  function setIsActive(bool _isActive) external onlyOwner {
      isActive = _isActive;
  }

  function setProvenanceHash(string memory _provenanceHash) external onlyOwner {
      provenanceHash = _provenanceHash;
      emit SetProvenanceHash(_provenanceHash);
  }

  event SetProvenanceHash(string provenanceHash);
  event SetFaction(uint256 indexed tokenId, uint256 faction); 
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"string","name":"_name","type":"string"},{"internalType":"string","name":"_symbol","type":"string"},{"internalType":"string","name":"_contractURI","type":"string"},{"internalType":"string","name":"_tokenBaseURI","type":"string"},{"internalType":"bytes32[]","name":"_roots","type":"bytes32[]"},{"internalType":"uint256[]","name":"_startTimes","type":"uint256[]"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"approved","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"operator","type":"address"},{"indexed":false,"internalType":"bool","name":"approved","type":"bool"}],"name":"ApprovalForAll","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"faction","type":"uint256"}],"name":"SetFaction","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"string","name":"provenanceHash","type":"string"}],"name":"SetProvenanceHash","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":true,"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"DEUSX_GIFT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEUSX_MAX","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"DEUSX_PUBLIC","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"FACTION_NAMES","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRICE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PURCHASE_LIMIT","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"allowListClaimed","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"allowListMaxMint","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"approve","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"contractURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"emergencyWithdrawal","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"factionOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"getApproved","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address[]","name":"to","type":"address[]"}],"name":"gift","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"operator","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_proof","type":"bytes32[]"},{"internalType":"uint256","name":"_rootIndex","type":"uint256"},{"internalType":"address","name":"_address","type":"address"}],"name":"onAccesslist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"provenanceHash","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256[]","name":"factions","type":"uint256[]"}],"name":"purchase","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"numberOfTokens","type":"uint256"},{"internalType":"uint256[]","name":"factions","type":"uint256[]"},{"internalType":"bytes32[]","name":"merkleProof","type":"bytes32[]"}],"name":"purchaseAllowList","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"roots","outputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"safeTransferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxMint","type":"uint256"}],"name":"setAllowListMaxMint","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"operator","type":"address"},{"internalType":"bool","name":"approved","type":"bool"}],"name":"setApprovalForAll","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"URI","type":"string"}],"name":"setContractURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_tokenIds","type":"uint256[]"},{"internalType":"uint256[]","name":"_factions","type":"uint256[]"}],"name":"setFactions","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isActive","type":"bool"}],"name":"setIsActive","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"_provenanceHash","type":"string"}],"name":"setProvenanceHash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"string","name":"revealedBaseURI","type":"string"}],"name":"setRevealedBaseURI","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes32[]","name":"_roots","type":"bytes32[]"}],"name":"setRoots","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256[]","name":"_startTimes","type":"uint256[]"}],"name":"setStartTimes","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"startTimes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes4","name":"interfaceId","type":"bytes4"}],"name":"supportsInterface","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenBaseURI","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"uint256","name":"index","type":"uint256"}],"name":"tokenOfOwnerByIndex","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenRevealedBaseURI","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":"totalGiftSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_faction","type":"uint256"}],"name":"totalInFaction","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPublicSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"tokenId","type":"uint256"}],"name":"transferFrom","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]

6004610100818152634e6f6e6560e01b61012052608090815260056101409081526456616c6b7360d81b6101605260a05261018082815263526f6b7360e01b6101a05260c05261020060405260086101c0908152674d6f6e737465727360c01b6101e05260e0526200007591600b9190620003d7565b506040805161014081018252739cc35b5bb5c4fc544eec96a33baa7bb5c5966095815273a2e9986c8936e9ff788b167e85ef92ae309ecc4c60208201527364ac893a59096fc13dbd39c35ce894833db62b7a91810191909152730e6596a739fceb57fca595b78ef0f6e586e8938c606082015273a55033bfb357efdd804f2391e30a52291c77dd516080820152735b1212fe9b20d32688f5f02973087f828b0a482460a08201527331c5327974f02406b698db4a51ea860aa411e8a160c08201527378eeb89ae305ccc774516546b43a11fc7479422260e082015273b34c812501bcb190cf21ed7623f89924549970fb61010082015273a096f2f973b91f5e148301f9c4f5bc56165e08656101208201526200019690600c90600a6200043b565b5060408051610140810182526703782dace9d9000080825260208201526702c68af0bb1400009181019190915267011c37937e080000606082015266d529ae9e860000608082015266b1fdaf3f3f400060a0820152668e1bc9bf04000060c0820152662386f26fc1000060e0820181905261010082015266b147c91e4ac0006101208201526200022b90600d90600a620004a1565b50600e805460ff1916600117905560026010556040805160208101918290526000908190526200025e91601891620004ea565b506040805160208101918290526000908190526200027f91601991620004ea565b50604080516020810191829052600090819052620002a091601a91620004ea565b50348015620002ae57600080fd5b506040516200433d3803806200433d833981016040819052620002d1916200073a565b855186908690620002ea906000906020850190620004ea565b50805162000300906001906020840190620004ea565b5050506200031d620003176200038160201b60201c565b62000385565b835162000332906018906020870190620004ea565b50825162000348906019906020860190620004ea565b5081516200035e90601390602085019062000567565b5080516200037490601490602084019062000567565b50505050505050620008c0565b3390565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b82805482825590600052602060002090810192821562000429579160200282015b8281111562000429578251805162000418918491602090910190620004ea565b5091602001919060010190620003f8565b5062000437929150620005a4565b5090565b82805482825590600052602060002090810192821562000493579160200282015b828111156200049357825182546001600160a01b0319166001600160a01b039091161782556020909201916001909101906200045c565b5062000437929150620005c5565b82805482825590600052602060002090810192821562000493579160200282015b828111156200049357825182906001600160401b0316905591602001919060010190620004c2565b828054620004f8906200086d565b90600052602060002090601f0160209004810192826200051c576000855562000493565b82601f106200053757805160ff191683800117855562000493565b8280016001018555821562000493579182015b82811115620004935782518255916020019190600101906200054a565b828054828255906000526020600020908101928215620004935791602002820182811115620004935782518255916020019190600101906200054a565b8082111562000437576000620005bb8282620005dc565b50600101620005a4565b5b80821115620004375760008155600101620005c6565b508054620005ea906200086d565b6000825580601f10620005fb575050565b601f0160209004906000526020600020908101906200061b9190620005c5565b50565b600082601f8301126200062f578081fd5b815160206001600160401b038211156200064d576200064d620008aa565b8160051b6200065e8282016200083a565b83815282810190868401838801850189101562000679578687fd5b8693505b858410156200069d5780518352600193909301929184019184016200067d565b50979650505050505050565b600082601f830112620006ba578081fd5b81516001600160401b03811115620006d657620006d6620008aa565b6020620006ec601f8301601f191682016200083a565b828152858284870101111562000700578384fd5b835b838110156200071f57858101830151828201840152820162000702565b838111156200073057848385840101525b5095945050505050565b60008060008060008060c0878903121562000753578182fd5b86516001600160401b03808211156200076a578384fd5b620007788a838b01620006a9565b975060208901519150808211156200078e578384fd5b6200079c8a838b01620006a9565b96506040890151915080821115620007b2578384fd5b620007c08a838b01620006a9565b95506060890151915080821115620007d6578384fd5b620007e48a838b01620006a9565b94506080890151915080821115620007fa578384fd5b620008088a838b016200061e565b935060a08901519150808211156200081e578283fd5b506200082d89828a016200061e565b9150509295509295509295565b604051601f8201601f191681016001600160401b0381118282101715620008655762000865620008aa565b604052919050565b600181811c908216806200088257607f821691505b60208210811415620008a457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052604160045260246000fd5b613a6d80620008d06000396000f3fe6080604052600436106103195760003560e01c806370a08231116101ab578063a22cb465116100f7578063d15c84f111610095578063e6a5931e1161006f578063e6a5931e146108d6578063e8a3d485146108ec578063e985e9c514610901578063f2fde38b1461094a57600080fd5b8063d15c84f114610898578063d6f407c7146108ab578063d75e6110146108c157600080fd5b8063c6ab67a3116100d1578063c6ab67a31461082e578063c82b692c14610843578063c87b56dd14610858578063cc969b581461087857600080fd5b8063a22cb465146107ce578063b88d4fde146107ee578063c2b40ae41461080e57600080fd5b8063808c5f6d116101645780638da5cb5b1161013e5780638da5cb5b1461075b578063938e3d7b1461077957806395d89b4114610799578063996df9a6146107ae57600080fd5b8063808c5f6d146106fd578063884b3c82146107125780638d859f3e1461073f57600080fd5b806370a082311461065c578063715018a61461067c578063723fc5d31461069157806377bbebe6146106a75780637a6685f1146106c75780637f44ab2f146106e757600080fd5b806335c3003a1161026a57806355f804b3116102235780635b5da8a4116101fd5780635b5da8a4146105dc5780635d87f355146105fc5780636352211e1461061c5780636e83843a1461063c57600080fd5b806355f804b314610592578063598dc3b1146105b25780635b0a3843146105c757600080fd5b806335c3003a146104db5780633ccfd60b146104fb57806342842e0e146105105780634e99b800146105305780634f6ccce714610545578063540d11be1461056557600080fd5b8063163e1e61116102d757806322f3e2d4116102b157806322f3e2d41461046157806323b872dd1461047b5780632750fc781461049b5780632f745c59146104bb57600080fd5b8063163e1e611461040257806318160ddd146104225780631be5cd5c1461044157600080fd5b80620dd65d1461031e57806301ffc9a71461033357806306fdde0314610368578063081812fc1461038a578063095ea7b3146103c257806310969523146103e2575b600080fd5b61033161032c366004613594565b61096a565b005b34801561033f57600080fd5b5061035361034e366004613493565b610c4f565b60405190151581526020015b60405180910390f35b34801561037457600080fd5b5061037d610c7a565b60405161035f91906137a9565b34801561039657600080fd5b506103aa6103a536600461357c565b610d0c565b6040516001600160a01b03909116815260200161035f565b3480156103ce57600080fd5b506103316103dd366004613355565b610da1565b3480156103ee57600080fd5b506103316103fd366004613537565b610eb7565b34801561040e57600080fd5b5061033161041d36600461337e565b610f2f565b34801561042e57600080fd5b506008545b60405190815260200161035f565b34801561044d57600080fd5b5061037d61045c36600461357c565b611020565b34801561046d57600080fd5b50600e546103539060ff1681565b34801561048757600080fd5b50610331610496366004613279565b6110cc565b3480156104a757600080fd5b506103316104b6366004613479565b6110fd565b3480156104c757600080fd5b506104336104d6366004613355565b61113a565b3480156104e757600080fd5b506103536104f63660046133bd565b6111d0565b34801561050757600080fd5b5061033161124e565b34801561051c57600080fd5b5061033161052b366004613279565b611324565b34801561053c57600080fd5b5061037d61133f565b34801561055157600080fd5b5061043361056036600461357c565b61134c565b34801561057157600080fd5b5061043361058036600461357c565b60156020526000908152604090205481565b34801561059e57600080fd5b506103316105ad3660046134cb565b6113ed565b3480156105be57600080fd5b50610433611423565b3480156105d357600080fd5b50610331611433565b3480156105e857600080fd5b506103316105f736600461337e565b611569565b34801561060857600080fd5b5061033161061736600461337e565b61159f565b34801561062857600080fd5b506103aa61063736600461357c565b61163f565b34801561064857600080fd5b506103316106573660046134cb565b6116b6565b34801561066857600080fd5b50610433610677366004613226565b6116ec565b34801561068857600080fd5b50610331611773565b34801561069d57600080fd5b5061043361271081565b3480156106b357600080fd5b506104336106c236600461357c565b6117a9565b3480156106d357600080fd5b506103316106e236600461357c565b6117ca565b3480156106f357600080fd5b5061043360105481565b34801561070957600080fd5b50610433606581565b34801561071e57600080fd5b5061043361072d366004613226565b60166020526000908152604090205481565b34801561074b57600080fd5b5061043367011c37937e08000081565b34801561076757600080fd5b50600a546001600160a01b03166103aa565b34801561078557600080fd5b506103316107943660046134cb565b6117f9565b3480156107a557600080fd5b5061037d61182f565b3480156107ba57600080fd5b506103316107c9366004613411565b61183e565b3480156107da57600080fd5b506103316107e936600461332c565b611b22565b3480156107fa57600080fd5b506103316108093660046132b4565b611be7565b34801561081a57600080fd5b5061043361082936600461357c565b611c19565b34801561083a57600080fd5b5061037d611c29565b34801561084f57600080fd5b5061037d611c36565b34801561086457600080fd5b5061037d61087336600461357c565b611c43565b34801561088457600080fd5b5061043361089336600461357c565b611e62565b6103316108a63660046135dd565b611f1c565b3480156108b757600080fd5b5061043360115481565b3480156108cd57600080fd5b50610433600a81565b3480156108e257600080fd5b5061043360125481565b3480156108f857600080fd5b5061037d61241d565b34801561090d57600080fd5b5061035361091c366004613247565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561095657600080fd5b50610331610965366004613226565b61242a565b600e5460ff166109ac5760405162461bcd60e51b8152602060048201526008602482015267496e61637469766560c01b60448201526064015b60405180910390fd5b60146002815481106109ce57634e487b7160e01b600052603260045260246000fd5b90600052602060002001544211610a155760405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b60448201526064016109a3565b61271060125410610a595760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b60448201526064016109a3565b600a831115610a9a5760405162461bcd60e51b815260206004820152600d60248201526c115e18d959591cc81b1a5b5a5d609a1b60448201526064016109a3565b828114610adc5760405162461bcd60e51b815260206004820152601060248201526f496e76616c69642066616374696f6e7360801b60448201526064016109a3565b34610aef67011c37937e08000085613919565b1115610b305760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016109a3565b60005b83811015610c49576127106012541015610c3757600160126000828254610b5a91906138ed565b9091555050601254600090610b709060656138ed565b9050610b7c33826124c5565b6000848484818110610b9e57634e487b7160e01b600052603260045260246000fd5b905060200201359050600b805490508110610bcb5760405162461bcd60e51b81526004016109a39061380e565b600082815260156020908152604080832084905583835260179091528120805460019290610bfa9084906138ed565b909155505060405181815282907fb84e382455deff81bdfd5a71977d9b39c015561e73468964c83b38377363d8269060200160405180910390a250505b80610c41816139b0565b915050610b33565b50505050565b60006001600160e01b0319821663780e9d6360e01b1480610c745750610c74826124df565b92915050565b606060008054610c899061397b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb59061397b565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a3565b506000908152600460205260409020546001600160a01b031690565b6000610dac8261163f565b9050806001600160a01b0316836001600160a01b03161415610e1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a3565b336001600160a01b0382161480610e365750610e36813361091c565b610ea85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a3565b610eb2838361252f565b505050565b600a546001600160a01b03163314610ee15760405162461bcd60e51b81526004016109a390613837565b8051610ef490600f906020840190612f96565b507f6760362308ca665d8ad5234d7f09a8ac815ee45be8350cad464cb1e4eadd34ee81604051610f2491906137a9565b60405180910390a150565b600a546001600160a01b03163314610f595760405162461bcd60e51b81526004016109a390613837565b601154606590610f6a9083906138ed565b1115610fa95760405162461bcd60e51b815260206004820152600e60248201526d11da599d1cc8199a5b9a5cda195960921b60448201526064016109a3565b60005b81811015610eb257600160116000828254610fc791906138ed565b909155505060115461100d848484818110610ff257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110079190613226565b826124c5565b5080611018816139b0565b915050610fac565b600b818154811061103057600080fd5b90600052602060002001600091509050805461104b9061397b565b80601f01602080910402602001604051908101604052809291908181526020018280546110779061397b565b80156110c45780601f10611099576101008083540402835291602001916110c4565b820191906000526020600020905b8154815290600101906020018083116110a757829003601f168201915b505050505081565b6110d6338261259d565b6110f25760405162461bcd60e51b81526004016109a39061386c565b610eb2838383612690565b600a546001600160a01b031633146111275760405162461bcd60e51b81526004016109a390613837565b600e805460ff1916911515919091179055565b6000611145836116ec565b82106111a75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061124684601385815481106111f757634e487b7160e01b600052603260045260246000fd5b90600052602060002001548460405160200161122b919060609190911b6bffffffffffffffffffffffff1916815260140190565b6040516020818303038152906040528051906020012061283b565b949350505050565b4760005b600c5481101561132057600c818154811061127d57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600d80546001600160a01b03909216916108fc91670de0b6b3a764000091859081106112c557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154856112db9190613919565b6112e59190613905565b6040518115909202916000818181858888f1935050505015801561130d573d6000803e3d6000fd5b5080611318816139b0565b915050611252565b5050565b610eb283838360405180602001604052806000815250611be7565b6019805461104b9061397b565b600061135760085490565b82106113ba5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109a3565b600882815481106113db57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146114175760405162461bcd60e51b81526004016109a390613837565b610eb26019838361301a565b61143061271060656138ed565b81565b600a546001600160a01b0316331461145d5760405162461bcd60e51b81526004016109a390613837565b601460038154811061147f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154620d2f0061149891906138ed565b42116114dc5760405162461bcd60e51b815260206004820152601360248201527210d85b9b9bdd081dda5d1a191c985dc81e595d606a1b60448201526064016109a3565b6040514790600090339083908381818185875af1925050503d8060008114611520576040519150601f19603f3d011682016040523d82523d6000602084013e611525565b606091505b50509050806113205760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109a3565b600a546001600160a01b031633146115935760405162461bcd60e51b81526004016109a390613837565b610eb26013838361308e565b600a546001600160a01b031633146115c95760405162461bcd60e51b81526004016109a390613837565b60146000815481106115eb57634e487b7160e01b600052603260045260246000fd5b906000526020600020015442106116335760405162461bcd60e51b815260206004820152600c60248201526b14d85b19481cdd185c9d195960a21b60448201526064016109a3565b610eb26014838361308e565b6000818152600260205260408120546001600160a01b031680610c745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a3565b600a546001600160a01b031633146116e05760405162461bcd60e51b81526004016109a390613837565b610eb2601a838361301a565b60006001600160a01b0382166117575760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461179d5760405162461bcd60e51b81526004016109a390613837565b6117a760006128f8565b565b601481815481106117b957600080fd5b600091825260209091200154905081565b600a546001600160a01b031633146117f45760405162461bcd60e51b81526004016109a390613837565b601055565b600a546001600160a01b031633146118235760405162461bcd60e51b81526004016109a390613837565b610eb26018838361301a565b606060018054610c899061397b565b82811461187e5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c696420706172616d7360901b60448201526064016109a3565b60005b83811015611b1b576118b88585838181106118ac57634e487b7160e01b600052603260045260246000fd5b9050602002013561163f565b6001600160a01b0316336001600160a01b0316146119095760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21031b0b63632b960911b60448201526064016109a3565b6015600086868481811061192d57634e487b7160e01b600052603260045260246000fd5b905060200201358152602001908152602001600020546000146119885760405162461bcd60e51b8152602060048201526013602482015272119858dd1a5bdb88185b1c9958591e481cd95d606a1b60448201526064016109a3565b600b548383838181106119ab57634e487b7160e01b600052603260045260246000fd5b90506020020135106119cf5760405162461bcd60e51b81526004016109a39061380e565b8282828181106119ef57634e487b7160e01b600052603260045260246000fd5b9050602002013560156000878785818110611a1a57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002081905550600160176000858585818110611a5957634e487b7160e01b600052603260045260246000fd5b9050602002013581526020019081526020016000206000828254611a7d91906138ed565b909155508590508482818110611aa357634e487b7160e01b600052603260045260246000fd5b905060200201357fb84e382455deff81bdfd5a71977d9b39c015561e73468964c83b38377363d826848484818110611aeb57634e487b7160e01b600052603260045260246000fd5b90506020020135604051611b0191815260200190565b60405180910390a280611b13816139b0565b915050611881565b5050505050565b6001600160a01b038216331415611b7b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611bf1338361259d565b611c0d5760405162461bcd60e51b81526004016109a39061386c565b610c498484848461294a565b601381815481106117b957600080fd5b600f805461104b9061397b565b601a805461104b9061397b565b6000818152600260205260409020546060906001600160a01b0316611ca15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109a3565b6000601a8054611cb09061397b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdc9061397b565b8015611d295780601f10611cfe57610100808354040283529160200191611d29565b820191906000526020600020905b815481529060010190602001808311611d0c57829003601f168201915b50505050509050600081511115611dc9576000838152601560205260409020548015611dae5781611d598561297d565b600b8381548110611d7a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611d969392919061369b565b60405160208183030381529060405292505050919050565b81611db88561297d565b604051602001611d9692919061366c565b60198054611dd69061397b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e029061397b565b8015611e4f5780601f10611e2457610100808354040283529160200191611e4f565b820191906000526020600020905b815481529060010190602001808311611e3257829003601f168201915b5050505050915050919050565b50919050565b600081611f045760176020527fd8b2bced50346359af71f91110b86cdf684b6ab1c6ca64a7583c044d5c24de5c547fc52df653038b2ad477d8d97f1ddd63cfd138847b628ad8a7b89c109c3f8782ca5460016000527ff36d6bc9642eb6fb6ee9998b09ce990566df752ab06e11f8de7ab633bbd57b8f54611ee661271060656138ed565b611ef09190613938565b611efa9190613938565b610c749190613938565b5060009081526017602052604090205490565b919050565b600e5460ff16611f595760405162461bcd60e51b8152602060048201526008602482015267496e61637469766560c01b60448201526064016109a3565b6014600381548110611f7b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001544210611fca5760405162461bcd60e51b8152602060048201526013602482015272141d589b1a58c81cd85b19481cdd185c9d1959606a1b60448201526064016109a3565b60006014600281548110611fee57634e487b7160e01b600052603260045260246000fd5b906000526020600020015442111561203457601360028154811061202257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050612116565b601460018154811061205657634e487b7160e01b600052603260045260246000fd5b906000526020600020015442111561208a57601360018154811061202257634e487b7160e01b600052603260045260246000fd5b60146000815481106120ac57634e487b7160e01b600052603260045260246000fd5b90600052602060002001544211156120e057601360008154811061202257634e487b7160e01b600052603260045260246000fd5b60405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b60448201526064016109a3565b8483146121565760405162461bcd60e51b815260206004820152600e60248201526d496e76616c696420706172616d7360901b60448201526064016109a3565b6127108560125461216791906138ed565b11156121ac5760405162461bcd60e51b8152602060048201526014602482015273115e18d959591cc81cdd5c1c1b1e481b1a5b5a5d60621b60448201526064016109a3565b601054336000908152601660205260409020546121ca9087906138ed565b111561220e5760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc81b585e08185b1b1bddd959606a1b60448201526064016109a3565b3461222167011c37937e08000087613919565b11156122625760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016109a3565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506122a683838361283b565b6122e25760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109a3565b33600090815260166020526040812080548892906123019084906138ed565b90915550600090505b868110156124145760016012600082825461232591906138ed565b909155505060125460009061233b9060656138ed565b905061234733826124c5565b600087878481811061236957634e487b7160e01b600052603260045260246000fd5b905060200201359050600b8054905081106123965760405162461bcd60e51b81526004016109a39061380e565b6000828152601560209081526040808320849055838352601790915281208054600192906123c59084906138ed565b909155505060405181815282907fb84e382455deff81bdfd5a71977d9b39c015561e73468964c83b38377363d8269060200160405180910390a25050808061240c906139b0565b91505061230a565b50505050505050565b6018805461104b9061397b565b600a546001600160a01b031633146124545760405162461bcd60e51b81526004016109a390613837565b6001600160a01b0381166124b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a3565b6124c2816128f8565b50565b611320828260405180602001604052806000815250612a96565b60006001600160e01b031982166380ac58cd60e01b148061251057506001600160e01b03198216635b5e139f60e01b145b80610c7457506301ffc9a760e01b6001600160e01b0319831614610c74565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906125648261163f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a3565b60006126218361163f565b9050806001600160a01b0316846001600160a01b0316148061265c5750836001600160a01b031661265184610d0c565b6001600160a01b0316145b8061124657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611246565b826001600160a01b03166126a38261163f565b6001600160a01b03161461270b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a3565b6001600160a01b03821661276d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a3565b612778838383612ac9565b61278360008261252f565b6001600160a01b03831660009081526003602052604081208054600192906127ac908490613938565b90915550506001600160a01b03821660009081526003602052604081208054600192906127da9084906138ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b85518110156128ed57600086828151811061286b57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116128ad5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506128da565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806128e5816139b0565b915050612840565b509092149392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612955848484612690565b61296184848484612b81565b610c495760405162461bcd60e51b81526004016109a3906137bc565b6060816129a15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129cb57806129b5816139b0565b91506129c49050600a83613905565b91506129a5565b6000816001600160401b038111156129f357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a1d576020820181803683370190505b5090505b841561124657612a32600183613938565b9150612a3f600a866139cb565b612a4a9060306138ed565b60f81b818381518110612a6d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a8f600a86613905565b9450612a21565b612aa08383612c8e565b612aad6000848484612b81565b610eb25760405162461bcd60e51b81526004016109a3906137bc565b6001600160a01b038316612b2457612b1f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b47565b816001600160a01b0316836001600160a01b031614612b4757612b478382612ddc565b6001600160a01b038216612b5e57610eb281612e79565b826001600160a01b0316826001600160a01b031614610eb257610eb28282612f52565b60006001600160a01b0384163b15612c8357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612bc590339089908890889060040161376c565b602060405180830381600087803b158015612bdf57600080fd5b505af1925050508015612c0f575060408051601f3d908101601f19168201909252612c0c918101906134af565b60015b612c69573d808015612c3d576040519150601f19603f3d011682016040523d82523d6000602084013e612c42565b606091505b508051612c615760405162461bcd60e51b81526004016109a3906137bc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611246565b506001949350505050565b6001600160a01b038216612ce45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a3565b6000818152600260205260409020546001600160a01b031615612d495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a3565b612d5560008383612ac9565b6001600160a01b0382166000908152600360205260408120805460019290612d7e9084906138ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612de9846116ec565b612df39190613938565b600083815260076020526040902054909150808214612e46576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e8b90600190613938565b60008381526009602052604081205460088054939450909284908110612ec157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612ef057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f3657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f5d836116ec565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612fa29061397b565b90600052602060002090601f016020900481019282612fc4576000855561300a565b82601f10612fdd57805160ff191683800117855561300a565b8280016001018555821561300a579182015b8281111561300a578251825591602001919060010190612fef565b506130169291506130c8565b5090565b8280546130269061397b565b90600052602060002090601f016020900481019282613048576000855561300a565b82601f106130615782800160ff1982351617855561300a565b8280016001018555821561300a579182015b8281111561300a578235825591602001919060010190613073565b82805482825590600052602060002090810192821561300a579160200282018281111561300a578235825591602001919060010190613073565b5b8082111561301657600081556001016130c9565b60006001600160401b038311156130f6576130f6613a0b565b613109601f8401601f19166020016138bd565b905082815283838301111561311d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f1757600080fd5b60008083601f84011261315c578182fd5b5081356001600160401b03811115613172578182fd5b6020830191508360208260051b850101111561318d57600080fd5b9250929050565b600082601f8301126131a4578081fd5b813560206001600160401b038211156131bf576131bf613a0b565b8160051b6131ce8282016138bd565b8381528281019086840183880185018910156131e8578687fd5b8693505b8584101561320a5780358352600193909301929184019184016131ec565b50979650505050505050565b80358015158114611f1757600080fd5b600060208284031215613237578081fd5b61324082613134565b9392505050565b60008060408385031215613259578081fd5b61326283613134565b915061327060208401613134565b90509250929050565b60008060006060848603121561328d578081fd5b61329684613134565b92506132a460208501613134565b9150604084013590509250925092565b600080600080608085870312156132c9578081fd5b6132d285613134565b93506132e060208601613134565b92506040850135915060608501356001600160401b03811115613301578182fd5b8501601f81018713613311578182fd5b613320878235602084016130dd565b91505092959194509250565b6000806040838503121561333e578182fd5b61334783613134565b915061327060208401613216565b60008060408385031215613367578182fd5b61337083613134565b946020939093013593505050565b60008060208385031215613390578182fd5b82356001600160401b038111156133a5578283fd5b6133b18582860161314b565b90969095509350505050565b6000806000606084860312156133d1578081fd5b83356001600160401b038111156133e6578182fd5b6133f286828701613194565b9350506020840135915061340860408501613134565b90509250925092565b60008060008060408587031215613426578182fd5b84356001600160401b038082111561343c578384fd5b6134488883890161314b565b90965094506020870135915080821115613460578384fd5b5061346d8782880161314b565b95989497509550505050565b60006020828403121561348a578081fd5b61324082613216565b6000602082840312156134a4578081fd5b813561324081613a21565b6000602082840312156134c0578081fd5b815161324081613a21565b600080602083850312156134dd578182fd5b82356001600160401b03808211156134f3578384fd5b818501915085601f830112613506578384fd5b813581811115613514578485fd5b866020828501011115613525578485fd5b60209290920196919550909350505050565b600060208284031215613548578081fd5b81356001600160401b0381111561355d578182fd5b8201601f8101841361356d578182fd5b611246848235602084016130dd565b60006020828403121561358d578081fd5b5035919050565b6000806000604084860312156135a8578081fd5b8335925060208401356001600160401b038111156135c4578182fd5b6135d08682870161314b565b9497909650939450505050565b600080600080606085870312156135f2578182fd5b8435935060208501356001600160401b038082111561360f578384fd5b61361b8883890161314b565b90955093506040870135915080821115613633578283fd5b5061332087828801613194565b6000815180845261365881602086016020860161394f565b601f01601f19169290920160200192915050565b6000835161367e81846020880161394f565b83519083019061369281836020880161394f565b01949350505050565b6000845160206136ae8285838a0161394f565b8551918401916136c18184848a0161394f565b602d60f81b92019182528454600190849080831c818416806136e457607f821691505b85821081141561370257634e487b7160e01b88526022600452602488fd5b808015613716576001811461372b5761375b565b60ff198416888701528288018601945061375b565b60008b815260209020895b848110156137515781548a8201890152908701908801613736565b5050858389010194505b50929b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061379f90830184613640565b9695505050505050565b6020815260006132406020830184613640565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e24b73b30b634b2103330b1ba34b7b760891b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f191681016001600160401b03811182821017156138e5576138e5613a0b565b604052919050565b60008219821115613900576139006139df565b500190565b600082613914576139146139f5565b500490565b6000816000190483118215151615613933576139336139df565b500290565b60008282101561394a5761394a6139df565b500390565b60005b8381101561396a578181015183820152602001613952565b83811115610c495750506000910152565b600181811c9082168061398f57607f821691505b60208210811415611e5c57634e487b7160e01b600052602260045260246000fd5b60006000198214156139c4576139c46139df565b5060010190565b6000826139da576139da6139f5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146124c257600080fdfea2646970667358221220d1c17c6df43962b1c1466a3a0cbc759cb24f753eadd373f87e4fed6c043b8de264736f6c6343000804003300000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000054465757358000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000244580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d51466b50754e725666553151556f6e37743458624e557a6751735178505670547576674d4d6e704a34744c3700000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d547850775a696d646d32774d426a7a424333374d33763632717834524b375141656a5677724c4d6d3562584200000000000000000000000000000000000000000000000000000000000000000000000000000000000003a66b65c0c9384bbb4f7af1bae80c04cf3f8d8a6c971169e789f349ddc0e79feea2e5d4bab6c6875e5e17a2fa8879409e598f83d932078d289eb8bff06e6aefbebc7b5f81e3eb83729014cb51cd4876a7d05e4c33068157eadc581ffa14626ce9000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000616845f0000000000000000000000000000000000000000000000000000000006169977000000000000000000000000000000000000000000000000000000000616ae8f000000000000000000000000000000000000000000000000000000000616b0510

Deployed Bytecode

0x6080604052600436106103195760003560e01c806370a08231116101ab578063a22cb465116100f7578063d15c84f111610095578063e6a5931e1161006f578063e6a5931e146108d6578063e8a3d485146108ec578063e985e9c514610901578063f2fde38b1461094a57600080fd5b8063d15c84f114610898578063d6f407c7146108ab578063d75e6110146108c157600080fd5b8063c6ab67a3116100d1578063c6ab67a31461082e578063c82b692c14610843578063c87b56dd14610858578063cc969b581461087857600080fd5b8063a22cb465146107ce578063b88d4fde146107ee578063c2b40ae41461080e57600080fd5b8063808c5f6d116101645780638da5cb5b1161013e5780638da5cb5b1461075b578063938e3d7b1461077957806395d89b4114610799578063996df9a6146107ae57600080fd5b8063808c5f6d146106fd578063884b3c82146107125780638d859f3e1461073f57600080fd5b806370a082311461065c578063715018a61461067c578063723fc5d31461069157806377bbebe6146106a75780637a6685f1146106c75780637f44ab2f146106e757600080fd5b806335c3003a1161026a57806355f804b3116102235780635b5da8a4116101fd5780635b5da8a4146105dc5780635d87f355146105fc5780636352211e1461061c5780636e83843a1461063c57600080fd5b806355f804b314610592578063598dc3b1146105b25780635b0a3843146105c757600080fd5b806335c3003a146104db5780633ccfd60b146104fb57806342842e0e146105105780634e99b800146105305780634f6ccce714610545578063540d11be1461056557600080fd5b8063163e1e61116102d757806322f3e2d4116102b157806322f3e2d41461046157806323b872dd1461047b5780632750fc781461049b5780632f745c59146104bb57600080fd5b8063163e1e611461040257806318160ddd146104225780631be5cd5c1461044157600080fd5b80620dd65d1461031e57806301ffc9a71461033357806306fdde0314610368578063081812fc1461038a578063095ea7b3146103c257806310969523146103e2575b600080fd5b61033161032c366004613594565b61096a565b005b34801561033f57600080fd5b5061035361034e366004613493565b610c4f565b60405190151581526020015b60405180910390f35b34801561037457600080fd5b5061037d610c7a565b60405161035f91906137a9565b34801561039657600080fd5b506103aa6103a536600461357c565b610d0c565b6040516001600160a01b03909116815260200161035f565b3480156103ce57600080fd5b506103316103dd366004613355565b610da1565b3480156103ee57600080fd5b506103316103fd366004613537565b610eb7565b34801561040e57600080fd5b5061033161041d36600461337e565b610f2f565b34801561042e57600080fd5b506008545b60405190815260200161035f565b34801561044d57600080fd5b5061037d61045c36600461357c565b611020565b34801561046d57600080fd5b50600e546103539060ff1681565b34801561048757600080fd5b50610331610496366004613279565b6110cc565b3480156104a757600080fd5b506103316104b6366004613479565b6110fd565b3480156104c757600080fd5b506104336104d6366004613355565b61113a565b3480156104e757600080fd5b506103536104f63660046133bd565b6111d0565b34801561050757600080fd5b5061033161124e565b34801561051c57600080fd5b5061033161052b366004613279565b611324565b34801561053c57600080fd5b5061037d61133f565b34801561055157600080fd5b5061043361056036600461357c565b61134c565b34801561057157600080fd5b5061043361058036600461357c565b60156020526000908152604090205481565b34801561059e57600080fd5b506103316105ad3660046134cb565b6113ed565b3480156105be57600080fd5b50610433611423565b3480156105d357600080fd5b50610331611433565b3480156105e857600080fd5b506103316105f736600461337e565b611569565b34801561060857600080fd5b5061033161061736600461337e565b61159f565b34801561062857600080fd5b506103aa61063736600461357c565b61163f565b34801561064857600080fd5b506103316106573660046134cb565b6116b6565b34801561066857600080fd5b50610433610677366004613226565b6116ec565b34801561068857600080fd5b50610331611773565b34801561069d57600080fd5b5061043361271081565b3480156106b357600080fd5b506104336106c236600461357c565b6117a9565b3480156106d357600080fd5b506103316106e236600461357c565b6117ca565b3480156106f357600080fd5b5061043360105481565b34801561070957600080fd5b50610433606581565b34801561071e57600080fd5b5061043361072d366004613226565b60166020526000908152604090205481565b34801561074b57600080fd5b5061043367011c37937e08000081565b34801561076757600080fd5b50600a546001600160a01b03166103aa565b34801561078557600080fd5b506103316107943660046134cb565b6117f9565b3480156107a557600080fd5b5061037d61182f565b3480156107ba57600080fd5b506103316107c9366004613411565b61183e565b3480156107da57600080fd5b506103316107e936600461332c565b611b22565b3480156107fa57600080fd5b506103316108093660046132b4565b611be7565b34801561081a57600080fd5b5061043361082936600461357c565b611c19565b34801561083a57600080fd5b5061037d611c29565b34801561084f57600080fd5b5061037d611c36565b34801561086457600080fd5b5061037d61087336600461357c565b611c43565b34801561088457600080fd5b5061043361089336600461357c565b611e62565b6103316108a63660046135dd565b611f1c565b3480156108b757600080fd5b5061043360115481565b3480156108cd57600080fd5b50610433600a81565b3480156108e257600080fd5b5061043360125481565b3480156108f857600080fd5b5061037d61241d565b34801561090d57600080fd5b5061035361091c366004613247565b6001600160a01b03918216600090815260056020908152604080832093909416825291909152205460ff1690565b34801561095657600080fd5b50610331610965366004613226565b61242a565b600e5460ff166109ac5760405162461bcd60e51b8152602060048201526008602482015267496e61637469766560c01b60448201526064015b60405180910390fd5b60146002815481106109ce57634e487b7160e01b600052603260045260246000fd5b90600052602060002001544211610a155760405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b60448201526064016109a3565b61271060125410610a595760405162461bcd60e51b815260206004820152600e60248201526d4578636565647320737570706c7960901b60448201526064016109a3565b600a831115610a9a5760405162461bcd60e51b815260206004820152600d60248201526c115e18d959591cc81b1a5b5a5d609a1b60448201526064016109a3565b828114610adc5760405162461bcd60e51b815260206004820152601060248201526f496e76616c69642066616374696f6e7360801b60448201526064016109a3565b34610aef67011c37937e08000085613919565b1115610b305760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016109a3565b60005b83811015610c49576127106012541015610c3757600160126000828254610b5a91906138ed565b9091555050601254600090610b709060656138ed565b9050610b7c33826124c5565b6000848484818110610b9e57634e487b7160e01b600052603260045260246000fd5b905060200201359050600b805490508110610bcb5760405162461bcd60e51b81526004016109a39061380e565b600082815260156020908152604080832084905583835260179091528120805460019290610bfa9084906138ed565b909155505060405181815282907fb84e382455deff81bdfd5a71977d9b39c015561e73468964c83b38377363d8269060200160405180910390a250505b80610c41816139b0565b915050610b33565b50505050565b60006001600160e01b0319821663780e9d6360e01b1480610c745750610c74826124df565b92915050565b606060008054610c899061397b565b80601f0160208091040260200160405190810160405280929190818152602001828054610cb59061397b565b8015610d025780601f10610cd757610100808354040283529160200191610d02565b820191906000526020600020905b815481529060010190602001808311610ce557829003601f168201915b5050505050905090565b6000818152600260205260408120546001600160a01b0316610d855760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a20617070726f76656420717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a3565b506000908152600460205260409020546001600160a01b031690565b6000610dac8261163f565b9050806001600160a01b0316836001600160a01b03161415610e1a5760405162461bcd60e51b815260206004820152602160248201527f4552433732313a20617070726f76616c20746f2063757272656e74206f776e656044820152603960f91b60648201526084016109a3565b336001600160a01b0382161480610e365750610e36813361091c565b610ea85760405162461bcd60e51b815260206004820152603860248201527f4552433732313a20617070726f76652063616c6c6572206973206e6f74206f7760448201527f6e6572206e6f7220617070726f76656420666f7220616c6c000000000000000060648201526084016109a3565b610eb2838361252f565b505050565b600a546001600160a01b03163314610ee15760405162461bcd60e51b81526004016109a390613837565b8051610ef490600f906020840190612f96565b507f6760362308ca665d8ad5234d7f09a8ac815ee45be8350cad464cb1e4eadd34ee81604051610f2491906137a9565b60405180910390a150565b600a546001600160a01b03163314610f595760405162461bcd60e51b81526004016109a390613837565b601154606590610f6a9083906138ed565b1115610fa95760405162461bcd60e51b815260206004820152600e60248201526d11da599d1cc8199a5b9a5cda195960921b60448201526064016109a3565b60005b81811015610eb257600160116000828254610fc791906138ed565b909155505060115461100d848484818110610ff257634e487b7160e01b600052603260045260246000fd5b90506020020160208101906110079190613226565b826124c5565b5080611018816139b0565b915050610fac565b600b818154811061103057600080fd5b90600052602060002001600091509050805461104b9061397b565b80601f01602080910402602001604051908101604052809291908181526020018280546110779061397b565b80156110c45780601f10611099576101008083540402835291602001916110c4565b820191906000526020600020905b8154815290600101906020018083116110a757829003601f168201915b505050505081565b6110d6338261259d565b6110f25760405162461bcd60e51b81526004016109a39061386c565b610eb2838383612690565b600a546001600160a01b031633146111275760405162461bcd60e51b81526004016109a390613837565b600e805460ff1916911515919091179055565b6000611145836116ec565b82106111a75760405162461bcd60e51b815260206004820152602b60248201527f455243373231456e756d657261626c653a206f776e657220696e646578206f7560448201526a74206f6620626f756e647360a81b60648201526084016109a3565b506001600160a01b03919091166000908152600660209081526040808320938352929052205490565b600061124684601385815481106111f757634e487b7160e01b600052603260045260246000fd5b90600052602060002001548460405160200161122b919060609190911b6bffffffffffffffffffffffff1916815260140190565b6040516020818303038152906040528051906020012061283b565b949350505050565b4760005b600c5481101561132057600c818154811061127d57634e487b7160e01b600052603260045260246000fd5b600091825260209091200154600d80546001600160a01b03909216916108fc91670de0b6b3a764000091859081106112c557634e487b7160e01b600052603260045260246000fd5b9060005260206000200154856112db9190613919565b6112e59190613905565b6040518115909202916000818181858888f1935050505015801561130d573d6000803e3d6000fd5b5080611318816139b0565b915050611252565b5050565b610eb283838360405180602001604052806000815250611be7565b6019805461104b9061397b565b600061135760085490565b82106113ba5760405162461bcd60e51b815260206004820152602c60248201527f455243373231456e756d657261626c653a20676c6f62616c20696e646578206f60448201526b7574206f6620626f756e647360a01b60648201526084016109a3565b600882815481106113db57634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050919050565b600a546001600160a01b031633146114175760405162461bcd60e51b81526004016109a390613837565b610eb26019838361301a565b61143061271060656138ed565b81565b600a546001600160a01b0316331461145d5760405162461bcd60e51b81526004016109a390613837565b601460038154811061147f57634e487b7160e01b600052603260045260246000fd5b9060005260206000200154620d2f0061149891906138ed565b42116114dc5760405162461bcd60e51b815260206004820152601360248201527210d85b9b9bdd081dda5d1a191c985dc81e595d606a1b60448201526064016109a3565b6040514790600090339083908381818185875af1925050503d8060008114611520576040519150601f19603f3d011682016040523d82523d6000602084013e611525565b606091505b50509050806113205760405162461bcd60e51b815260206004820152601060248201526f2a3930b739b332b9103330b4b632b21760811b60448201526064016109a3565b600a546001600160a01b031633146115935760405162461bcd60e51b81526004016109a390613837565b610eb26013838361308e565b600a546001600160a01b031633146115c95760405162461bcd60e51b81526004016109a390613837565b60146000815481106115eb57634e487b7160e01b600052603260045260246000fd5b906000526020600020015442106116335760405162461bcd60e51b815260206004820152600c60248201526b14d85b19481cdd185c9d195960a21b60448201526064016109a3565b610eb26014838361308e565b6000818152600260205260408120546001600160a01b031680610c745760405162461bcd60e51b815260206004820152602960248201527f4552433732313a206f776e657220717565727920666f72206e6f6e657869737460448201526832b73a103a37b5b2b760b91b60648201526084016109a3565b600a546001600160a01b031633146116e05760405162461bcd60e51b81526004016109a390613837565b610eb2601a838361301a565b60006001600160a01b0382166117575760405162461bcd60e51b815260206004820152602a60248201527f4552433732313a2062616c616e636520717565727920666f7220746865207a65604482015269726f206164647265737360b01b60648201526084016109a3565b506001600160a01b031660009081526003602052604090205490565b600a546001600160a01b0316331461179d5760405162461bcd60e51b81526004016109a390613837565b6117a760006128f8565b565b601481815481106117b957600080fd5b600091825260209091200154905081565b600a546001600160a01b031633146117f45760405162461bcd60e51b81526004016109a390613837565b601055565b600a546001600160a01b031633146118235760405162461bcd60e51b81526004016109a390613837565b610eb26018838361301a565b606060018054610c899061397b565b82811461187e5760405162461bcd60e51b815260206004820152600e60248201526d496e76616c696420706172616d7360901b60448201526064016109a3565b60005b83811015611b1b576118b88585838181106118ac57634e487b7160e01b600052603260045260246000fd5b9050602002013561163f565b6001600160a01b0316336001600160a01b0316146119095760405162461bcd60e51b815260206004820152600e60248201526d24b73b30b634b21031b0b63632b960911b60448201526064016109a3565b6015600086868481811061192d57634e487b7160e01b600052603260045260246000fd5b905060200201358152602001908152602001600020546000146119885760405162461bcd60e51b8152602060048201526013602482015272119858dd1a5bdb88185b1c9958591e481cd95d606a1b60448201526064016109a3565b600b548383838181106119ab57634e487b7160e01b600052603260045260246000fd5b90506020020135106119cf5760405162461bcd60e51b81526004016109a39061380e565b8282828181106119ef57634e487b7160e01b600052603260045260246000fd5b9050602002013560156000878785818110611a1a57634e487b7160e01b600052603260045260246000fd5b90506020020135815260200190815260200160002081905550600160176000858585818110611a5957634e487b7160e01b600052603260045260246000fd5b9050602002013581526020019081526020016000206000828254611a7d91906138ed565b909155508590508482818110611aa357634e487b7160e01b600052603260045260246000fd5b905060200201357fb84e382455deff81bdfd5a71977d9b39c015561e73468964c83b38377363d826848484818110611aeb57634e487b7160e01b600052603260045260246000fd5b90506020020135604051611b0191815260200190565b60405180910390a280611b13816139b0565b915050611881565b5050505050565b6001600160a01b038216331415611b7b5760405162461bcd60e51b815260206004820152601960248201527f4552433732313a20617070726f766520746f2063616c6c65720000000000000060448201526064016109a3565b3360008181526005602090815260408083206001600160a01b03871680855290835292819020805460ff191686151590811790915590519081529192917f17307eab39ab6107e8899845ad3d59bd9653f200f220920489ca2b5937696c31910160405180910390a35050565b611bf1338361259d565b611c0d5760405162461bcd60e51b81526004016109a39061386c565b610c498484848461294a565b601381815481106117b957600080fd5b600f805461104b9061397b565b601a805461104b9061397b565b6000818152600260205260409020546060906001600160a01b0316611ca15760405162461bcd60e51b8152602060048201526014602482015273151bdad95b88191bd95cc81b9bdd08195e1a5cdd60621b60448201526064016109a3565b6000601a8054611cb09061397b565b80601f0160208091040260200160405190810160405280929190818152602001828054611cdc9061397b565b8015611d295780601f10611cfe57610100808354040283529160200191611d29565b820191906000526020600020905b815481529060010190602001808311611d0c57829003601f168201915b50505050509050600081511115611dc9576000838152601560205260409020548015611dae5781611d598561297d565b600b8381548110611d7a57634e487b7160e01b600052603260045260246000fd5b90600052602060002001604051602001611d969392919061369b565b60405160208183030381529060405292505050919050565b81611db88561297d565b604051602001611d9692919061366c565b60198054611dd69061397b565b80601f0160208091040260200160405190810160405280929190818152602001828054611e029061397b565b8015611e4f5780601f10611e2457610100808354040283529160200191611e4f565b820191906000526020600020905b815481529060010190602001808311611e3257829003601f168201915b5050505050915050919050565b50919050565b600081611f045760176020527fd8b2bced50346359af71f91110b86cdf684b6ab1c6ca64a7583c044d5c24de5c547fc52df653038b2ad477d8d97f1ddd63cfd138847b628ad8a7b89c109c3f8782ca5460016000527ff36d6bc9642eb6fb6ee9998b09ce990566df752ab06e11f8de7ab633bbd57b8f54611ee661271060656138ed565b611ef09190613938565b611efa9190613938565b610c749190613938565b5060009081526017602052604090205490565b919050565b600e5460ff16611f595760405162461bcd60e51b8152602060048201526008602482015267496e61637469766560c01b60448201526064016109a3565b6014600381548110611f7b57634e487b7160e01b600052603260045260246000fd5b90600052602060002001544210611fca5760405162461bcd60e51b8152602060048201526013602482015272141d589b1a58c81cd85b19481cdd185c9d1959606a1b60448201526064016109a3565b60006014600281548110611fee57634e487b7160e01b600052603260045260246000fd5b906000526020600020015442111561203457601360028154811061202257634e487b7160e01b600052603260045260246000fd5b90600052602060002001549050612116565b601460018154811061205657634e487b7160e01b600052603260045260246000fd5b906000526020600020015442111561208a57601360018154811061202257634e487b7160e01b600052603260045260246000fd5b60146000815481106120ac57634e487b7160e01b600052603260045260246000fd5b90600052602060002001544211156120e057601360008154811061202257634e487b7160e01b600052603260045260246000fd5b60405162461bcd60e51b815260206004820152600b60248201526a139bdd081cdd185c9d195960aa1b60448201526064016109a3565b8483146121565760405162461bcd60e51b815260206004820152600e60248201526d496e76616c696420706172616d7360901b60448201526064016109a3565b6127108560125461216791906138ed565b11156121ac5760405162461bcd60e51b8152602060048201526014602482015273115e18d959591cc81cdd5c1c1b1e481b1a5b5a5d60621b60448201526064016109a3565b601054336000908152601660205260409020546121ca9087906138ed565b111561220e5760405162461bcd60e51b8152602060048201526013602482015272115e18d959591cc81b585e08185b1b1bddd959606a1b60448201526064016109a3565b3461222167011c37937e08000087613919565b11156122625760405162461bcd60e51b815260206004820152601060248201526f092dce6eaccccd2c6d2cadce8408aa8960831b60448201526064016109a3565b6040516bffffffffffffffffffffffff193360601b1660208201526000906034016040516020818303038152906040528051906020012090506122a683838361283b565b6122e25760405162461bcd60e51b815260206004820152600d60248201526c24b73b30b634b210383937b7b360991b60448201526064016109a3565b33600090815260166020526040812080548892906123019084906138ed565b90915550600090505b868110156124145760016012600082825461232591906138ed565b909155505060125460009061233b9060656138ed565b905061234733826124c5565b600087878481811061236957634e487b7160e01b600052603260045260246000fd5b905060200201359050600b8054905081106123965760405162461bcd60e51b81526004016109a39061380e565b6000828152601560209081526040808320849055838352601790915281208054600192906123c59084906138ed565b909155505060405181815282907fb84e382455deff81bdfd5a71977d9b39c015561e73468964c83b38377363d8269060200160405180910390a25050808061240c906139b0565b91505061230a565b50505050505050565b6018805461104b9061397b565b600a546001600160a01b031633146124545760405162461bcd60e51b81526004016109a390613837565b6001600160a01b0381166124b95760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016109a3565b6124c2816128f8565b50565b611320828260405180602001604052806000815250612a96565b60006001600160e01b031982166380ac58cd60e01b148061251057506001600160e01b03198216635b5e139f60e01b145b80610c7457506301ffc9a760e01b6001600160e01b0319831614610c74565b600081815260046020526040902080546001600160a01b0319166001600160a01b03841690811790915581906125648261163f565b6001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92560405160405180910390a45050565b6000818152600260205260408120546001600160a01b03166126165760405162461bcd60e51b815260206004820152602c60248201527f4552433732313a206f70657261746f7220717565727920666f72206e6f6e657860448201526b34b9ba32b73a103a37b5b2b760a11b60648201526084016109a3565b60006126218361163f565b9050806001600160a01b0316846001600160a01b0316148061265c5750836001600160a01b031661265184610d0c565b6001600160a01b0316145b8061124657506001600160a01b0380821660009081526005602090815260408083209388168352929052205460ff16611246565b826001600160a01b03166126a38261163f565b6001600160a01b03161461270b5760405162461bcd60e51b815260206004820152602960248201527f4552433732313a207472616e73666572206f6620746f6b656e2074686174206960448201526839903737ba1037bbb760b91b60648201526084016109a3565b6001600160a01b03821661276d5760405162461bcd60e51b8152602060048201526024808201527f4552433732313a207472616e7366657220746f20746865207a65726f206164646044820152637265737360e01b60648201526084016109a3565b612778838383612ac9565b61278360008261252f565b6001600160a01b03831660009081526003602052604081208054600192906127ac908490613938565b90915550506001600160a01b03821660009081526003602052604081208054600192906127da9084906138ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b0386811691821790925591518493918716917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef91a4505050565b600081815b85518110156128ed57600086828151811061286b57634e487b7160e01b600052603260045260246000fd5b602002602001015190508083116128ad5760408051602081018590529081018290526060016040516020818303038152906040528051906020012092506128da565b60408051602081018390529081018490526060016040516020818303038152906040528051906020012092505b50806128e5816139b0565b915050612840565b509092149392505050565b600a80546001600160a01b038381166001600160a01b0319831681179093556040519116919082907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e090600090a35050565b612955848484612690565b61296184848484612b81565b610c495760405162461bcd60e51b81526004016109a3906137bc565b6060816129a15750506040805180820190915260018152600360fc1b602082015290565b8160005b81156129cb57806129b5816139b0565b91506129c49050600a83613905565b91506129a5565b6000816001600160401b038111156129f357634e487b7160e01b600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015612a1d576020820181803683370190505b5090505b841561124657612a32600183613938565b9150612a3f600a866139cb565b612a4a9060306138ed565b60f81b818381518110612a6d57634e487b7160e01b600052603260045260246000fd5b60200101906001600160f81b031916908160001a905350612a8f600a86613905565b9450612a21565b612aa08383612c8e565b612aad6000848484612b81565b610eb25760405162461bcd60e51b81526004016109a3906137bc565b6001600160a01b038316612b2457612b1f81600880546000838152600960205260408120829055600182018355919091527ff3f7a9fe364faab93b216da50a3214154f22a0a2b415b23a84c8169e8b636ee30155565b612b47565b816001600160a01b0316836001600160a01b031614612b4757612b478382612ddc565b6001600160a01b038216612b5e57610eb281612e79565b826001600160a01b0316826001600160a01b031614610eb257610eb28282612f52565b60006001600160a01b0384163b15612c8357604051630a85bd0160e11b81526001600160a01b0385169063150b7a0290612bc590339089908890889060040161376c565b602060405180830381600087803b158015612bdf57600080fd5b505af1925050508015612c0f575060408051601f3d908101601f19168201909252612c0c918101906134af565b60015b612c69573d808015612c3d576040519150601f19603f3d011682016040523d82523d6000602084013e612c42565b606091505b508051612c615760405162461bcd60e51b81526004016109a3906137bc565b805181602001fd5b6001600160e01b031916630a85bd0160e11b149050611246565b506001949350505050565b6001600160a01b038216612ce45760405162461bcd60e51b815260206004820181905260248201527f4552433732313a206d696e7420746f20746865207a65726f206164647265737360448201526064016109a3565b6000818152600260205260409020546001600160a01b031615612d495760405162461bcd60e51b815260206004820152601c60248201527f4552433732313a20746f6b656e20616c7265616479206d696e7465640000000060448201526064016109a3565b612d5560008383612ac9565b6001600160a01b0382166000908152600360205260408120805460019290612d7e9084906138ed565b909155505060008181526002602052604080822080546001600160a01b0319166001600160a01b03861690811790915590518392907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef908290a45050565b60006001612de9846116ec565b612df39190613938565b600083815260076020526040902054909150808214612e46576001600160a01b03841660009081526006602090815260408083208584528252808320548484528184208190558352600790915290208190555b5060009182526007602090815260408084208490556001600160a01b039094168352600681528383209183525290812055565b600854600090612e8b90600190613938565b60008381526009602052604081205460088054939450909284908110612ec157634e487b7160e01b600052603260045260246000fd5b906000526020600020015490508060088381548110612ef057634e487b7160e01b600052603260045260246000fd5b6000918252602080832090910192909255828152600990915260408082208490558582528120556008805480612f3657634e487b7160e01b600052603160045260246000fd5b6001900381819060005260206000200160009055905550505050565b6000612f5d836116ec565b6001600160a01b039093166000908152600660209081526040808320868452825280832085905593825260079052919091209190915550565b828054612fa29061397b565b90600052602060002090601f016020900481019282612fc4576000855561300a565b82601f10612fdd57805160ff191683800117855561300a565b8280016001018555821561300a579182015b8281111561300a578251825591602001919060010190612fef565b506130169291506130c8565b5090565b8280546130269061397b565b90600052602060002090601f016020900481019282613048576000855561300a565b82601f106130615782800160ff1982351617855561300a565b8280016001018555821561300a579182015b8281111561300a578235825591602001919060010190613073565b82805482825590600052602060002090810192821561300a579160200282018281111561300a578235825591602001919060010190613073565b5b8082111561301657600081556001016130c9565b60006001600160401b038311156130f6576130f6613a0b565b613109601f8401601f19166020016138bd565b905082815283838301111561311d57600080fd5b828260208301376000602084830101529392505050565b80356001600160a01b0381168114611f1757600080fd5b60008083601f84011261315c578182fd5b5081356001600160401b03811115613172578182fd5b6020830191508360208260051b850101111561318d57600080fd5b9250929050565b600082601f8301126131a4578081fd5b813560206001600160401b038211156131bf576131bf613a0b565b8160051b6131ce8282016138bd565b8381528281019086840183880185018910156131e8578687fd5b8693505b8584101561320a5780358352600193909301929184019184016131ec565b50979650505050505050565b80358015158114611f1757600080fd5b600060208284031215613237578081fd5b61324082613134565b9392505050565b60008060408385031215613259578081fd5b61326283613134565b915061327060208401613134565b90509250929050565b60008060006060848603121561328d578081fd5b61329684613134565b92506132a460208501613134565b9150604084013590509250925092565b600080600080608085870312156132c9578081fd5b6132d285613134565b93506132e060208601613134565b92506040850135915060608501356001600160401b03811115613301578182fd5b8501601f81018713613311578182fd5b613320878235602084016130dd565b91505092959194509250565b6000806040838503121561333e578182fd5b61334783613134565b915061327060208401613216565b60008060408385031215613367578182fd5b61337083613134565b946020939093013593505050565b60008060208385031215613390578182fd5b82356001600160401b038111156133a5578283fd5b6133b18582860161314b565b90969095509350505050565b6000806000606084860312156133d1578081fd5b83356001600160401b038111156133e6578182fd5b6133f286828701613194565b9350506020840135915061340860408501613134565b90509250925092565b60008060008060408587031215613426578182fd5b84356001600160401b038082111561343c578384fd5b6134488883890161314b565b90965094506020870135915080821115613460578384fd5b5061346d8782880161314b565b95989497509550505050565b60006020828403121561348a578081fd5b61324082613216565b6000602082840312156134a4578081fd5b813561324081613a21565b6000602082840312156134c0578081fd5b815161324081613a21565b600080602083850312156134dd578182fd5b82356001600160401b03808211156134f3578384fd5b818501915085601f830112613506578384fd5b813581811115613514578485fd5b866020828501011115613525578485fd5b60209290920196919550909350505050565b600060208284031215613548578081fd5b81356001600160401b0381111561355d578182fd5b8201601f8101841361356d578182fd5b611246848235602084016130dd565b60006020828403121561358d578081fd5b5035919050565b6000806000604084860312156135a8578081fd5b8335925060208401356001600160401b038111156135c4578182fd5b6135d08682870161314b565b9497909650939450505050565b600080600080606085870312156135f2578182fd5b8435935060208501356001600160401b038082111561360f578384fd5b61361b8883890161314b565b90955093506040870135915080821115613633578283fd5b5061332087828801613194565b6000815180845261365881602086016020860161394f565b601f01601f19169290920160200192915050565b6000835161367e81846020880161394f565b83519083019061369281836020880161394f565b01949350505050565b6000845160206136ae8285838a0161394f565b8551918401916136c18184848a0161394f565b602d60f81b92019182528454600190849080831c818416806136e457607f821691505b85821081141561370257634e487b7160e01b88526022600452602488fd5b808015613716576001811461372b5761375b565b60ff198416888701528288018601945061375b565b60008b815260209020895b848110156137515781548a8201890152908701908801613736565b5050858389010194505b50929b9a5050505050505050505050565b6001600160a01b038581168252841660208201526040810183905260806060820181905260009061379f90830184613640565b9695505050505050565b6020815260006132406020830184613640565b60208082526032908201527f4552433732313a207472616e7366657220746f206e6f6e20455243373231526560408201527131b2b4bb32b91034b6b83632b6b2b73a32b960711b606082015260800190565b6020808252600f908201526e24b73b30b634b2103330b1ba34b7b760891b604082015260600190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b60208082526031908201527f4552433732313a207472616e736665722063616c6c6572206973206e6f74206f6040820152701ddb995c881b9bdc88185c1c1c9bdd9959607a1b606082015260800190565b604051601f8201601f191681016001600160401b03811182821017156138e5576138e5613a0b565b604052919050565b60008219821115613900576139006139df565b500190565b600082613914576139146139f5565b500490565b6000816000190483118215151615613933576139336139df565b500290565b60008282101561394a5761394a6139df565b500390565b60005b8381101561396a578181015183820152602001613952565b83811115610c495750506000910152565b600181811c9082168061398f57607f821691505b60208210811415611e5c57634e487b7160e01b600052602260045260246000fd5b60006000198214156139c4576139c46139df565b5060010190565b6000826139da576139da6139f5565b500690565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052601260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b6001600160e01b0319811681146124c257600080fdfea2646970667358221220d1c17c6df43962b1c1466a3a0cbc759cb24f753eadd373f87e4fed6c043b8de264736f6c63430008040033

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

00000000000000000000000000000000000000000000000000000000000000c00000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000014000000000000000000000000000000000000000000000000000000000000001a00000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000028000000000000000000000000000000000000000000000000000000000000000054465757358000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000244580000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d51466b50754e725666553151556f6e37743458624e557a6751735178505670547576674d4d6e704a34744c3700000000000000000000000000000000000000000000000000000000000000000000000000000000000035697066733a2f2f516d547850775a696d646d32774d426a7a424333374d33763632717834524b375141656a5677724c4d6d3562584200000000000000000000000000000000000000000000000000000000000000000000000000000000000003a66b65c0c9384bbb4f7af1bae80c04cf3f8d8a6c971169e789f349ddc0e79feea2e5d4bab6c6875e5e17a2fa8879409e598f83d932078d289eb8bff06e6aefbebc7b5f81e3eb83729014cb51cd4876a7d05e4c33068157eadc581ffa14626ce9000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000616845f0000000000000000000000000000000000000000000000000000000006169977000000000000000000000000000000000000000000000000000000000616ae8f000000000000000000000000000000000000000000000000000000000616b0510

-----Decoded View---------------
Arg [0] : _name (string): DeusX
Arg [1] : _symbol (string): DX
Arg [2] : _contractURI (string): ipfs://QmQFkPuNrVfU1QUon7t4XbNUzgQsQxPVpTuvgMMnpJ4tL7
Arg [3] : _tokenBaseURI (string): ipfs://QmTxPwZimdm2wMBjzBC37M3v62qx4RK7QAejVwrLMm5bXB
Arg [4] : _roots (bytes32[]): System.Byte[],System.Byte[],System.Byte[]
Arg [5] : _startTimes (uint256[]): 1634223600,1634310000,1634396400,1634403600

-----Encoded View---------------
25 Constructor Arguments found :
Arg [0] : 00000000000000000000000000000000000000000000000000000000000000c0
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000100
Arg [2] : 0000000000000000000000000000000000000000000000000000000000000140
Arg [3] : 00000000000000000000000000000000000000000000000000000000000001a0
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000200
Arg [5] : 0000000000000000000000000000000000000000000000000000000000000280
Arg [6] : 0000000000000000000000000000000000000000000000000000000000000005
Arg [7] : 4465757358000000000000000000000000000000000000000000000000000000
Arg [8] : 0000000000000000000000000000000000000000000000000000000000000002
Arg [9] : 4458000000000000000000000000000000000000000000000000000000000000
Arg [10] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [11] : 697066733a2f2f516d51466b50754e725666553151556f6e37743458624e557a
Arg [12] : 6751735178505670547576674d4d6e704a34744c370000000000000000000000
Arg [13] : 0000000000000000000000000000000000000000000000000000000000000035
Arg [14] : 697066733a2f2f516d547850775a696d646d32774d426a7a424333374d337636
Arg [15] : 32717834524b375141656a5677724c4d6d356258420000000000000000000000
Arg [16] : 0000000000000000000000000000000000000000000000000000000000000003
Arg [17] : a66b65c0c9384bbb4f7af1bae80c04cf3f8d8a6c971169e789f349ddc0e79fee
Arg [18] : a2e5d4bab6c6875e5e17a2fa8879409e598f83d932078d289eb8bff06e6aefbe
Arg [19] : bc7b5f81e3eb83729014cb51cd4876a7d05e4c33068157eadc581ffa14626ce9
Arg [20] : 0000000000000000000000000000000000000000000000000000000000000004
Arg [21] : 00000000000000000000000000000000000000000000000000000000616845f0
Arg [22] : 0000000000000000000000000000000000000000000000000000000061699770
Arg [23] : 00000000000000000000000000000000000000000000000000000000616ae8f0
Arg [24] : 00000000000000000000000000000000000000000000000000000000616b0510


Deployed Bytecode Sourcemap

45657:8900:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;47844:1280;;;;;;:::i;:::-;;:::i;:::-;;37223:224;;;;;;;;;;-1:-1:-1;37223:224:0;;;;;:::i;:::-;;:::i;:::-;;;14045:14:1;;14038:22;14020:41;;14008:2;13993:18;37223:224:0;;;;;;;;24176:100;;;;;;;;;;;;;:::i;:::-;;;;;;;:::i;25735:221::-;;;;;;;;;;-1:-1:-1;25735:221:0;;;;;:::i;:::-;;:::i;:::-;;;-1:-1:-1;;;;;13343:32:1;;;13325:51;;13313:2;13298:18;25735:221:0;13280:102:1;25258:411:0;;;;;;;;;;-1:-1:-1;25258:411:0;;;;;:::i;:::-;;:::i;54265:172::-;;;;;;;;;;-1:-1:-1;54265:172:0;;;;;:::i;:::-;;:::i;52432:341::-;;;;;;;;;;-1:-1:-1;52432:341:0;;;;;:::i;:::-;;:::i;37863:113::-;;;;;;;;;;-1:-1:-1;37951:10:0;:17;37863:113;;;14218:25:1;;;14206:2;14191:18;37863:113:0;14173:76:1;46046:94:0;;;;;;;;;;-1:-1:-1;46046:94:0;;;;;:::i;:::-;;:::i;46893:27::-;;;;;;;;;;-1:-1:-1;46893:27:0;;;;;;;;26625:339;;;;;;;;;;-1:-1:-1;26625:339:0;;;;;:::i;:::-;;:::i;54168:91::-;;;;;;;;;;-1:-1:-1;54168:91:0;;;;;:::i;:::-;;:::i;37531:256::-;;;;;;;;;;-1:-1:-1;37531:256:0;;;;;:::i;:::-;;:::i;52208:218::-;;;;;;;;;;-1:-1:-1;52208:218:0;;;;;:::i;:::-;;:::i;52779:217::-;;;;;;;;;;;;;:::i;27035:185::-;;;;;;;;;;-1:-1:-1;27035:185:0;;;;;:::i;:::-;;:::i;47441:31::-;;;;;;;;;;;;;:::i;38053:233::-;;;;;;;;;;-1:-1:-1;38053:233:0;;;;;:::i;:::-;;:::i;47244:44::-;;;;;;;;;;-1:-1:-1;47244:44:0;;;;;:::i;:::-;;;;;;;;;;;;;;53835:91;;;;;;;;;;-1:-1:-1;53835:91:0;;;;;:::i;:::-;;:::i;45833:61::-;;;;;;;;;;;;;:::i;53002:382::-;;;;;;;;;;;;;:::i;54069:93::-;;;;;;;;;;-1:-1:-1;54069:93:0;;;;;:::i;:::-;;:::i;53390:229::-;;;;;;;;;;-1:-1:-1;53390:229:0;;;;;:::i;:::-;;:::i;23870:239::-;;;;;;;;;;-1:-1:-1;23870:239:0;;;;;:::i;:::-;;:::i;53932:131::-;;;;;;;;;;-1:-1:-1;53932:131:0;;;;;:::i;:::-;;:::i;23600:208::-;;;;;;;;;;-1:-1:-1;23600:208:0;;;;;:::i;:::-;;:::i;44995:94::-;;;;;;;;;;;;;:::i;45783:44::-;;;;;;;;;;;;45822:5;45783:44;;47210:27;;;;;;;;;;-1:-1:-1;47210:27:0;;;;;:::i;:::-;;:::i;53625:104::-;;;;;;;;;;-1:-1:-1;53625:104:0;;;;;:::i;:::-;;:::i;46962:35::-;;;;;;;;;;;;;;;;45738:40;;;;;;;;;;;;45775:3;45738:40;;47293:51;;;;;;;;;;-1:-1:-1;47293:51:0;;;;;:::i;:::-;;;;;;;;;;;;;;45997:42;;;;;;;;;;;;46029:10;45997:42;;44344:87;;;;;;;;;;-1:-1:-1;44417:6:0;;-1:-1:-1;;;;;44417:6:0;44344:87;;53735:94;;;;;;;;;;-1:-1:-1;53735:94:0;;;;;:::i;:::-;;:::i;24345:104::-;;;;;;;;;;;;;:::i;50729:616::-;;;;;;;;;;-1:-1:-1;50729:616:0;;;;;:::i;:::-;;:::i;26028:295::-;;;;;;;;;;-1:-1:-1;26028:295:0;;;;;:::i;:::-;;:::i;27291:328::-;;;;;;;;;;-1:-1:-1;27291:328:0;;;;;:::i;:::-;;:::i;47183:22::-;;;;;;;;;;-1:-1:-1;47183:22:0;;;;;:::i;:::-;;:::i;46927:28::-;;;;;;;;;;;;;:::i;47477:39::-;;;;;;;;;;;;;:::i;51351:594::-;;;;;;;;;;-1:-1:-1;51351:594:0;;;;;:::i;:::-;;:::i;51951:251::-;;;;;;;;;;-1:-1:-1;51951:251:0;;;;;:::i;:::-;;:::i;49130:1593::-;;;;;;:::i;:::-;;:::i;47004:30::-;;;;;;;;;;;;;;;;45900:43;;;;;;;;;;;;45941:2;45900:43;;47039:32;;;;;;;;;;;;;;;;47406:30;;;;;;;;;;;;;:::i;26394:164::-;;;;;;;;;;-1:-1:-1;26394:164:0;;;;;:::i;:::-;-1:-1:-1;;;;;26515:25:0;;;26491:4;26515:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;;;;26394:164;45244:192;;;;;;;;;;-1:-1:-1;45244:192:0;;;;;:::i;:::-;;:::i;47844:1280::-;47947:8;;;;47939:29;;;;-1:-1:-1;;;47939:29:0;;23535:2:1;47939:29:0;;;23517:21:1;23574:1;23554:18;;;23547:29;-1:-1:-1;;;23592:18:1;;;23585:38;23640:18;;47939:29:0;;;;;;;;;48001:10;48012:1;48001:13;;;;;;-1:-1:-1;;;48001:13:0;;;;;;;;;;;;;;;;;47983:15;:31;47975:55;;;;-1:-1:-1;;;47975:55:0;;16469:2:1;47975:55:0;;;16451:21:1;16508:2;16488:18;;;16481:30;-1:-1:-1;;;16527:18:1;;;16520:41;16578:18;;47975:55:0;16441:161:1;47975:55:0;45822:5;48045:17;;:32;48037:59;;;;-1:-1:-1;;;48037:59:0;;14680:2:1;48037:59:0;;;14662:21:1;14719:2;14699:18;;;14692:30;-1:-1:-1;;;14738:18:1;;;14731:44;14792:18;;48037:59:0;14652:164:1;48037:59:0;45941:2;48111:14;:32;;48103:58;;;;-1:-1:-1;;;48103:58:0;;23871:2:1;48103:58:0;;;23853:21:1;23910:2;23890:18;;;23883:30;-1:-1:-1;;;23929:18:1;;;23922:43;23982:18;;48103:58:0;23843:163:1;48103:58:0;48176:33;;;48168:62;;;;-1:-1:-1;;;48168:62:0;;20128:2:1;48168:62:0;;;20110:21:1;20167:2;20147:18;;;20140:30;-1:-1:-1;;;20186:18:1;;;20179:46;20242:18;;48168:62:0;20100:166:1;48168:62:0;48467:9;48441:22;46029:10;48441:14;:22;:::i;:::-;:35;;48433:64;;;;-1:-1:-1;;;48433:64:0;;15364:2:1;48433:64:0;;;15346:21:1;15403:2;15383:18;;;15376:30;-1:-1:-1;;;15422:18:1;;;15415:46;15478:18;;48433:64:0;15336:166:1;48433:64:0;48511:9;48506:613;48530:14;48526:1;:18;48506:613;;;45822:5;48564:17;;:32;48560:552;;;48762:1;48741:17;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;48805:17:0;;48774:15;;48792:30;;45775:3;48792:30;:::i;:::-;48774:48;;48833:30;48843:10;48855:7;48833:9;:30::i;:::-;48876:16;48895:8;;48904:1;48895:11;;;;;-1:-1:-1;;;48895:11:0;;;;;;;;;;;;;;;48876:30;;48936:13;:20;;;;48925:8;:31;48917:59;;;;-1:-1:-1;;;48917:59:0;;;;;;;:::i;:::-;48988:18;;;;:9;:18;;;;;;;;:29;;;49028:24;;;:14;:24;;;;;:29;;49056:1;;48988:18;49028:29;;49056:1;;49028:29;:::i;:::-;;;;-1:-1:-1;;49073:29:0;;14218:25:1;;;49084:7:0;;49073:29;;14206:2:1;14191:18;49073:29:0;;;;;;;48560:552;;;48546:3;;;;:::i;:::-;;;;48506:613;;;;47844:1280;;;:::o;37223:224::-;37325:4;-1:-1:-1;;;;;;37349:50:0;;-1:-1:-1;;;37349:50:0;;:90;;;37403:36;37427:11;37403:23;:36::i;:::-;37342:97;37223:224;-1:-1:-1;;37223:224:0:o;24176:100::-;24230:13;24263:5;24256:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;24176:100;:::o;25735:221::-;25811:7;29218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29218:16:0;25831:73;;;;-1:-1:-1;;;25831:73:0;;24213:2:1;25831:73:0;;;24195:21:1;24252:2;24232:18;;;24225:30;24291:34;24271:18;;;24264:62;-1:-1:-1;;;24342:18:1;;;24335:42;24394:19;;25831:73:0;24185:234:1;25831:73:0;-1:-1:-1;25924:24:0;;;;:15;:24;;;;;;-1:-1:-1;;;;;25924:24:0;;25735:221::o;25258:411::-;25339:13;25355:23;25370:7;25355:14;:23::i;:::-;25339:39;;25403:5;-1:-1:-1;;;;;25397:11:0;:2;-1:-1:-1;;;;;25397:11:0;;;25389:57;;;;-1:-1:-1;;;25389:57:0;;25397:2:1;25389:57:0;;;25379:21:1;25436:2;25416:18;;;25409:30;25475:34;25455:18;;;25448:62;-1:-1:-1;;;25526:18:1;;;25519:31;25567:19;;25389:57:0;25369:223:1;25389:57:0;18818:10;-1:-1:-1;;;;;25481:21:0;;;;:62;;-1:-1:-1;25506:37:0;25523:5;18818:10;26394:164;:::i;25506:37::-;25459:168;;;;-1:-1:-1;;;25459:168:0;;21584:2:1;25459:168:0;;;21566:21:1;21623:2;21603:18;;;21596:30;21662:34;21642:18;;;21635:62;21733:26;21713:18;;;21706:54;21777:19;;25459:168:0;21556:246:1;25459:168:0;25640:21;25649:2;25653:7;25640:8;:21::i;:::-;25258:411;;;:::o;54265:172::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;54351:32;;::::1;::::0;:14:::1;::::0;:32:::1;::::0;::::1;::::0;::::1;:::i;:::-;;54397:34;54415:15;54397:34;;;;;;:::i;:::-;;;;;;;;54265:172:::0;:::o;52432:341::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;52503:15:::1;::::0;45775:3:::1;::::0;52503:27:::1;::::0;52521:2;;52503:27:::1;:::i;:::-;:41;;52495:68;;;::::0;-1:-1:-1;;;52495:68:0;;18683:2:1;52495:68:0::1;::::0;::::1;18665:21:1::0;18722:2;18702:18;;;18695:30;-1:-1:-1;;;18741:18:1;;;18734:44;18795:18;;52495:68:0::1;18655:164:1::0;52495:68:0::1;52576:9;52572:196;52591:13:::0;;::::1;52572:196;;;52675:1;52656:15;;:20;;;;;;;:::i;:::-;::::0;;;-1:-1:-1;;52703:15:0::1;::::0;52735:25:::1;52745:2:::0;;52748:1;52745:5;;::::1;;;-1:-1:-1::0;;;52745:5:0::1;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;52752:7;52735:9;:25::i;:::-;-1:-1:-1::0;52606:3:0;::::1;::::0;::::1;:::i;:::-;;;;52572:196;;46046:94:::0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::o;26625:339::-;26820:41;18818:10;26853:7;26820:18;:41::i;:::-;26812:103;;;;-1:-1:-1;;;26812:103:0;;;;;;;:::i;:::-;26928:28;26938:4;26944:2;26948:7;26928:9;:28::i;54168:91::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;54233:8:::1;:20:::0;;-1:-1:-1;;54233:20:0::1;::::0;::::1;;::::0;;;::::1;::::0;;54168:91::o;37531:256::-;37628:7;37664:23;37681:5;37664:16;:23::i;:::-;37656:5;:31;37648:87;;;;-1:-1:-1;;;37648:87:0;;16057:2:1;37648:87:0;;;16039:21:1;16096:2;16076:18;;;16069:30;16135:34;16115:18;;;16108:62;-1:-1:-1;;;16186:18:1;;;16179:41;16237:19;;37648:87:0;16029:233:1;37648:87:0;-1:-1:-1;;;;;;37753:19:0;;;;;;;;:12;:19;;;;;;;;:26;;;;;;;;;37531:256::o;52208:218::-;52316:4;52336:84;52355:6;52363:5;52369:10;52363:17;;;;;;-1:-1:-1;;;52363:17:0;;;;;;;;;;;;;;;;;52409:8;52392:26;;;;;;;10457:2:1;10453:15;;;;-1:-1:-1;;10449:53:1;10437:66;;10528:2;10519:12;;10427:110;52392:26:0;;;;;;;;;;;;;52382:37;;;;;;52336:18;:84::i;:::-;52329:91;52208:218;-1:-1:-1;;;;52208:218:0:o;52779:217::-;52833:21;52815:15;52861:130;52884:14;:21;52880:25;;52861:130;;;52929:14;52944:1;52929:17;;;;;;-1:-1:-1;;;52929:17:0;;;;;;;;;;;;;;;;;;;52965:9;:12;;-1:-1:-1;;;;;52929:17:0;;;;52921:62;;46882:4;;52975:1;;52965:12;;;;-1:-1:-1;;;52965:12:0;;;;;;;;;;;;;;;;;52957:7;:20;;;;:::i;:::-;:25;;;;:::i;:::-;52921:62;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;52907:3:0;;;;:::i;:::-;;;;52861:130;;;;52779:217;:::o;27035:185::-;27173:39;27190:4;27196:2;27200:7;27173:39;;;;;;;;;;;;:16;:39::i;47441:31::-;;;;;;;:::i;38053:233::-;38128:7;38164:30;37951:10;:17;;37863:113;38164:30;38156:5;:38;38148:95;;;;-1:-1:-1;;;38148:95:0;;26562:2:1;38148:95:0;;;26544:21:1;26601:2;26581:18;;;26574:30;26640:34;26620:18;;;26613:62;-1:-1:-1;;;26691:18:1;;;26684:42;26743:19;;38148:95:0;26534:234:1;38148:95:0;38261:10;38272:5;38261:17;;;;;;-1:-1:-1;;;38261:17:0;;;;;;;;;;;;;;;;;38254:24;;38053:233;;;:::o;53835:91::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;53902:18:::1;:12;53917:3:::0;;53902:18:::1;:::i;45833:61::-:0;45869:25;45822:5;45775:3;45869:25;:::i;:::-;45833:61;:::o;53002:382::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;53085:10:::1;53096:1;53085:13;;;;;;-1:-1:-1::0;;;53085:13:0::1;;;;;;;;;;;;;;;;;53101:11;53085:27;;;;:::i;:::-;53067:15;:45;53059:77;;;::::0;-1:-1:-1;;;53059:77:0;;27665:2:1;53059:77:0::1;::::0;::::1;27647:21:1::0;27704:2;27684:18;;;27677:30;-1:-1:-1;;;27723:18:1;;;27716:49;27782:18;;53059:77:0::1;27637:169:1::0;53059:77:0::1;53291:44;::::0;53244:21:::1;::::0;53226:15:::1;::::0;53299:10:::1;::::0;53244:21;;53226:15;53291:44;53226:15;53291:44;53244:21;53299:10;53291:44:::1;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;53272:63;;;53350:7;53342:36;;;::::0;-1:-1:-1;;;53342:36:0;;25799:2:1;53342:36:0::1;::::0;::::1;25781:21:1::0;25838:2;25818:18;;;25811:30;-1:-1:-1;;;25857:18:1;;;25850:46;25913:18;;53342:36:0::1;25771:166:1::0;54069:93:0;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;54142:14:::1;:5;54150:6:::0;;54142:14:::1;:::i;53390:229::-:0;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;53499:10:::1;53510:1;53499:13;;;;;;-1:-1:-1::0;;;53499:13:0::1;;;;;;;;;;;;;;;;;53481:15;:31;53473:56;;;::::0;-1:-1:-1;;;53473:56:0;;15023:2:1;53473:56:0::1;::::0;::::1;15005:21:1::0;15062:2;15042:18;;;15035:30;-1:-1:-1;;;15081:18:1;;;15074:42;15133:18;;53473:56:0::1;14995:162:1::0;53473:56:0::1;53589:24;:10;53602:11:::0;;53589:24:::1;:::i;23870:239::-:0;23942:7;23978:16;;;:7;:16;;;;;;-1:-1:-1;;;;;23978:16:0;24013:19;24005:73;;;;-1:-1:-1;;;24005:73:0;;22420:2:1;24005:73:0;;;22402:21:1;22459:2;22439:18;;;22432:30;22498:34;22478:18;;;22471:62;-1:-1:-1;;;22549:18:1;;;22542:39;22598:19;;24005:73:0;22392:231:1;53932:131:0;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;54019:38:::1;:20;54042:15:::0;;54019:38:::1;:::i;23600:208::-:0;23672:7;-1:-1:-1;;;;;23700:19:0;;23692:74;;;;-1:-1:-1;;;23692:74:0;;22009:2:1;23692:74:0;;;21991:21:1;22048:2;22028:18;;;22021:30;22087:34;22067:18;;;22060:62;-1:-1:-1;;;22138:18:1;;;22131:40;22188:19;;23692:74:0;21981:232:1;23692:74:0;-1:-1:-1;;;;;;23784:16:0;;;;;:9;:16;;;;;;;23600:208::o;44995:94::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;45060:21:::1;45078:1;45060:9;:21::i;:::-;44995:94::o:0;47210:27::-;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;47210:27:0;:::o;53625:104::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;53697:16:::1;:26:::0;53625:104::o;53735:94::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;53806:17:::1;:11;53820:3:::0;;53806:17:::1;:::i;24345:104::-:0;24401:13;24434:7;24427:14;;;;;:::i;50729:616::-;50836:36;;;50828:63;;;;-1:-1:-1;;;50828:63:0;;17635:2:1;50828:63:0;;;17617:21:1;17674:2;17654:18;;;17647:30;-1:-1:-1;;;17693:18:1;;;17686:44;17747:18;;50828:63:0;17607:164:1;50828:63:0;50912:9;50908:432;50927:20;;;50908:432;;;50987:21;50995:9;;51005:1;50995:12;;;;;-1:-1:-1;;;50995:12:0;;;;;;;;;;;;;;;50987:7;:21::i;:::-;-1:-1:-1;;;;;50973:35:0;:10;-1:-1:-1;;;;;50973:35:0;;50965:62;;;;-1:-1:-1;;;50965:62:0;;19026:2:1;50965:62:0;;;19008:21:1;19065:2;19045:18;;;19038:30;-1:-1:-1;;;19084:18:1;;;19077:44;19138:18;;50965:62:0;18998:164:1;50965:62:0;51046:9;:23;51056:9;;51066:1;51056:12;;;;;-1:-1:-1;;;51056:12:0;;;;;;;;;;;;;;;51046:23;;;;;;;;;;;;51073:1;51046:28;51038:60;;;;-1:-1:-1;;;51038:60:0;;18335:2:1;51038:60:0;;;18317:21:1;18374:2;18354:18;;;18347:30;-1:-1:-1;;;18393:18:1;;;18386:49;18452:18;;51038:60:0;18307:169:1;51038:60:0;51132:13;:20;51117:9;;51127:1;51117:12;;;;;-1:-1:-1;;;51117:12:0;;;;;;;;;;;;;;;:35;51109:63;;;;-1:-1:-1;;;51109:63:0;;;;;;;:::i;:::-;51220:9;;51230:1;51220:12;;;;;-1:-1:-1;;;51220:12:0;;;;;;;;;;;;;;;51194:9;:23;51204:9;;51214:1;51204:12;;;;;-1:-1:-1;;;51204:12:0;;;;;;;;;;;;;;;51194:23;;;;;;;;;;;:38;;;;51275:1;51243:14;:28;51258:9;;51268:1;51258:12;;;;;-1:-1:-1;;;51258:12:0;;;;;;;;;;;;;;;51243:28;;;;;;;;;;;;:33;;;;;;;:::i;:::-;;;;-1:-1:-1;51303:9:0;;-1:-1:-1;51303:9:0;51313:1;51303:12;;;;;-1:-1:-1;;;51303:12:0;;;;;;;;;;;;;;;51292:38;51317:9;;51327:1;51317:12;;;;;-1:-1:-1;;;51317:12:0;;;;;;;;;;;;;;;51292:38;;;;14218:25:1;;14206:2;14191:18;;14173:76;51292:38:0;;;;;;;;50949:3;;;;:::i;:::-;;;;50908:432;;;;50729:616;;;;:::o;26028:295::-;-1:-1:-1;;;;;26131:24:0;;18818:10;26131:24;;26123:62;;;;-1:-1:-1;;;26123:62:0;;19774:2:1;26123:62:0;;;19756:21:1;19813:2;19793:18;;;19786:30;19852:27;19832:18;;;19825:55;19897:18;;26123:62:0;19746:175:1;26123:62:0;18818:10;26198:32;;;;:18;:32;;;;;;;;-1:-1:-1;;;;;26198:42:0;;;;;;;;;;;;:53;;-1:-1:-1;;26198:53:0;;;;;;;;;;26267:48;;14020:41:1;;;26198:42:0;;18818:10;26267:48;;13993:18:1;26267:48:0;;;;;;;26028:295;;:::o;27291:328::-;27466:41;18818:10;27499:7;27466:18;:41::i;:::-;27458:103;;;;-1:-1:-1;;;27458:103:0;;;;;;;:::i;:::-;27572:39;27586:4;27592:2;27596:7;27605:5;27572:13;:39::i;47183:22::-;;;;;;;;;;;;46927:28;;;;;;;:::i;47477:39::-;;;;;;;:::i;51351:594::-;29194:4;29218:16;;;:7;:16;;;;;;51424:13;;-1:-1:-1;;;;;29218:16:0;51446:49;;;;-1:-1:-1;;;51446:49:0;;20473:2:1;51446:49:0;;;20455:21:1;20512:2;20492:18;;;20485:30;-1:-1:-1;;;20531:18:1;;;20524:50;20591:18;;51446:49:0;20445:170:1;51446:49:0;51504:29;51536:20;51504:52;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51605:1;51579:15;51573:29;:33;51569:371;;;51617:15;51635:18;;;:9;:18;;;;;;51665:11;;51662:229;;51720:15;51737:18;:7;:16;:18::i;:::-;51762:13;51776:7;51762:22;;;;;;-1:-1:-1;;;51762:22:0;;;;;;;;;;;;;;;;51703:82;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;51689:97;;;;51351:594;;;:::o;51662:229::-;51844:15;51861:18;:7;:16;:18::i;:::-;51827:53;;;;;;;;;:::i;51569:371::-;51920:12;51913:19;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;51351:594;;;:::o;51569:371::-;51351:594;;;;:::o;51951:251::-;52016:7;52035:13;52032:165;;52118:14;:17;;;;52098;;52093:1;52118:17;52078;;;45869:25;45822:5;45775:3;45869:25;:::i;:::-;52066:29;;;;:::i;:::-;:49;;;;:::i;:::-;:69;;;;:::i;52032:165::-;-1:-1:-1;52165:24:0;;;;:14;:24;;;;;;;51951:251::o;52032:165::-;51951:251;;;:::o;49130:1593::-;49272:8;;;;49264:29;;;;-1:-1:-1;;;49264:29:0;;23535:2:1;49264:29:0;;;23517:21:1;23574:1;23554:18;;;23547:29;-1:-1:-1;;;23592:18:1;;;23585:38;23640:18;;49264:29:0;23507:157:1;49264:29:0;49326:10;49337:1;49326:13;;;;;;-1:-1:-1;;;49326:13:0;;;;;;;;;;;;;;;;;49308:15;:31;49300:63;;;;-1:-1:-1;;;49300:63:0;;27317:2:1;49300:63:0;;;27299:21:1;27356:2;27336:18;;;27329:30;-1:-1:-1;;;27375:18:1;;;27368:49;27434:18;;49300:63:0;27289:169:1;49300:63:0;49372:12;49413:10;49424:1;49413:13;;;;;;-1:-1:-1;;;49413:13:0;;;;;;;;;;;;;;;;;49395:15;:31;49391:264;;;49444:5;49450:1;49444:8;;;;;;-1:-1:-1;;;49444:8:0;;;;;;;;;;;;;;;;;49437:15;;49391:264;;;49488:10;49499:1;49488:13;;;;;;-1:-1:-1;;;49488:13:0;;;;;;;;;;;;;;;;;49470:15;:31;49466:189;;;49519:5;49525:1;49519:8;;;;;;-1:-1:-1;;;49519:8:0;;;;;;;;49466:189;49564:10;49575:1;49564:13;;;;;;-1:-1:-1;;;49564:13:0;;;;;;;;;;;;;;;;;49546:15;:31;49542:113;;;49595:5;49601:1;49595:8;;;;;;-1:-1:-1;;;49595:8:0;;;;;;;;49542:113;49626:21;;-1:-1:-1;;;49626:21:0;;16469:2:1;49626:21:0;;;16451::1;16508:2;16488:18;;;16481:30;-1:-1:-1;;;16527:18:1;;;16520:41;16578:18;;49626:21:0;16441:161:1;49542:113:0;49671:33;;;49663:60;;;;-1:-1:-1;;;49663:60:0;;17635:2:1;49663:60:0;;;17617:21:1;17674:2;17654:18;;;17647:30;-1:-1:-1;;;17693:18:1;;;17686:44;17747:18;;49663:60:0;17607:164:1;49663:60:0;45822:5;49758:14;49738:17;;:34;;;;:::i;:::-;:50;;49730:83;;;;-1:-1:-1;;;49730:83:0;;21235:2:1;49730:83:0;;;21217:21:1;21274:2;21254:18;;;21247:30;-1:-1:-1;;;21293:18:1;;;21286:50;21353:18;;49730:83:0;21207:170:1;49730:83:0;49877:16;;49845:10;49828:28;;;;:16;:28;;;;;;:45;;49859:14;;49828:45;:::i;:::-;:65;;49820:97;;;;-1:-1:-1;;;49820:97:0;;15709:2:1;49820:97:0;;;15691:21:1;15748:2;15728:18;;;15721:30;-1:-1:-1;;;15767:18:1;;;15760:49;15826:18;;49820:97:0;15681:169:1;49820:97:0;49958:9;49932:22;46029:10;49932:14;:22;:::i;:::-;:35;;49924:64;;;;-1:-1:-1;;;49924:64:0;;15364:2:1;49924:64:0;;;15346:21:1;15403:2;15383:18;;;15376:30;-1:-1:-1;;;15422:18:1;;;15415:46;15478:18;;49924:64:0;15336:166:1;49924:64:0;50023:28;;-1:-1:-1;;50040:10:0;10457:2:1;10453:15;10449:53;50023:28:0;;;10437:66:1;49998:12:0;;10519::1;;50023:28:0;;;;;;;;;;;;50013:39;;;;;;49998:54;;50069:43;50088:11;50101:4;50107;50069:18;:43::i;:::-;50061:69;;;;-1:-1:-1;;;50061:69:0;;26975:2:1;50061:69:0;;;26957:21:1;27014:2;26994:18;;;26987:30;-1:-1:-1;;;27033:18:1;;;27026:43;27086:18;;50061:69:0;26947:163:1;50061:69:0;50156:10;50139:28;;;;:16;:28;;;;;:46;;50171:14;;50139:28;:46;;50171:14;;50139:46;:::i;:::-;;;;-1:-1:-1;50199:9:0;;-1:-1:-1;50194:524:0;50218:14;50214:1;:18;50194:524;;;50382:1;50361:17;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;50423:17:0;;50392:15;;50410:30;;45775:3;50410:30;:::i;:::-;50392:48;;50451:30;50461:10;50473:7;50451:9;:30::i;:::-;50492:16;50511:8;;50520:1;50511:11;;;;;-1:-1:-1;;;50511:11:0;;;;;;;;;;;;;;;50492:30;;50550:13;:20;;;;50539:8;:31;50531:59;;;;-1:-1:-1;;;50531:59:0;;;;;;;:::i;:::-;50600:18;;;;:9;:18;;;;;;;;:29;;;50638:24;;;:14;:24;;;;;:29;;50666:1;;50600:18;50638:29;;50666:1;;50638:29;:::i;:::-;;;;-1:-1:-1;;50681:29:0;;14218:25:1;;;50692:7:0;;50681:29;;14206:2:1;14191:18;50681:29:0;;;;;;;50194:524;;50234:3;;;;;:::i;:::-;;;;50194:524;;;;49130:1593;;;;;;:::o;47406:30::-;;;;;;;:::i;45244:192::-;44417:6;;-1:-1:-1;;;;;44417:6:0;18818:10;44564:23;44556:68;;;;-1:-1:-1;;;44556:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;45333:22:0;::::1;45325:73;;;::::0;-1:-1:-1;;;45325:73:0;;17228:2:1;45325:73:0::1;::::0;::::1;17210:21:1::0;17267:2;17247:18;;;17240:30;17306:34;17286:18;;;17279:62;-1:-1:-1;;;17357:18:1;;;17350:36;17403:19;;45325:73:0::1;17200:228:1::0;45325:73:0::1;45409:19;45419:8;45409:9;:19::i;:::-;45244:192:::0;:::o;30113:110::-;30189:26;30199:2;30203:7;30189:26;;;;;;;;;;;;:9;:26::i;23231:305::-;23333:4;-1:-1:-1;;;;;;23370:40:0;;-1:-1:-1;;;23370:40:0;;:105;;-1:-1:-1;;;;;;;23427:48:0;;-1:-1:-1;;;23427:48:0;23370:105;:158;;;-1:-1:-1;;;;;;;;;;21881:40:0;;;23492:36;21772:157;33111:174;33186:24;;;;:15;:24;;;;;:29;;-1:-1:-1;;;;;;33186:29:0;-1:-1:-1;;;;;33186:29:0;;;;;;;;:24;;33240:23;33186:24;33240:14;:23::i;:::-;-1:-1:-1;;;;;33231:46:0;;;;;;;;;;;33111:174;;:::o;29423:348::-;29516:4;29218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29218:16:0;29533:73;;;;-1:-1:-1;;;29533:73:0;;20822:2:1;29533:73:0;;;20804:21:1;20861:2;20841:18;;;20834:30;20900:34;20880:18;;;20873:62;-1:-1:-1;;;20951:18:1;;;20944:42;21003:19;;29533:73:0;20794:234:1;29533:73:0;29617:13;29633:23;29648:7;29633:14;:23::i;:::-;29617:39;;29686:5;-1:-1:-1;;;;;29675:16:0;:7;-1:-1:-1;;;;;29675:16:0;;:51;;;;29719:7;-1:-1:-1;;;;;29695:31:0;:20;29707:7;29695:11;:20::i;:::-;-1:-1:-1;;;;;29695:31:0;;29675:51;:87;;;-1:-1:-1;;;;;;26515:25:0;;;26491:4;26515:25;;;:18;:25;;;;;;;;:35;;;;;;;;;;;;29730:32;26394:164;32415:578;32574:4;-1:-1:-1;;;;;32547:31:0;:23;32562:7;32547:14;:23::i;:::-;-1:-1:-1;;;;;32547:31:0;;32539:85;;;;-1:-1:-1;;;32539:85:0;;24987:2:1;32539:85:0;;;24969:21:1;25026:2;25006:18;;;24999:30;25065:34;25045:18;;;25038:62;-1:-1:-1;;;25116:18:1;;;25109:39;25165:19;;32539:85:0;24959:231:1;32539:85:0;-1:-1:-1;;;;;32643:16:0;;32635:65;;;;-1:-1:-1;;;32635:65:0;;19369:2:1;32635:65:0;;;19351:21:1;19408:2;19388:18;;;19381:30;19447:34;19427:18;;;19420:62;-1:-1:-1;;;19498:18:1;;;19491:34;19542:19;;32635:65:0;19341:226:1;32635:65:0;32713:39;32734:4;32740:2;32744:7;32713:20;:39::i;:::-;32817:29;32834:1;32838:7;32817:8;:29::i;:::-;-1:-1:-1;;;;;32859:15:0;;;;;;:9;:15;;;;;:20;;32878:1;;32859:15;:20;;32878:1;;32859:20;:::i;:::-;;;;-1:-1:-1;;;;;;;32890:13:0;;;;;;:9;:13;;;;;:18;;32907:1;;32890:13;:18;;32907:1;;32890:18;:::i;:::-;;;;-1:-1:-1;;32919:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;32919:21:0;-1:-1:-1;;;;;32919:21:0;;;;;;;;;32958:27;;32919:16;;32958:27;;;;;;;32415:578;;;:::o;1976:830::-;2101:4;2141;2101;2158:525;2182:5;:12;2178:1;:16;2158:525;;;2216:20;2239:5;2245:1;2239:8;;;;;;-1:-1:-1;;;2239:8:0;;;;;;;;;;;;;;;2216:31;;2284:12;2268;:28;2264:408;;2421:44;;;;;;10699:19:1;;;10734:12;;;10727:28;;;10771:12;;2421:44:0;;;;;;;;;;;;2411:55;;;;;;2396:70;;2264:408;;;2611:44;;;;;;10699:19:1;;;10734:12;;;10727:28;;;10771:12;;2611:44:0;;;;;;;;;;;;2601:55;;;;;;2586:70;;2264:408;-1:-1:-1;2196:3:0;;;;:::i;:::-;;;;2158:525;;;-1:-1:-1;2778:20:0;;;;1976:830;-1:-1:-1;;;1976:830:0:o;45444:173::-;45519:6;;;-1:-1:-1;;;;;45536:17:0;;;-1:-1:-1;;;;;;45536:17:0;;;;;;;45569:40;;45519:6;;;45536:17;45519:6;;45569:40;;45500:16;;45569:40;45444:173;;:::o;28501:315::-;28658:28;28668:4;28674:2;28678:7;28658:9;:28::i;:::-;28705:48;28728:4;28734:2;28738:7;28747:5;28705:22;:48::i;:::-;28697:111;;;;-1:-1:-1;;;28697:111:0;;;;;;;:::i;19240:723::-;19296:13;19517:10;19513:53;;-1:-1:-1;;19544:10:0;;;;;;;;;;;;-1:-1:-1;;;19544:10:0;;;;;19240:723::o;19513:53::-;19591:5;19576:12;19632:78;19639:9;;19632:78;;19665:8;;;;:::i;:::-;;-1:-1:-1;19688:10:0;;-1:-1:-1;19696:2:0;19688:10;;:::i;:::-;;;19632:78;;;19720:19;19752:6;-1:-1:-1;;;;;19742:17:0;;;;;-1:-1:-1;;;19742:17:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;19742:17:0;;19720:39;;19770:154;19777:10;;19770:154;;19804:11;19814:1;19804:11;;:::i;:::-;;-1:-1:-1;19873:10:0;19881:2;19873:5;:10;:::i;:::-;19860:24;;:2;:24;:::i;:::-;19847:39;;19830:6;19837;19830:14;;;;;;-1:-1:-1;;;19830:14:0;;;;;;;;;;;;:56;-1:-1:-1;;;;;19830:56:0;;;;;;;;-1:-1:-1;19901:11:0;19910:2;19901:11;;:::i;:::-;;;19770:154;;30450:321;30580:18;30586:2;30590:7;30580:5;:18::i;:::-;30631:54;30662:1;30666:2;30670:7;30679:5;30631:22;:54::i;:::-;30609:154;;;;-1:-1:-1;;;30609:154:0;;;;;;;:::i;38899:589::-;-1:-1:-1;;;;;39105:18:0;;39101:187;;39140:40;39172:7;40315:10;:17;;40288:24;;;;:15;:24;;;;;:44;;;40343:24;;;;;;;;;;;;40211:164;39140:40;39101:187;;;39210:2;-1:-1:-1;;;;;39202:10:0;:4;-1:-1:-1;;;;;39202:10:0;;39198:90;;39229:47;39262:4;39268:7;39229:32;:47::i;:::-;-1:-1:-1;;;;;39302:16:0;;39298:183;;39335:45;39372:7;39335:36;:45::i;39298:183::-;39408:4;-1:-1:-1;;;;;39402:10:0;:2;-1:-1:-1;;;;;39402:10:0;;39398:83;;39429:40;39457:2;39461:7;39429:27;:40::i;33850:799::-;34005:4;-1:-1:-1;;;;;34026:13:0;;11128:20;11176:8;34022:620;;34062:72;;-1:-1:-1;;;34062:72:0;;-1:-1:-1;;;;;34062:36:0;;;;;:72;;18818:10;;34113:4;;34119:7;;34128:5;;34062:72;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34062:72:0;;;;;;;;-1:-1:-1;;34062:72:0;;;;;;;;;;;;:::i;:::-;;;34058:529;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;34304:13:0;;34300:272;;34347:60;;-1:-1:-1;;;34347:60:0;;;;;;;:::i;34300:272::-;34522:6;34516:13;34507:6;34503:2;34499:15;34492:38;34058:529;-1:-1:-1;;;;;;34185:51:0;-1:-1:-1;;;34185:51:0;;-1:-1:-1;34178:58:0;;34022:620;-1:-1:-1;34626:4:0;33850:799;;;;;;:::o;31107:382::-;-1:-1:-1;;;;;31187:16:0;;31179:61;;;;-1:-1:-1;;;31179:61:0;;23174:2:1;31179:61:0;;;23156:21:1;;;23193:18;;;23186:30;23252:34;23232:18;;;23225:62;23304:18;;31179:61:0;23146:182:1;31179:61:0;29194:4;29218:16;;;:7;:16;;;;;;-1:-1:-1;;;;;29218:16:0;:30;31251:58;;;;-1:-1:-1;;;31251:58:0;;17978:2:1;31251:58:0;;;17960:21:1;18017:2;17997:18;;;17990:30;18056;18036:18;;;18029:58;18104:18;;31251:58:0;17950:178:1;31251:58:0;31322:45;31351:1;31355:2;31359:7;31322:20;:45::i;:::-;-1:-1:-1;;;;;31380:13:0;;;;;;:9;:13;;;;;:18;;31397:1;;31380:13;:18;;31397:1;;31380:18;:::i;:::-;;;;-1:-1:-1;;31409:16:0;;;;:7;:16;;;;;;:21;;-1:-1:-1;;;;;;31409:21:0;-1:-1:-1;;;;;31409:21:0;;;;;;;;31448:33;;31409:16;;;31448:33;;31409:16;;31448:33;31107:382;;:::o;41002:988::-;41268:22;41318:1;41293:22;41310:4;41293:16;:22::i;:::-;:26;;;;:::i;:::-;41330:18;41351:26;;;:17;:26;;;;;;41268:51;;-1:-1:-1;41484:28:0;;;41480:328;;-1:-1:-1;;;;;41551:18:0;;41529:19;41551:18;;;:12;:18;;;;;;;;:34;;;;;;;;;41602:30;;;;;;:44;;;41719:30;;:17;:30;;;;;:43;;;41480:328;-1:-1:-1;41904:26:0;;;;:17;:26;;;;;;;;41897:33;;;-1:-1:-1;;;;;41948:18:0;;;;;:12;:18;;;;;:34;;;;;;;41941:41;41002:988::o;42285:1079::-;42563:10;:17;42538:22;;42563:21;;42583:1;;42563:21;:::i;:::-;42595:18;42616:24;;;:15;:24;;;;;;42989:10;:26;;42538:46;;-1:-1:-1;42616:24:0;;42538:46;;42989:26;;;;-1:-1:-1;;;42989:26:0;;;;;;;;;;;;;;;;;42967:48;;43053:11;43028:10;43039;43028:22;;;;;;-1:-1:-1;;;43028:22:0;;;;;;;;;;;;;;;;;;;;:36;;;;43133:28;;;:15;:28;;;;;;;:41;;;43305:24;;;;;43298:31;43340:10;:16;;;;;-1:-1:-1;;;43340:16:0;;;;;;;;;;;;;;;;;;;;;;;;;;42285:1079;;;;:::o;39789:221::-;39874:14;39891:20;39908:2;39891:16;:20::i;:::-;-1:-1:-1;;;;;39922:16:0;;;;;;;:12;:16;;;;;;;;:24;;;;;;;;:34;;;39967:26;;;:17;:26;;;;;;:35;;;;-1:-1:-1;39789:221:0:o;-1:-1:-1:-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;:::o;:::-;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;14:406:1;78:5;-1:-1:-1;;;;;104:6:1;101:30;98:2;;;134:18;;:::i;:::-;172:57;217:2;196:15;;-1:-1:-1;;192:29:1;223:4;188:40;172:57;:::i;:::-;163:66;;252:6;245:5;238:21;292:3;283:6;278:3;274:16;271:25;268:2;;;309:1;306;299:12;268:2;358:6;353:3;346:4;339:5;335:16;322:43;412:1;405:4;396:6;389:5;385:18;381:29;374:40;88:332;;;;;:::o;425:173::-;493:20;;-1:-1:-1;;;;;542:31:1;;532:42;;522:2;;588:1;585;578:12;603:395;666:8;676:6;730:3;723:4;715:6;711:17;707:27;697:2;;755:8;745;738:26;697:2;-1:-1:-1;785:20:1;;-1:-1:-1;;;;;817:30:1;;814:2;;;867:8;857;850:26;814:2;911:4;903:6;899:17;887:29;;971:3;964:4;954:6;951:1;947:14;939:6;935:27;931:38;928:47;925:2;;;988:1;985;978:12;925:2;687:311;;;;;:::o;1003:743::-;1057:5;1110:3;1103:4;1095:6;1091:17;1087:27;1077:2;;1132:5;1125;1118:20;1077:2;1172:6;1159:20;1198:4;-1:-1:-1;;;;;1217:2:1;1214:26;1211:2;;;1243:18;;:::i;:::-;1289:2;1286:1;1282:10;1312:28;1336:2;1332;1328:11;1312:28;:::i;:::-;1374:15;;;1405:12;;;;1437:15;;;1471;;;1467:24;;1464:33;-1:-1:-1;1461:2:1;;;1514:5;1507;1500:20;1461:2;1540:5;1531:14;;1554:163;1568:2;1565:1;1562:9;1554:163;;;1625:17;;1613:30;;1586:1;1579:9;;;;;1663:12;;;;1695;;1554:163;;;-1:-1:-1;1735:5:1;1067:679;-1:-1:-1;;;;;;;1067:679:1:o;1751:160::-;1816:20;;1872:13;;1865:21;1855:32;;1845:2;;1901:1;1898;1891:12;1916:196;1975:6;2028:2;2016:9;2007:7;2003:23;1999:32;1996:2;;;2049:6;2041;2034:22;1996:2;2077:29;2096:9;2077:29;:::i;:::-;2067:39;1986:126;-1:-1:-1;;;1986:126:1:o;2117:270::-;2185:6;2193;2246:2;2234:9;2225:7;2221:23;2217:32;2214:2;;;2267:6;2259;2252:22;2214:2;2295:29;2314:9;2295:29;:::i;:::-;2285:39;;2343:38;2377:2;2366:9;2362:18;2343:38;:::i;:::-;2333:48;;2204:183;;;;;:::o;2392:338::-;2469:6;2477;2485;2538:2;2526:9;2517:7;2513:23;2509:32;2506:2;;;2559:6;2551;2544:22;2506:2;2587:29;2606:9;2587:29;:::i;:::-;2577:39;;2635:38;2669:2;2658:9;2654:18;2635:38;:::i;:::-;2625:48;;2720:2;2709:9;2705:18;2692:32;2682:42;;2496:234;;;;;:::o;2735:696::-;2830:6;2838;2846;2854;2907:3;2895:9;2886:7;2882:23;2878:33;2875:2;;;2929:6;2921;2914:22;2875:2;2957:29;2976:9;2957:29;:::i;:::-;2947:39;;3005:38;3039:2;3028:9;3024:18;3005:38;:::i;:::-;2995:48;;3090:2;3079:9;3075:18;3062:32;3052:42;;3145:2;3134:9;3130:18;3117:32;-1:-1:-1;;;;;3164:6:1;3161:30;3158:2;;;3209:6;3201;3194:22;3158:2;3237:22;;3290:4;3282:13;;3278:27;-1:-1:-1;3268:2:1;;3324:6;3316;3309:22;3268:2;3352:73;3417:7;3412:2;3399:16;3394:2;3390;3386:11;3352:73;:::i;:::-;3342:83;;;2865:566;;;;;;;:::o;3436:264::-;3501:6;3509;3562:2;3550:9;3541:7;3537:23;3533:32;3530:2;;;3583:6;3575;3568:22;3530:2;3611:29;3630:9;3611:29;:::i;:::-;3601:39;;3659:35;3690:2;3679:9;3675:18;3659:35;:::i;3705:264::-;3773:6;3781;3834:2;3822:9;3813:7;3809:23;3805:32;3802:2;;;3855:6;3847;3840:22;3802:2;3883:29;3902:9;3883:29;:::i;:::-;3873:39;3959:2;3944:18;;;;3931:32;;-1:-1:-1;;;3792:177:1:o;3974:457::-;4060:6;4068;4121:2;4109:9;4100:7;4096:23;4092:32;4089:2;;;4142:6;4134;4127:22;4089:2;4187:9;4174:23;-1:-1:-1;;;;;4212:6:1;4209:30;4206:2;;;4257:6;4249;4242:22;4206:2;4301:70;4363:7;4354:6;4343:9;4339:22;4301:70;:::i;:::-;4390:8;;4275:96;;-1:-1:-1;4079:352:1;-1:-1:-1;;;;4079:352:1:o;4898:510::-;5000:6;5008;5016;5069:2;5057:9;5048:7;5044:23;5040:32;5037:2;;;5090:6;5082;5075:22;5037:2;5135:9;5122:23;-1:-1:-1;;;;;5160:6:1;5157:30;5154:2;;;5205:6;5197;5190:22;5154:2;5233:61;5286:7;5277:6;5266:9;5262:22;5233:61;:::i;:::-;5223:71;;;5341:2;5330:9;5326:18;5313:32;5303:42;;5364:38;5398:2;5387:9;5383:18;5364:38;:::i;:::-;5354:48;;5027:381;;;;;:::o;5875:803::-;5997:6;6005;6013;6021;6074:2;6062:9;6053:7;6049:23;6045:32;6042:2;;;6095:6;6087;6080:22;6042:2;6140:9;6127:23;-1:-1:-1;;;;;6210:2:1;6202:6;6199:14;6196:2;;;6231:6;6223;6216:22;6196:2;6275:70;6337:7;6328:6;6317:9;6313:22;6275:70;:::i;:::-;6364:8;;-1:-1:-1;6249:96:1;-1:-1:-1;6452:2:1;6437:18;;6424:32;;-1:-1:-1;6468:16:1;;;6465:2;;;6502:6;6494;6487:22;6465:2;;6546:72;6610:7;6599:8;6588:9;6584:24;6546:72;:::i;:::-;6032:646;;;;-1:-1:-1;6637:8:1;-1:-1:-1;;;;6032:646:1:o;6683:190::-;6739:6;6792:2;6780:9;6771:7;6767:23;6763:32;6760:2;;;6813:6;6805;6798:22;6760:2;6841:26;6857:9;6841:26;:::i;6878:255::-;6936:6;6989:2;6977:9;6968:7;6964:23;6960:32;6957:2;;;7010:6;7002;6995:22;6957:2;7054:9;7041:23;7073:30;7097:5;7073:30;:::i;7138:259::-;7207:6;7260:2;7248:9;7239:7;7235:23;7231:32;7228:2;;;7281:6;7273;7266:22;7228:2;7318:9;7312:16;7337:30;7361:5;7337:30;:::i;7402:642::-;7473:6;7481;7534:2;7522:9;7513:7;7509:23;7505:32;7502:2;;;7555:6;7547;7540:22;7502:2;7600:9;7587:23;-1:-1:-1;;;;;7670:2:1;7662:6;7659:14;7656:2;;;7691:6;7683;7676:22;7656:2;7734:6;7723:9;7719:22;7709:32;;7779:7;7772:4;7768:2;7764:13;7760:27;7750:2;;7806:6;7798;7791:22;7750:2;7851;7838:16;7877:2;7869:6;7866:14;7863:2;;;7898:6;7890;7883:22;7863:2;7948:7;7943:2;7934:6;7930:2;7926:15;7922:24;7919:37;7916:2;;;7974:6;7966;7959:22;7916:2;8010;8002:11;;;;;8032:6;;-1:-1:-1;7492:552:1;;-1:-1:-1;;;;7492:552:1:o;8049:480::-;8118:6;8171:2;8159:9;8150:7;8146:23;8142:32;8139:2;;;8192:6;8184;8177:22;8139:2;8237:9;8224:23;-1:-1:-1;;;;;8262:6:1;8259:30;8256:2;;;8307:6;8299;8292:22;8256:2;8335:22;;8388:4;8380:13;;8376:27;-1:-1:-1;8366:2:1;;8422:6;8414;8407:22;8366:2;8450:73;8515:7;8510:2;8497:16;8492:2;8488;8484:11;8450:73;:::i;8534:190::-;8593:6;8646:2;8634:9;8625:7;8621:23;8617:32;8614:2;;;8667:6;8659;8652:22;8614:2;-1:-1:-1;8695:23:1;;8604:120;-1:-1:-1;8604:120:1:o;8729:525::-;8824:6;8832;8840;8893:2;8881:9;8872:7;8868:23;8864:32;8861:2;;;8914:6;8906;8899:22;8861:2;8955:9;8942:23;8932:33;;9016:2;9005:9;9001:18;8988:32;-1:-1:-1;;;;;9035:6:1;9032:30;9029:2;;;9080:6;9072;9065:22;9029:2;9124:70;9186:7;9177:6;9166:9;9162:22;9124:70;:::i;:::-;8851:403;;9213:8;;-1:-1:-1;9098:96:1;;-1:-1:-1;;;;8851:403:1:o;9259:782::-;9388:6;9396;9404;9412;9465:2;9453:9;9444:7;9440:23;9436:32;9433:2;;;9486:6;9478;9471:22;9433:2;9527:9;9514:23;9504:33;;9588:2;9577:9;9573:18;9560:32;-1:-1:-1;;;;;9652:2:1;9644:6;9641:14;9638:2;;;9673:6;9665;9658:22;9638:2;9717:70;9779:7;9770:6;9759:9;9755:22;9717:70;:::i;:::-;9806:8;;-1:-1:-1;9691:96:1;-1:-1:-1;9894:2:1;9879:18;;9866:32;;-1:-1:-1;9910:16:1;;;9907:2;;;9944:6;9936;9929:22;9907:2;;9972:63;10027:7;10016:8;10005:9;10001:24;9972:63;:::i;10046:257::-;10087:3;10125:5;10119:12;10152:6;10147:3;10140:19;10168:63;10224:6;10217:4;10212:3;10208:14;10201:4;10194:5;10190:16;10168:63;:::i;:::-;10285:2;10264:15;-1:-1:-1;;10260:29:1;10251:39;;;;10292:4;10247:50;;10095:208;-1:-1:-1;;10095:208:1:o;10794:470::-;10973:3;11011:6;11005:13;11027:53;11073:6;11068:3;11061:4;11053:6;11049:17;11027:53;:::i;:::-;11143:13;;11102:16;;;;11165:57;11143:13;11102:16;11199:4;11187:17;;11165:57;:::i;:::-;11238:20;;10981:283;-1:-1:-1;;;;10981:283:1:o;11269:1695::-;11594:3;11632:6;11626:13;11658:4;11671:51;11715:6;11710:3;11705:2;11697:6;11693:15;11671:51;:::i;:::-;11785:13;;11744:16;;;;11807:55;11785:13;11744:16;11829:15;;;11807:55;:::i;:::-;-1:-1:-1;;;11884:20:1;;11913:18;;;12000:13;;11950:1;;11971:3;;12062:18;;;12115;;;;12142:2;;12220:4;12210:8;12206:19;12194:31;;12142:2;12283;12273:8;12270:16;12250:18;12247:40;12244:2;;;-1:-1:-1;;;12310:33:1;;12366:4;12363:1;12356:15;12396:4;12317:3;12384:17;12244:2;12427:18;12454:128;;;;12596:1;12591:348;;;;12420:519;;12454:128;-1:-1:-1;;12498:24:1;;12482:14;;;12475:48;12547:20;;;12543:29;;;-1:-1:-1;12454:128:1;;12591:348;28320:4;28339:17;;;28389:4;28373:21;;12686:3;12702:178;12716:8;12713:1;12710:15;12702:178;;;12807:14;;12787:13;;;12783:22;;12776:46;12850:16;;;;12733:10;;12702:178;;;12706:3;;12926:2;12915:8;12908:5;12904:20;12900:29;12893:36;;12420:519;-1:-1:-1;12955:3:1;;11602:1362;-1:-1:-1;;;;;;;;;;;11602:1362:1:o;13387:488::-;-1:-1:-1;;;;;13656:15:1;;;13638:34;;13708:15;;13703:2;13688:18;;13681:43;13755:2;13740:18;;13733:34;;;13803:3;13798:2;13783:18;;13776:31;;;13581:4;;13824:45;;13849:19;;13841:6;13824:45;:::i;:::-;13816:53;13590:285;-1:-1:-1;;;;;;13590:285:1:o;14254:219::-;14403:2;14392:9;14385:21;14366:4;14423:44;14463:2;14452:9;14448:18;14440:6;14423:44;:::i;16607:414::-;16809:2;16791:21;;;16848:2;16828:18;;;16821:30;16887:34;16882:2;16867:18;;16860:62;-1:-1:-1;;;16953:2:1;16938:18;;16931:48;17011:3;16996:19;;16781:240::o;22628:339::-;22830:2;22812:21;;;22869:2;22849:18;;;22842:30;-1:-1:-1;;;22903:2:1;22888:18;;22881:45;22958:2;22943:18;;22802:165::o;24424:356::-;24626:2;24608:21;;;24645:18;;;24638:30;24704:34;24699:2;24684:18;;24677:62;24771:2;24756:18;;24598:182::o;25942:413::-;26144:2;26126:21;;;26183:2;26163:18;;;26156:30;26222:34;26217:2;26202:18;;26195:62;-1:-1:-1;;;26288:2:1;26273:18;;26266:47;26345:3;26330:19;;26116:239::o;27993:275::-;28064:2;28058:9;28129:2;28110:13;;-1:-1:-1;;28106:27:1;28094:40;;-1:-1:-1;;;;;28149:34:1;;28185:22;;;28146:62;28143:2;;;28211:18;;:::i;:::-;28247:2;28240:22;28038:230;;-1:-1:-1;28038:230:1:o;28405:128::-;28445:3;28476:1;28472:6;28469:1;28466:13;28463:2;;;28482:18;;:::i;:::-;-1:-1:-1;28518:9:1;;28453:80::o;28538:120::-;28578:1;28604;28594:2;;28609:18;;:::i;:::-;-1:-1:-1;28643:9:1;;28584:74::o;28663:168::-;28703:7;28769:1;28765;28761:6;28757:14;28754:1;28751:21;28746:1;28739:9;28732:17;28728:45;28725:2;;;28776:18;;:::i;:::-;-1:-1:-1;28816:9:1;;28715:116::o;28836:125::-;28876:4;28904:1;28901;28898:8;28895:2;;;28909:18;;:::i;:::-;-1:-1:-1;28946:9:1;;28885:76::o;28966:258::-;29038:1;29048:113;29062:6;29059:1;29056:13;29048:113;;;29138:11;;;29132:18;29119:11;;;29112:39;29084:2;29077:10;29048:113;;;29179:6;29176:1;29173:13;29170:2;;;-1:-1:-1;;29214:1:1;29196:16;;29189:27;29019:205::o;29229:380::-;29308:1;29304:12;;;;29351;;;29372:2;;29426:4;29418:6;29414:17;29404:27;;29372:2;29479;29471:6;29468:14;29448:18;29445:38;29442:2;;;29525:10;29520:3;29516:20;29513:1;29506:31;29560:4;29557:1;29550:15;29588:4;29585:1;29578:15;29614:135;29653:3;-1:-1:-1;;29674:17:1;;29671:2;;;29694:18;;:::i;:::-;-1:-1:-1;29741:1:1;29730:13;;29661:88::o;29754:112::-;29786:1;29812;29802:2;;29817:18;;:::i;:::-;-1:-1:-1;29851:9:1;;29792:74::o;29871:127::-;29932:10;29927:3;29923:20;29920:1;29913:31;29963:4;29960:1;29953:15;29987:4;29984:1;29977:15;30003:127;30064:10;30059:3;30055:20;30052:1;30045:31;30095:4;30092:1;30085:15;30119:4;30116:1;30109:15;30135:127;30196:10;30191:3;30187:20;30184:1;30177:31;30227:4;30224:1;30217:15;30251:4;30248:1;30241:15;30267:131;-1:-1:-1;;;;;;30341:32:1;;30331:43;;30321:2;;30388:1;30385;30378:12

Swarm Source

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